ETH Price: $2,675.90 (+1.46%)

Token

Vibez Kartel (VK)
 

Overview

Max Total Supply

645 VK

Holders

253

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
oneshotak.eth
Balance
1 VK
0x28e15b0eb947333fbc71a83f4a20c2a95acccf6a
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:
VibezKartel

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-06
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// 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/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// 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/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/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract VibezKartel is Ownable, ERC721A, ReentrancyGuard{
  using Strings for uint256;

  string public baseURI; 
  string public baseExtension = ".json";

  uint256 public cost = 0.000000002 ether;
  uint256 public maxSupply = 163;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimit = 5;

  bool public paused = false;
  bool public onlyWhitelisted = true;

  address[] public whitelistedAddresses;
  
  mapping(address => uint256) public addressMintedBalance;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

    function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

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

  //only owner
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
  
function withdraw() public onlyOwner nonReentrant {  
    (bool cm, ) = payable(0x10e99C1E1d676717bC72a652b05dCD6EE5C8f39B).call{value: address(this).balance * 50 / 100}("");
    require(cm);

    (bool ar, ) = payable(0xce84f7FE1b268BaaC5305AE23Ae97c9a488e8693).call{value: address(this).balance * 50 / 100}("");
    require(ar);

    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);

  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000309565b506377359400600c5560a3600d556005600e556005600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000ac57600080fd5b5060405162004a6e38038062004a6e8339818101604052810190620000d2919062000437565b8282620000f4620000e86200016060201b60201c565b6200016860201b60201c565b81600390805190602001906200010c92919062000309565b5080600490805190602001906200012592919062000309565b50620001366200022c60201b60201c565b6001819055505050600160098190555062000157816200023560201b60201c565b505050620006f7565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b620002456200016060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200026b620002e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002bb9062000517565b60405180910390fd5b80600a9080519060200190620002dc92919062000309565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200031790620005df565b90600052602060002090601f0160209004810192826200033b576000855562000387565b82601f106200035657805160ff191683800117855562000387565b8280016001018555821562000387579182015b828111156200038657825182559160200191906001019062000369565b5b5090506200039691906200039a565b5090565b5b80821115620003b55760008160009055506001016200039b565b5090565b6000620003d0620003ca8462000562565b62000539565b905082815260208101848484011115620003ef57620003ee620006ae565b5b620003fc848285620005a9565b509392505050565b600082601f8301126200041c576200041b620006a9565b5b81516200042e848260208601620003b9565b91505092915050565b600080600060608486031215620004535762000452620006b8565b5b600084015167ffffffffffffffff811115620004745762000473620006b3565b5b620004828682870162000404565b935050602084015167ffffffffffffffff811115620004a657620004a5620006b3565b5b620004b48682870162000404565b925050604084015167ffffffffffffffff811115620004d857620004d7620006b3565b5b620004e68682870162000404565b9150509250925092565b6000620004ff60208362000598565b91506200050c82620006ce565b602082019050919050565b600060208201905081810360008301526200053281620004f0565b9050919050565b60006200054562000558565b905062000553828262000615565b919050565b6000604051905090565b600067ffffffffffffffff82111562000580576200057f6200067a565b5b6200058b82620006bd565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005c9578082015181840152602081019050620005ac565b83811115620005d9576000848401525b50505050565b60006002820490506001821680620005f857607f821691505b602082108114156200060f576200060e6200064b565b5b50919050565b6200062082620006bd565b810181811067ffffffffffffffff821117156200064257620006416200067a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61436780620007076000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063ba4e5c49116100ab578063d5abeb011161006f578063d5abeb01146107f8578063da3ef23f14610823578063e985e9c51461084c578063edec5f2714610889578063f2fde38b146108b257610225565b8063ba4e5c49146106ff578063ba7d2c761461073c578063c668286214610767578063c87b56dd14610792578063d0eb26b0146107cf57610225565b806395d89b41116100f257806395d89b411461063b5780639c70b51214610666578063a0712d6814610691578063a22cb465146106ad578063b88d4fde146106d657610225565b806370a0823114610593578063715018a6146105d05780637f00c7a6146105e75780638da5cb5b1461061057610225565b806323b872dd116101b157806344a0d68a1161017557806344a0d68a146104ae57806355f804b3146104d75780635c975abb146105005780636352211e1461052b5780636c0360eb1461056857610225565b806323b872dd146103df5780633af32abf146104085780633c952764146104455780633ccfd60b1461046e57806342842e0e1461048557610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c57806318cae26914610377578063239c70ae146103b457610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135c9565b6108db565b60405161025e9190613a39565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061359c565b6109bd565b005b34801561029c57600080fd5b506102a5610a56565b6040516102b29190613a54565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061366c565b610ae8565b6040516102ef91906139d2565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a919061350f565b610b64565b005b34801561032d57600080fd5b50610336610c6f565b6040516103439190613bd6565b60405180910390f35b34801561035857600080fd5b50610361610c75565b60405161036e9190613bd6565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061338c565b610c8c565b6040516103ab9190613bd6565b60405180910390f35b3480156103c057600080fd5b506103c9610ca4565b6040516103d69190613bd6565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906133f9565b610caa565b005b34801561041457600080fd5b5061042f600480360381019061042a919061338c565b610cba565b60405161043c9190613a39565b60405180910390f35b34801561045157600080fd5b5061046c6004803603810190610467919061359c565b610d69565b005b34801561047a57600080fd5b50610483610e02565b005b34801561049157600080fd5b506104ac60048036038101906104a791906133f9565b61109a565b005b3480156104ba57600080fd5b506104d560048036038101906104d0919061366c565b6110ba565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190613623565b611140565b005b34801561050c57600080fd5b506105156111d6565b6040516105229190613a39565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d919061366c565b6111e9565b60405161055f91906139d2565b60405180910390f35b34801561057457600080fd5b5061057d6111ff565b60405161058a9190613a54565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b5919061338c565b61128d565b6040516105c79190613bd6565b60405180910390f35b3480156105dc57600080fd5b506105e561135d565b005b3480156105f357600080fd5b5061060e6004803603810190610609919061366c565b6113e5565b005b34801561061c57600080fd5b5061062561146b565b60405161063291906139d2565b60405180910390f35b34801561064757600080fd5b50610650611494565b60405161065d9190613a54565b60405180910390f35b34801561067257600080fd5b5061067b611526565b6040516106889190613a39565b60405180910390f35b6106ab60048036038101906106a6919061366c565b611539565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906134cf565b611882565b005b3480156106e257600080fd5b506106fd60048036038101906106f8919061344c565b6119fa565b005b34801561070b57600080fd5b506107266004803603810190610721919061366c565b611a76565b60405161073391906139d2565b60405180910390f35b34801561074857600080fd5b50610751611ab5565b60405161075e9190613bd6565b60405180910390f35b34801561077357600080fd5b5061077c611abb565b6040516107899190613a54565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b4919061366c565b611b49565b6040516107c69190613a54565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f1919061366c565b611bf3565b005b34801561080457600080fd5b5061080d611c79565b60405161081a9190613bd6565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613623565b611c7f565b005b34801561085857600080fd5b50610873600480360381019061086e91906133b9565b611d15565b6040516108809190613a39565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab919061354f565b611da9565b005b3480156108be57600080fd5b506108d960048036038101906108d4919061338c565b611e49565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b657506109b582611f41565b5b9050919050565b6109c5611fab565b73ffffffffffffffffffffffffffffffffffffffff166109e361146b565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090613af6565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060038054610a6590613ea6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9190613ea6565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611fb3565b610b29576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6f826111e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf6611fab565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c285750610c2681610c21611fab565b611d15565b155b15610c5f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c6a838383612001565b505050565b600c5481565b6000610c7f6120b3565b6002546001540303905090565b60126020528060005260406000206000915090505481565b600e5481565b610cb58383836120bc565b505050565b600080600090505b601180549050811015610d5e578273ffffffffffffffffffffffffffffffffffffffff1660118281548110610cfa57610cf9614010565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610d4b576001915050610d64565b8080610d5690613f09565b915050610cc2565b50600090505b919050565b610d71611fab565b73ffffffffffffffffffffffffffffffffffffffff16610d8f61146b565b73ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90613af6565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610e0a611fab565b73ffffffffffffffffffffffffffffffffffffffff16610e2861146b565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613af6565b60405180910390fd5b60026009541415610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613b96565b60405180910390fd5b600260098190555060007310e99c1e1d676717bc72a652b05dcd6ee5c8f39b73ffffffffffffffffffffffffffffffffffffffff166064603247610f089190613d62565b610f129190613d31565b604051610f1e906139bd565b60006040518083038185875af1925050503d8060008114610f5b576040519150601f19603f3d011682016040523d82523d6000602084013e610f60565b606091505b5050905080610f6e57600080fd5b600073ce84f7fe1b268baac5305ae23ae97c9a488e869373ffffffffffffffffffffffffffffffffffffffff166064603247610faa9190613d62565b610fb49190613d31565b604051610fc0906139bd565b60006040518083038185875af1925050503d8060008114610ffd576040519150601f19603f3d011682016040523d82523d6000602084013e611002565b606091505b505090508061101057600080fd5b600061101a61146b565b73ffffffffffffffffffffffffffffffffffffffff164760405161103d906139bd565b60006040518083038185875af1925050503d806000811461107a576040519150601f19603f3d011682016040523d82523d6000602084013e61107f565b606091505b505090508061108d57600080fd5b5050506001600981905550565b6110b5838383604051806020016040528060008152506119fa565b505050565b6110c2611fab565b73ffffffffffffffffffffffffffffffffffffffff166110e061146b565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90613af6565b60405180910390fd5b80600c8190555050565b611148611fab565b73ffffffffffffffffffffffffffffffffffffffff1661116661146b565b73ffffffffffffffffffffffffffffffffffffffff16146111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b390613af6565b60405180910390fd5b80600a90805190602001906111d2929190613046565b5050565b601060009054906101000a900460ff1681565b60006111f482612572565b600001519050919050565b600a805461120c90613ea6565b80601f016020809104026020016040519081016040528092919081815260200182805461123890613ea6565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611365611fab565b73ffffffffffffffffffffffffffffffffffffffff1661138361146b565b73ffffffffffffffffffffffffffffffffffffffff16146113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090613af6565b60405180910390fd5b6113e36000612801565b565b6113ed611fab565b73ffffffffffffffffffffffffffffffffffffffff1661140b61146b565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613af6565b60405180910390fd5b80600e8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114a390613ea6565b80601f01602080910402602001604051908101604052809291908181526020018280546114cf90613ea6565b801561151c5780601f106114f15761010080835404028352916020019161151c565b820191906000526020600020905b8154815290600101906020018083116114ff57829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b601060009054906101000a900460ff1615611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090613b16565b60405180910390fd5b6000611593610c75565b9050600082116115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613bb6565b60405180910390fd5b600e5482111561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490613ad6565b60405180910390fd5b600d54828261162c9190613cdb565b111561166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490613ab6565b60405180910390fd5b61167561146b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117f25760011515601060019054906101000a900460ff16151514156117a1576116cc33610cba565b61170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613b76565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54838261175e9190613cdb565b111561179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690613a96565b60405180910390fd5b505b81600c546117af9190613d62565b3410156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613b56565b60405180910390fd5b5b6000600190505b82811161187d57601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061185090613f09565b919050555061186a3382846118659190613cdb565b6128c5565b808061187590613f09565b9150506117f9565b505050565b61188a611fab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006118fc611fab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119a9611fab565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ee9190613a39565b60405180910390a35050565b611a058484846120bc565b611a248373ffffffffffffffffffffffffffffffffffffffff166128e3565b8015611a395750611a3784848484612906565b155b15611a70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60118181548110611a8657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b600b8054611ac890613ea6565b80601f0160208091040260200160405190810160405280929190818152602001828054611af490613ea6565b8015611b415780601f10611b1657610100808354040283529160200191611b41565b820191906000526020600020905b815481529060010190602001808311611b2457829003601f168201915b505050505081565b6060611b5482611fb3565b611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613b36565b60405180910390fd5b6000611b9d612a66565b90506000815111611bbd5760405180602001604052806000815250611beb565b80611bc784612af8565b600b604051602001611bdb9392919061398c565b6040516020818303038152906040525b915050919050565b611bfb611fab565b73ffffffffffffffffffffffffffffffffffffffff16611c1961146b565b73ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690613af6565b60405180910390fd5b80600f8190555050565b600d5481565b611c87611fab565b73ffffffffffffffffffffffffffffffffffffffff16611ca561146b565b73ffffffffffffffffffffffffffffffffffffffff1614611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf290613af6565b60405180910390fd5b80600b9080519060200190611d11929190613046565b5050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611db1611fab565b73ffffffffffffffffffffffffffffffffffffffff16611dcf61146b565b73ffffffffffffffffffffffffffffffffffffffff1614611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613af6565b60405180910390fd5b60116000611e3391906130cc565b818160119190611e449291906130ed565b505050565b611e51611fab565b73ffffffffffffffffffffffffffffffffffffffff16611e6f61146b565b73ffffffffffffffffffffffffffffffffffffffff1614611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90613af6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90613a76565b60405180910390fd5b611f3e81612801565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611fbe6120b3565b11158015611fcd575060015482105b8015611ffa575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006120c782612572565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612132576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612153611fab565b73ffffffffffffffffffffffffffffffffffffffff16148061218257506121818561217c611fab565b611d15565b5b806121c75750612190611fab565b73ffffffffffffffffffffffffffffffffffffffff166121af84610ae8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612200576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612267576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122748585856001612c59565b61228060008487612001565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125005760015482146124ff57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461256b8585856001612c5f565b5050505050565b61257a61318d565b6000829050806125886120b3565b11158015612597575060015481105b156127ca576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127c857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126ac5780925050506127fc565b5b6001156127c757818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127c25780925050506127fc565b6126ad565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128df828260405180602001604052806000815250612c65565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261292c611fab565b8786866040518563ffffffff1660e01b815260040161294e94939291906139ed565b602060405180830381600087803b15801561296857600080fd5b505af192505050801561299957506040513d601f19601f8201168201806040525081019061299691906135f6565b60015b612a13573d80600081146129c9576040519150601f19603f3d011682016040523d82523d6000602084013e6129ce565b606091505b50600081511415612a0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a7590613ea6565b80601f0160208091040260200160405190810160405280929190818152602001828054612aa190613ea6565b8015612aee5780601f10612ac357610100808354040283529160200191612aee565b820191906000526020600020905b815481529060010190602001808311612ad157829003601f168201915b5050505050905090565b60606000821415612b40576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c54565b600082905060005b60008214612b72578080612b5b90613f09565b915050600a82612b6b9190613d31565b9150612b48565b60008167ffffffffffffffff811115612b8e57612b8d61403f565b5b6040519080825280601f01601f191660200182016040528015612bc05781602001600182028036833780820191505090505b5090505b60008514612c4d57600182612bd99190613dbc565b9150600a85612be89190613f52565b6030612bf49190613cdb565b60f81b818381518110612c0a57612c09614010565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c469190613d31565b9450612bc4565b8093505050505b919050565b50505050565b50505050565b612c728383836001612c77565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ce5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d20576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d2d6000868387612c59565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ef75750612ef68773ffffffffffffffffffffffffffffffffffffffff166128e3565b5b15612fbd575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6c6000888480600101955088612906565b612fa2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612efd578260015414612fb857600080fd5b613029565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612fbe575b81600181905550505061303f6000868387612c5f565b5050505050565b82805461305290613ea6565b90600052602060002090601f01602090048101928261307457600085556130bb565b82601f1061308d57805160ff19168380011785556130bb565b828001600101855582156130bb579182015b828111156130ba57825182559160200191906001019061309f565b5b5090506130c891906131d0565b5090565b50805460008255906000526020600020908101906130ea91906131d0565b50565b82805482825590600052602060002090810192821561317c579160200282015b8281111561317b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061310d565b5b50905061318991906131d0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131e95760008160009055506001016131d1565b5090565b60006132006131fb84613c16565b613bf1565b90508281526020810184848401111561321c5761321b61407d565b5b613227848285613e64565b509392505050565b600061324261323d84613c47565b613bf1565b90508281526020810184848401111561325e5761325d61407d565b5b613269848285613e64565b509392505050565b600081359050613280816142d5565b92915050565b60008083601f84011261329c5761329b614073565b5b8235905067ffffffffffffffff8111156132b9576132b861406e565b5b6020830191508360208202830111156132d5576132d4614078565b5b9250929050565b6000813590506132eb816142ec565b92915050565b60008135905061330081614303565b92915050565b60008151905061331581614303565b92915050565b600082601f8301126133305761332f614073565b5b81356133408482602086016131ed565b91505092915050565b600082601f83011261335e5761335d614073565b5b813561336e84826020860161322f565b91505092915050565b6000813590506133868161431a565b92915050565b6000602082840312156133a2576133a1614087565b5b60006133b084828501613271565b91505092915050565b600080604083850312156133d0576133cf614087565b5b60006133de85828601613271565b92505060206133ef85828601613271565b9150509250929050565b60008060006060848603121561341257613411614087565b5b600061342086828701613271565b935050602061343186828701613271565b925050604061344286828701613377565b9150509250925092565b6000806000806080858703121561346657613465614087565b5b600061347487828801613271565b945050602061348587828801613271565b935050604061349687828801613377565b925050606085013567ffffffffffffffff8111156134b7576134b6614082565b5b6134c38782880161331b565b91505092959194509250565b600080604083850312156134e6576134e5614087565b5b60006134f485828601613271565b9250506020613505858286016132dc565b9150509250929050565b6000806040838503121561352657613525614087565b5b600061353485828601613271565b925050602061354585828601613377565b9150509250929050565b6000806020838503121561356657613565614087565b5b600083013567ffffffffffffffff81111561358457613583614082565b5b61359085828601613286565b92509250509250929050565b6000602082840312156135b2576135b1614087565b5b60006135c0848285016132dc565b91505092915050565b6000602082840312156135df576135de614087565b5b60006135ed848285016132f1565b91505092915050565b60006020828403121561360c5761360b614087565b5b600061361a84828501613306565b91505092915050565b60006020828403121561363957613638614087565b5b600082013567ffffffffffffffff81111561365757613656614082565b5b61366384828501613349565b91505092915050565b60006020828403121561368257613681614087565b5b600061369084828501613377565b91505092915050565b6136a281613df0565b82525050565b6136b181613e02565b82525050565b60006136c282613c8d565b6136cc8185613ca3565b93506136dc818560208601613e73565b6136e58161408c565b840191505092915050565b60006136fb82613c98565b6137058185613cbf565b9350613715818560208601613e73565b61371e8161408c565b840191505092915050565b600061373482613c98565b61373e8185613cd0565b935061374e818560208601613e73565b80840191505092915050565b6000815461376781613ea6565b6137718186613cd0565b9450600182166000811461378c576001811461379d576137d0565b60ff198316865281860193506137d0565b6137a685613c78565b60005b838110156137c8578154818901526001820191506020810190506137a9565b838801955050505b50505092915050565b60006137e6602683613cbf565b91506137f18261409d565b604082019050919050565b6000613809601c83613cbf565b9150613814826140ec565b602082019050919050565b600061382c601683613cbf565b915061383782614115565b602082019050919050565b600061384f602483613cbf565b915061385a8261413e565b604082019050919050565b6000613872602083613cbf565b915061387d8261418d565b602082019050919050565b6000613895601683613cbf565b91506138a0826141b6565b602082019050919050565b60006138b8602f83613cbf565b91506138c3826141df565b604082019050919050565b60006138db600083613cb4565b91506138e68261422e565b600082019050919050565b60006138fe601283613cbf565b915061390982614231565b602082019050919050565b6000613921601783613cbf565b915061392c8261425a565b602082019050919050565b6000613944601f83613cbf565b915061394f82614283565b602082019050919050565b6000613967601b83613cbf565b9150613972826142ac565b602082019050919050565b61398681613e5a565b82525050565b60006139988286613729565b91506139a48285613729565b91506139b0828461375a565b9150819050949350505050565b60006139c8826138ce565b9150819050919050565b60006020820190506139e76000830184613699565b92915050565b6000608082019050613a026000830187613699565b613a0f6020830186613699565b613a1c604083018561397d565b8181036060830152613a2e81846136b7565b905095945050505050565b6000602082019050613a4e60008301846136a8565b92915050565b60006020820190508181036000830152613a6e81846136f0565b905092915050565b60006020820190508181036000830152613a8f816137d9565b9050919050565b60006020820190508181036000830152613aaf816137fc565b9050919050565b60006020820190508181036000830152613acf8161381f565b9050919050565b60006020820190508181036000830152613aef81613842565b9050919050565b60006020820190508181036000830152613b0f81613865565b9050919050565b60006020820190508181036000830152613b2f81613888565b9050919050565b60006020820190508181036000830152613b4f816138ab565b9050919050565b60006020820190508181036000830152613b6f816138f1565b9050919050565b60006020820190508181036000830152613b8f81613914565b9050919050565b60006020820190508181036000830152613baf81613937565b9050919050565b60006020820190508181036000830152613bcf8161395a565b9050919050565b6000602082019050613beb600083018461397d565b92915050565b6000613bfb613c0c565b9050613c078282613ed8565b919050565b6000604051905090565b600067ffffffffffffffff821115613c3157613c3061403f565b5b613c3a8261408c565b9050602081019050919050565b600067ffffffffffffffff821115613c6257613c6161403f565b5b613c6b8261408c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ce682613e5a565b9150613cf183613e5a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d2657613d25613f83565b5b828201905092915050565b6000613d3c82613e5a565b9150613d4783613e5a565b925082613d5757613d56613fb2565b5b828204905092915050565b6000613d6d82613e5a565b9150613d7883613e5a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db157613db0613f83565b5b828202905092915050565b6000613dc782613e5a565b9150613dd283613e5a565b925082821015613de557613de4613f83565b5b828203905092915050565b6000613dfb82613e3a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e91578082015181840152602081019050613e76565b83811115613ea0576000848401525b50505050565b60006002820490506001821680613ebe57607f821691505b60208210811415613ed257613ed1613fe1565b5b50919050565b613ee18261408c565b810181811067ffffffffffffffff82111715613f0057613eff61403f565b5b80604052505050565b6000613f1482613e5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4757613f46613f83565b5b600182019050919050565b6000613f5d82613e5a565b9150613f6883613e5a565b925082613f7857613f77613fb2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6142de81613df0565b81146142e957600080fd5b50565b6142f581613e02565b811461430057600080fd5b50565b61430c81613e0e565b811461431757600080fd5b50565b61432381613e5a565b811461432e57600080fd5b5056fea2646970667358221220ce06c162c9f184097c2e9d75a19e59f324d282083c471755efae88d5dedaeebd64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c566962657a204b617274656c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002564b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696163647837766e367465767a346937776f636e706579796278633661636370746570376d7674636c6178796d647a646c6a7378652f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063ba4e5c49116100ab578063d5abeb011161006f578063d5abeb01146107f8578063da3ef23f14610823578063e985e9c51461084c578063edec5f2714610889578063f2fde38b146108b257610225565b8063ba4e5c49146106ff578063ba7d2c761461073c578063c668286214610767578063c87b56dd14610792578063d0eb26b0146107cf57610225565b806395d89b41116100f257806395d89b411461063b5780639c70b51214610666578063a0712d6814610691578063a22cb465146106ad578063b88d4fde146106d657610225565b806370a0823114610593578063715018a6146105d05780637f00c7a6146105e75780638da5cb5b1461061057610225565b806323b872dd116101b157806344a0d68a1161017557806344a0d68a146104ae57806355f804b3146104d75780635c975abb146105005780636352211e1461052b5780636c0360eb1461056857610225565b806323b872dd146103df5780633af32abf146104085780633c952764146104455780633ccfd60b1461046e57806342842e0e1461048557610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c57806318cae26914610377578063239c70ae146103b457610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135c9565b6108db565b60405161025e9190613a39565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061359c565b6109bd565b005b34801561029c57600080fd5b506102a5610a56565b6040516102b29190613a54565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061366c565b610ae8565b6040516102ef91906139d2565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a919061350f565b610b64565b005b34801561032d57600080fd5b50610336610c6f565b6040516103439190613bd6565b60405180910390f35b34801561035857600080fd5b50610361610c75565b60405161036e9190613bd6565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061338c565b610c8c565b6040516103ab9190613bd6565b60405180910390f35b3480156103c057600080fd5b506103c9610ca4565b6040516103d69190613bd6565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906133f9565b610caa565b005b34801561041457600080fd5b5061042f600480360381019061042a919061338c565b610cba565b60405161043c9190613a39565b60405180910390f35b34801561045157600080fd5b5061046c6004803603810190610467919061359c565b610d69565b005b34801561047a57600080fd5b50610483610e02565b005b34801561049157600080fd5b506104ac60048036038101906104a791906133f9565b61109a565b005b3480156104ba57600080fd5b506104d560048036038101906104d0919061366c565b6110ba565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190613623565b611140565b005b34801561050c57600080fd5b506105156111d6565b6040516105229190613a39565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d919061366c565b6111e9565b60405161055f91906139d2565b60405180910390f35b34801561057457600080fd5b5061057d6111ff565b60405161058a9190613a54565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b5919061338c565b61128d565b6040516105c79190613bd6565b60405180910390f35b3480156105dc57600080fd5b506105e561135d565b005b3480156105f357600080fd5b5061060e6004803603810190610609919061366c565b6113e5565b005b34801561061c57600080fd5b5061062561146b565b60405161063291906139d2565b60405180910390f35b34801561064757600080fd5b50610650611494565b60405161065d9190613a54565b60405180910390f35b34801561067257600080fd5b5061067b611526565b6040516106889190613a39565b60405180910390f35b6106ab60048036038101906106a6919061366c565b611539565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906134cf565b611882565b005b3480156106e257600080fd5b506106fd60048036038101906106f8919061344c565b6119fa565b005b34801561070b57600080fd5b506107266004803603810190610721919061366c565b611a76565b60405161073391906139d2565b60405180910390f35b34801561074857600080fd5b50610751611ab5565b60405161075e9190613bd6565b60405180910390f35b34801561077357600080fd5b5061077c611abb565b6040516107899190613a54565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b4919061366c565b611b49565b6040516107c69190613a54565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f1919061366c565b611bf3565b005b34801561080457600080fd5b5061080d611c79565b60405161081a9190613bd6565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613623565b611c7f565b005b34801561085857600080fd5b50610873600480360381019061086e91906133b9565b611d15565b6040516108809190613a39565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab919061354f565b611da9565b005b3480156108be57600080fd5b506108d960048036038101906108d4919061338c565b611e49565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b657506109b582611f41565b5b9050919050565b6109c5611fab565b73ffffffffffffffffffffffffffffffffffffffff166109e361146b565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090613af6565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060038054610a6590613ea6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9190613ea6565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611fb3565b610b29576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6f826111e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf6611fab565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c285750610c2681610c21611fab565b611d15565b155b15610c5f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c6a838383612001565b505050565b600c5481565b6000610c7f6120b3565b6002546001540303905090565b60126020528060005260406000206000915090505481565b600e5481565b610cb58383836120bc565b505050565b600080600090505b601180549050811015610d5e578273ffffffffffffffffffffffffffffffffffffffff1660118281548110610cfa57610cf9614010565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610d4b576001915050610d64565b8080610d5690613f09565b915050610cc2565b50600090505b919050565b610d71611fab565b73ffffffffffffffffffffffffffffffffffffffff16610d8f61146b565b73ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90613af6565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610e0a611fab565b73ffffffffffffffffffffffffffffffffffffffff16610e2861146b565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613af6565b60405180910390fd5b60026009541415610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613b96565b60405180910390fd5b600260098190555060007310e99c1e1d676717bc72a652b05dcd6ee5c8f39b73ffffffffffffffffffffffffffffffffffffffff166064603247610f089190613d62565b610f129190613d31565b604051610f1e906139bd565b60006040518083038185875af1925050503d8060008114610f5b576040519150601f19603f3d011682016040523d82523d6000602084013e610f60565b606091505b5050905080610f6e57600080fd5b600073ce84f7fe1b268baac5305ae23ae97c9a488e869373ffffffffffffffffffffffffffffffffffffffff166064603247610faa9190613d62565b610fb49190613d31565b604051610fc0906139bd565b60006040518083038185875af1925050503d8060008114610ffd576040519150601f19603f3d011682016040523d82523d6000602084013e611002565b606091505b505090508061101057600080fd5b600061101a61146b565b73ffffffffffffffffffffffffffffffffffffffff164760405161103d906139bd565b60006040518083038185875af1925050503d806000811461107a576040519150601f19603f3d011682016040523d82523d6000602084013e61107f565b606091505b505090508061108d57600080fd5b5050506001600981905550565b6110b5838383604051806020016040528060008152506119fa565b505050565b6110c2611fab565b73ffffffffffffffffffffffffffffffffffffffff166110e061146b565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90613af6565b60405180910390fd5b80600c8190555050565b611148611fab565b73ffffffffffffffffffffffffffffffffffffffff1661116661146b565b73ffffffffffffffffffffffffffffffffffffffff16146111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b390613af6565b60405180910390fd5b80600a90805190602001906111d2929190613046565b5050565b601060009054906101000a900460ff1681565b60006111f482612572565b600001519050919050565b600a805461120c90613ea6565b80601f016020809104026020016040519081016040528092919081815260200182805461123890613ea6565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611365611fab565b73ffffffffffffffffffffffffffffffffffffffff1661138361146b565b73ffffffffffffffffffffffffffffffffffffffff16146113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090613af6565b60405180910390fd5b6113e36000612801565b565b6113ed611fab565b73ffffffffffffffffffffffffffffffffffffffff1661140b61146b565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613af6565b60405180910390fd5b80600e8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114a390613ea6565b80601f01602080910402602001604051908101604052809291908181526020018280546114cf90613ea6565b801561151c5780601f106114f15761010080835404028352916020019161151c565b820191906000526020600020905b8154815290600101906020018083116114ff57829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b601060009054906101000a900460ff1615611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090613b16565b60405180910390fd5b6000611593610c75565b9050600082116115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613bb6565b60405180910390fd5b600e5482111561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490613ad6565b60405180910390fd5b600d54828261162c9190613cdb565b111561166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490613ab6565b60405180910390fd5b61167561146b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117f25760011515601060019054906101000a900460ff16151514156117a1576116cc33610cba565b61170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613b76565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54838261175e9190613cdb565b111561179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690613a96565b60405180910390fd5b505b81600c546117af9190613d62565b3410156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613b56565b60405180910390fd5b5b6000600190505b82811161187d57601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061185090613f09565b919050555061186a3382846118659190613cdb565b6128c5565b808061187590613f09565b9150506117f9565b505050565b61188a611fab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006118fc611fab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119a9611fab565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ee9190613a39565b60405180910390a35050565b611a058484846120bc565b611a248373ffffffffffffffffffffffffffffffffffffffff166128e3565b8015611a395750611a3784848484612906565b155b15611a70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60118181548110611a8657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b600b8054611ac890613ea6565b80601f0160208091040260200160405190810160405280929190818152602001828054611af490613ea6565b8015611b415780601f10611b1657610100808354040283529160200191611b41565b820191906000526020600020905b815481529060010190602001808311611b2457829003601f168201915b505050505081565b6060611b5482611fb3565b611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613b36565b60405180910390fd5b6000611b9d612a66565b90506000815111611bbd5760405180602001604052806000815250611beb565b80611bc784612af8565b600b604051602001611bdb9392919061398c565b6040516020818303038152906040525b915050919050565b611bfb611fab565b73ffffffffffffffffffffffffffffffffffffffff16611c1961146b565b73ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690613af6565b60405180910390fd5b80600f8190555050565b600d5481565b611c87611fab565b73ffffffffffffffffffffffffffffffffffffffff16611ca561146b565b73ffffffffffffffffffffffffffffffffffffffff1614611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf290613af6565b60405180910390fd5b80600b9080519060200190611d11929190613046565b5050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611db1611fab565b73ffffffffffffffffffffffffffffffffffffffff16611dcf61146b565b73ffffffffffffffffffffffffffffffffffffffff1614611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613af6565b60405180910390fd5b60116000611e3391906130cc565b818160119190611e449291906130ed565b505050565b611e51611fab565b73ffffffffffffffffffffffffffffffffffffffff16611e6f61146b565b73ffffffffffffffffffffffffffffffffffffffff1614611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90613af6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90613a76565b60405180910390fd5b611f3e81612801565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611fbe6120b3565b11158015611fcd575060015482105b8015611ffa575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006120c782612572565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612132576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612153611fab565b73ffffffffffffffffffffffffffffffffffffffff16148061218257506121818561217c611fab565b611d15565b5b806121c75750612190611fab565b73ffffffffffffffffffffffffffffffffffffffff166121af84610ae8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612200576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612267576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122748585856001612c59565b61228060008487612001565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125005760015482146124ff57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461256b8585856001612c5f565b5050505050565b61257a61318d565b6000829050806125886120b3565b11158015612597575060015481105b156127ca576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127c857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126ac5780925050506127fc565b5b6001156127c757818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127c25780925050506127fc565b6126ad565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128df828260405180602001604052806000815250612c65565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261292c611fab565b8786866040518563ffffffff1660e01b815260040161294e94939291906139ed565b602060405180830381600087803b15801561296857600080fd5b505af192505050801561299957506040513d601f19601f8201168201806040525081019061299691906135f6565b60015b612a13573d80600081146129c9576040519150601f19603f3d011682016040523d82523d6000602084013e6129ce565b606091505b50600081511415612a0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a7590613ea6565b80601f0160208091040260200160405190810160405280929190818152602001828054612aa190613ea6565b8015612aee5780601f10612ac357610100808354040283529160200191612aee565b820191906000526020600020905b815481529060010190602001808311612ad157829003601f168201915b5050505050905090565b60606000821415612b40576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c54565b600082905060005b60008214612b72578080612b5b90613f09565b915050600a82612b6b9190613d31565b9150612b48565b60008167ffffffffffffffff811115612b8e57612b8d61403f565b5b6040519080825280601f01601f191660200182016040528015612bc05781602001600182028036833780820191505090505b5090505b60008514612c4d57600182612bd99190613dbc565b9150600a85612be89190613f52565b6030612bf49190613cdb565b60f81b818381518110612c0a57612c09614010565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c469190613d31565b9450612bc4565b8093505050505b919050565b50505050565b50505050565b612c728383836001612c77565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ce5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d20576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d2d6000868387612c59565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ef75750612ef68773ffffffffffffffffffffffffffffffffffffffff166128e3565b5b15612fbd575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6c6000888480600101955088612906565b612fa2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612efd578260015414612fb857600080fd5b613029565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612fbe575b81600181905550505061303f6000868387612c5f565b5050505050565b82805461305290613ea6565b90600052602060002090601f01602090048101928261307457600085556130bb565b82601f1061308d57805160ff19168380011785556130bb565b828001600101855582156130bb579182015b828111156130ba57825182559160200191906001019061309f565b5b5090506130c891906131d0565b5090565b50805460008255906000526020600020908101906130ea91906131d0565b50565b82805482825590600052602060002090810192821561317c579160200282015b8281111561317b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061310d565b5b50905061318991906131d0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131e95760008160009055506001016131d1565b5090565b60006132006131fb84613c16565b613bf1565b90508281526020810184848401111561321c5761321b61407d565b5b613227848285613e64565b509392505050565b600061324261323d84613c47565b613bf1565b90508281526020810184848401111561325e5761325d61407d565b5b613269848285613e64565b509392505050565b600081359050613280816142d5565b92915050565b60008083601f84011261329c5761329b614073565b5b8235905067ffffffffffffffff8111156132b9576132b861406e565b5b6020830191508360208202830111156132d5576132d4614078565b5b9250929050565b6000813590506132eb816142ec565b92915050565b60008135905061330081614303565b92915050565b60008151905061331581614303565b92915050565b600082601f8301126133305761332f614073565b5b81356133408482602086016131ed565b91505092915050565b600082601f83011261335e5761335d614073565b5b813561336e84826020860161322f565b91505092915050565b6000813590506133868161431a565b92915050565b6000602082840312156133a2576133a1614087565b5b60006133b084828501613271565b91505092915050565b600080604083850312156133d0576133cf614087565b5b60006133de85828601613271565b92505060206133ef85828601613271565b9150509250929050565b60008060006060848603121561341257613411614087565b5b600061342086828701613271565b935050602061343186828701613271565b925050604061344286828701613377565b9150509250925092565b6000806000806080858703121561346657613465614087565b5b600061347487828801613271565b945050602061348587828801613271565b935050604061349687828801613377565b925050606085013567ffffffffffffffff8111156134b7576134b6614082565b5b6134c38782880161331b565b91505092959194509250565b600080604083850312156134e6576134e5614087565b5b60006134f485828601613271565b9250506020613505858286016132dc565b9150509250929050565b6000806040838503121561352657613525614087565b5b600061353485828601613271565b925050602061354585828601613377565b9150509250929050565b6000806020838503121561356657613565614087565b5b600083013567ffffffffffffffff81111561358457613583614082565b5b61359085828601613286565b92509250509250929050565b6000602082840312156135b2576135b1614087565b5b60006135c0848285016132dc565b91505092915050565b6000602082840312156135df576135de614087565b5b60006135ed848285016132f1565b91505092915050565b60006020828403121561360c5761360b614087565b5b600061361a84828501613306565b91505092915050565b60006020828403121561363957613638614087565b5b600082013567ffffffffffffffff81111561365757613656614082565b5b61366384828501613349565b91505092915050565b60006020828403121561368257613681614087565b5b600061369084828501613377565b91505092915050565b6136a281613df0565b82525050565b6136b181613e02565b82525050565b60006136c282613c8d565b6136cc8185613ca3565b93506136dc818560208601613e73565b6136e58161408c565b840191505092915050565b60006136fb82613c98565b6137058185613cbf565b9350613715818560208601613e73565b61371e8161408c565b840191505092915050565b600061373482613c98565b61373e8185613cd0565b935061374e818560208601613e73565b80840191505092915050565b6000815461376781613ea6565b6137718186613cd0565b9450600182166000811461378c576001811461379d576137d0565b60ff198316865281860193506137d0565b6137a685613c78565b60005b838110156137c8578154818901526001820191506020810190506137a9565b838801955050505b50505092915050565b60006137e6602683613cbf565b91506137f18261409d565b604082019050919050565b6000613809601c83613cbf565b9150613814826140ec565b602082019050919050565b600061382c601683613cbf565b915061383782614115565b602082019050919050565b600061384f602483613cbf565b915061385a8261413e565b604082019050919050565b6000613872602083613cbf565b915061387d8261418d565b602082019050919050565b6000613895601683613cbf565b91506138a0826141b6565b602082019050919050565b60006138b8602f83613cbf565b91506138c3826141df565b604082019050919050565b60006138db600083613cb4565b91506138e68261422e565b600082019050919050565b60006138fe601283613cbf565b915061390982614231565b602082019050919050565b6000613921601783613cbf565b915061392c8261425a565b602082019050919050565b6000613944601f83613cbf565b915061394f82614283565b602082019050919050565b6000613967601b83613cbf565b9150613972826142ac565b602082019050919050565b61398681613e5a565b82525050565b60006139988286613729565b91506139a48285613729565b91506139b0828461375a565b9150819050949350505050565b60006139c8826138ce565b9150819050919050565b60006020820190506139e76000830184613699565b92915050565b6000608082019050613a026000830187613699565b613a0f6020830186613699565b613a1c604083018561397d565b8181036060830152613a2e81846136b7565b905095945050505050565b6000602082019050613a4e60008301846136a8565b92915050565b60006020820190508181036000830152613a6e81846136f0565b905092915050565b60006020820190508181036000830152613a8f816137d9565b9050919050565b60006020820190508181036000830152613aaf816137fc565b9050919050565b60006020820190508181036000830152613acf8161381f565b9050919050565b60006020820190508181036000830152613aef81613842565b9050919050565b60006020820190508181036000830152613b0f81613865565b9050919050565b60006020820190508181036000830152613b2f81613888565b9050919050565b60006020820190508181036000830152613b4f816138ab565b9050919050565b60006020820190508181036000830152613b6f816138f1565b9050919050565b60006020820190508181036000830152613b8f81613914565b9050919050565b60006020820190508181036000830152613baf81613937565b9050919050565b60006020820190508181036000830152613bcf8161395a565b9050919050565b6000602082019050613beb600083018461397d565b92915050565b6000613bfb613c0c565b9050613c078282613ed8565b919050565b6000604051905090565b600067ffffffffffffffff821115613c3157613c3061403f565b5b613c3a8261408c565b9050602081019050919050565b600067ffffffffffffffff821115613c6257613c6161403f565b5b613c6b8261408c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ce682613e5a565b9150613cf183613e5a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d2657613d25613f83565b5b828201905092915050565b6000613d3c82613e5a565b9150613d4783613e5a565b925082613d5757613d56613fb2565b5b828204905092915050565b6000613d6d82613e5a565b9150613d7883613e5a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db157613db0613f83565b5b828202905092915050565b6000613dc782613e5a565b9150613dd283613e5a565b925082821015613de557613de4613f83565b5b828203905092915050565b6000613dfb82613e3a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e91578082015181840152602081019050613e76565b83811115613ea0576000848401525b50505050565b60006002820490506001821680613ebe57607f821691505b60208210811415613ed257613ed1613fe1565b5b50919050565b613ee18261408c565b810181811067ffffffffffffffff82111715613f0057613eff61403f565b5b80604052505050565b6000613f1482613e5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4757613f46613f83565b5b600182019050919050565b6000613f5d82613e5a565b9150613f6883613e5a565b925082613f7857613f77613fb2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6142de81613df0565b81146142e957600080fd5b50565b6142f581613e02565b811461430057600080fd5b50565b61430c81613e0e565b811461431757600080fd5b50565b61432381613e5a565b811461432e57600080fd5b5056fea2646970667358221220ce06c162c9f184097c2e9d75a19e59f324d282083c471755efae88d5dedaeebd64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c566962657a204b617274656c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002564b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696163647837766e367465767a346937776f636e706579796278633661636370746570376d7674636c6178796d647a646c6a7378652f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Vibez Kartel
Arg [1] : _symbol (string): VK
Arg [2] : _initBaseURI (string): ipfs://bafybeiacdx7vn6tevz4i7wocnpeyybxc6accptep7mvtclaxymdzdljsxe/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 566962657a204b617274656c0000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 564b000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f626166796265696163647837766e367465767a346937776f63
Arg [9] : 6e706579796278633661636370746570376d7674636c6178796d647a646c6a73
Arg [10] : 78652f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49902:3879:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32157:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53006:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35270:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36773:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36336:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50067:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31406:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50345:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50146:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37638:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51661:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53087:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53340:438;;;;;;;;;;;;;:::i;:::-;;37879:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52566:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52774:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50227:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35078:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49996:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32526:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9915:103;;;;;;;;;;;;;:::i;:::-;;52652:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9264:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35439:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50258:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50716:937;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37049:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38135:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50299:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50183;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50023;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52009:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52454:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50111:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52878:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37407:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53190:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10173:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32157:305;32259:4;32311:25;32296:40;;;:11;:40;;;;:105;;;;32368:33;32353:48;;;:11;:48;;;;32296:105;:158;;;;32418:36;32442:11;32418:23;:36::i;:::-;32296:158;32276:178;;32157:305;;;:::o;53006:73::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53067:6:::1;53058;;:15;;;;;;;;;;;;;;;;;;53006:73:::0;:::o;35270:100::-;35324:13;35357:5;35350:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35270:100;:::o;36773:204::-;36841:7;36866:16;36874:7;36866;:16::i;:::-;36861:64;;36891:34;;;;;;;;;;;;;;36861:64;36945:15;:24;36961:7;36945:24;;;;;;;;;;;;;;;;;;;;;36938:31;;36773:204;;;:::o;36336:371::-;36409:13;36425:24;36441:7;36425:15;:24::i;:::-;36409:40;;36470:5;36464:11;;:2;:11;;;36460:48;;;36484:24;;;;;;;;;;;;;;36460:48;36541:5;36525:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;36551:37;36568:5;36575:12;:10;:12::i;:::-;36551:16;:37::i;:::-;36550:38;36525:63;36521:138;;;36612:35;;;;;;;;;;;;;;36521:138;36671:28;36680:2;36684:7;36693:5;36671:8;:28::i;:::-;36398:309;36336:371;;:::o;50067:39::-;;;;:::o;31406:303::-;31450:7;31675:15;:13;:15::i;:::-;31660:12;;31644:13;;:28;:46;31637:53;;31406:303;:::o;50345:55::-;;;;;;;;;;;;;;;;;:::o;50146:32::-;;;;:::o;37638:170::-;37772:28;37782:4;37788:2;37792:7;37772:9;:28::i;:::-;37638:170;;;:::o;51661:239::-;51720:4;51738:6;51747:1;51738:10;;51733:143;51754:20;:27;;;;51750:1;:31;51733:143;;;51828:5;51801:32;;:20;51822:1;51801:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;51797:72;;;51855:4;51848:11;;;;;51797:72;51783:3;;;;;:::i;:::-;;;;51733:143;;;;51889:5;51882:12;;51661:239;;;;:::o;53087:95::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53170:6:::1;53152:15;;:24;;;;;;;;;;;;;;;;;;53087:95:::0;:::o;53340:438::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1:::1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;53400:7:::2;53421:42;53413:56;;53506:3;53501:2;53477:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;53413:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53399:115;;;53529:2;53521:11;;;::::0;::::2;;53542:7;53563:42;53555:56;;53648:3;53643:2;53619:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;53555:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53541:115;;;53671:2;53663:11;;;::::0;::::2;;53684:7;53705;:5;:7::i;:::-;53697:21;;53726;53697:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53683:69;;;53767:2;53759:11;;;::::0;::::2;;53390:388;;;1805:1:::1;2759:7;:22;;;;53340:438::o:0;37879:185::-;38017:39;38034:4;38040:2;38044:7;38017:39;;;;;;;;;;;;:16;:39::i;:::-;37879:185;;;:::o;52566:80::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52632:8:::1;52625:4;:15;;;;52566:80:::0;:::o;52774:98::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52855:11:::1;52845:7;:21;;;;;;;;;;;;:::i;:::-;;52774:98:::0;:::o;50227:26::-;;;;;;;;;;;;;:::o;35078:125::-;35142:7;35169:21;35182:7;35169:12;:21::i;:::-;:26;;;35162:33;;35078:125;;;:::o;49996:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32526:206::-;32590:7;32631:1;32614:19;;:5;:19;;;32610:60;;;32642:28;;;;;;;;;;;;;;32610:60;32696:12;:19;32709:5;32696:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32688:36;;32681:43;;32526:206;;;:::o;9915:103::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9980:30:::1;10007:1;9980:18;:30::i;:::-;9915:103::o:0;52652:116::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52745:17:::1;52729:13;:33;;;;52652:116:::0;:::o;9264:87::-;9310:7;9337:6;;;;;;;;;;;9330:13;;9264:87;:::o;35439:104::-;35495:13;35528:7;35521:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35439:104;:::o;50258:34::-;;;;;;;;;;;;;:::o;50716:937::-;50782:6;;;;;;;;;;;50781:7;50773:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;50822:14;50839:13;:11;:13::i;:::-;50822:30;;50881:1;50867:11;:15;50859:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50944:13;;50929:11;:28;;50921:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51037:9;;51022:11;51013:6;:20;;;;:::i;:::-;:33;;51005:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51100:7;:5;:7::i;:::-;51086:21;;:10;:21;;;51082:416;;51142:4;51123:23;;:15;;;;;;;;;;;:23;;;51120:298;;;51171:25;51185:10;51171:13;:25::i;:::-;51163:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51239:24;51266:20;:32;51287:10;51266:32;;;;;;;;;;;;;;;;51239:59;;51355:18;;51340:11;51321:16;:30;;;;:::i;:::-;:52;;51313:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;51148:270;51120:298;51456:11;51449:4;;:18;;;;:::i;:::-;51436:9;:31;;51428:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51082:416;51515:9;51527:1;51515:13;;51510:138;51535:11;51530:1;:16;51510:138;;51564:20;:32;51585:10;51564:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;51607:33;51617:10;51638:1;51629:6;:10;;;;:::i;:::-;51607:9;:33::i;:::-;51548:3;;;;;:::i;:::-;;;;51510:138;;;;50766:887;50716:937;:::o;37049:287::-;37160:12;:10;:12::i;:::-;37148:24;;:8;:24;;;37144:54;;;37181:17;;;;;;;;;;;;;;37144:54;37256:8;37211:18;:32;37230:12;:10;:12::i;:::-;37211:32;;;;;;;;;;;;;;;:42;37244:8;37211:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37309:8;37280:48;;37295:12;:10;:12::i;:::-;37280:48;;;37319:8;37280:48;;;;;;:::i;:::-;;;;;;;;37049:287;;:::o;38135:369::-;38302:28;38312:4;38318:2;38322:7;38302:9;:28::i;:::-;38345:15;:2;:13;;;:15::i;:::-;:76;;;;;38365:56;38396:4;38402:2;38406:7;38415:5;38365:30;:56::i;:::-;38364:57;38345:76;38341:156;;;38445:40;;;;;;;;;;;;;;38341:156;38135:369;;;;:::o;50299:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50183:::-;;;;:::o;50023:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52009:423::-;52107:13;52148:16;52156:7;52148;:16::i;:::-;52132:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;52238:28;52269:10;:8;:10::i;:::-;52238:41;;52324:1;52299:14;52293:28;:32;:133;;;;;;;;;;;;;;;;;52361:14;52377:18;:7;:16;:18::i;:::-;52397:13;52344:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52293:133;52286:140;;;52009:423;;;:::o;52454:104::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52546:6:::1;52525:18;:27;;;;52454:104:::0;:::o;50111:30::-;;;;:::o;52878:122::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52977:17:::1;52961:13;:33;;;;;;;;;;;;:::i;:::-;;52878:122:::0;:::o;37407:164::-;37504:4;37528:18;:25;37547:5;37528:25;;;;;;;;;;;;;;;:35;37554:8;37528:35;;;;;;;;;;;;;;;;;;;;;;;;;37521:42;;37407:164;;;;:::o;53190:144::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53272:20:::1;;53265:27;;;;:::i;:::-;53322:6;;53299:20;:29;;;;;;;:::i;:::-;;53190:144:::0;;:::o;10173:201::-;9495:12;:10;:12::i;:::-;9484:23;;:7;:5;:7::i;:::-;:23;;;9476:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10282:1:::1;10262:22;;:8;:22;;;;10254:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10338:28;10357:8;10338:18;:28::i;:::-;10173:201:::0;:::o;22048:157::-;22133:4;22172:25;22157:40;;;:11;:40;;;;22150:47;;22048:157;;;:::o;7988:98::-;8041:7;8068:10;8061:17;;7988:98;:::o;38759:174::-;38816:4;38859:7;38840:15;:13;:15::i;:::-;:26;;:53;;;;;38880:13;;38870:7;:23;38840:53;:85;;;;;38898:11;:20;38910:7;38898:20;;;;;;;;;;;:27;;;;;;;;;;;;38897:28;38840:85;38833:92;;38759:174;;;:::o;46916:196::-;47058:2;47031:15;:24;47047:7;47031:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47096:7;47092:2;47076:28;;47085:5;47076:28;;;;;;;;;;;;46916:196;;;:::o;51908:95::-;51973:7;51996:1;51989:8;;51908:95;:::o;41859:2130::-;41974:35;42012:21;42025:7;42012:12;:21::i;:::-;41974:59;;42072:4;42050:26;;:13;:18;;;:26;;;42046:67;;42085:28;;;;;;;;;;;;;;42046:67;42126:22;42168:4;42152:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42189:36;42206:4;42212:12;:10;:12::i;:::-;42189:16;:36::i;:::-;42152:73;:126;;;;42266:12;:10;:12::i;:::-;42242:36;;:20;42254:7;42242:11;:20::i;:::-;:36;;;42152:126;42126:153;;42297:17;42292:66;;42323:35;;;;;;;;;;;;;;42292:66;42387:1;42373:16;;:2;:16;;;42369:52;;;42398:23;;;;;;;;;;;;;;42369:52;42434:43;42456:4;42462:2;42466:7;42475:1;42434:21;:43::i;:::-;42542:35;42559:1;42563:7;42572:4;42542:8;:35::i;:::-;42903:1;42873:12;:18;42886:4;42873:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42947:1;42919:12;:16;42932:2;42919:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42965:31;42999:11;:20;43011:7;42999:20;;;;;;;;;;;42965:54;;43050:2;43034:8;:13;;;:18;;;;;;;;;;;;;;;;;;43100:15;43067:8;:23;;;:49;;;;;;;;;;;;;;;;;;43368:19;43400:1;43390:7;:11;43368:33;;43416:31;43450:11;:24;43462:11;43450:24;;;;;;;;;;;43416:58;;43518:1;43493:27;;:8;:13;;;;;;;;;;;;:27;;;43489:384;;;43703:13;;43688:11;:28;43684:174;;43757:4;43741:8;:13;;;:20;;;;;;;;;;;;;;;;;;43810:13;:28;;;43784:8;:23;;;:54;;;;;;;;;;;;;;;;;;43684:174;43489:384;42848:1036;;;43920:7;43916:2;43901:27;;43910:4;43901:27;;;;;;;;;;;;43939:42;43960:4;43966:2;43970:7;43979:1;43939:20;:42::i;:::-;41963:2026;;41859:2130;;;:::o;33907:1109::-;33969:21;;:::i;:::-;34003:12;34018:7;34003:22;;34086:4;34067:15;:13;:15::i;:::-;:23;;:47;;;;;34101:13;;34094:4;:20;34067:47;34063:886;;;34135:31;34169:11;:17;34181:4;34169:17;;;;;;;;;;;34135:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34210:9;:16;;;34205:729;;34281:1;34255:28;;:9;:14;;;:28;;;34251:101;;34319:9;34312:16;;;;;;34251:101;34654:261;34661:4;34654:261;;;34694:6;;;;;;;;34739:11;:17;34751:4;34739:17;;;;;;;;;;;34727:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34813:1;34787:28;;:9;:14;;;:28;;;34783:109;;34855:9;34848:16;;;;;;34783:109;34654:261;;;34205:729;34116:833;34063:886;34977:31;;;;;;;;;;;;;;33907:1109;;;;:::o;10534:191::-;10608:16;10627:6;;;;;;;;;;;10608:25;;10653:8;10644:6;;:17;;;;;;;;;;;;;;;;;;10708:8;10677:40;;10698:8;10677:40;;;;;;;;;;;;10597:128;10534:191;:::o;38941:104::-;39010:27;39020:2;39024:8;39010:27;;;;;;;;;;;;:9;:27::i;:::-;38941:104;;:::o;11965:326::-;12025:4;12282:1;12260:7;:19;;;:23;12253:30;;11965:326;;;:::o;47604:667::-;47767:4;47804:2;47788:36;;;47825:12;:10;:12::i;:::-;47839:4;47845:7;47854:5;47788:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47784:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48039:1;48022:6;:13;:18;48018:235;;;48068:40;;;;;;;;;;;;;;48018:235;48211:6;48205:13;48196:6;48192:2;48188:15;48181:38;47784:480;47917:45;;;47907:55;;;:6;:55;;;;47900:62;;;47604:667;;;;;;:::o;50595:102::-;50655:13;50684:7;50677:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50595:102;:::o;5550:723::-;5606:13;5836:1;5827:5;:10;5823:53;;;5854:10;;;;;;;;;;;;;;;;;;;;;5823:53;5886:12;5901:5;5886:20;;5917:14;5942:78;5957:1;5949:4;:9;5942:78;;5975:8;;;;;:::i;:::-;;;;6006:2;5998:10;;;;;:::i;:::-;;;5942:78;;;6030:19;6062:6;6052:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6030:39;;6080:154;6096:1;6087:5;:10;6080:154;;6124:1;6114:11;;;;;:::i;:::-;;;6191:2;6183:5;:10;;;;:::i;:::-;6170:2;:24;;;;:::i;:::-;6157:39;;6140:6;6147;6140:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6220:2;6211:11;;;;;:::i;:::-;;;6080:154;;;6258:6;6244:21;;;;;5550:723;;;;:::o;48919:159::-;;;;;:::o;49737:158::-;;;;;:::o;39408:163::-;39531:32;39537:2;39541:8;39551:5;39558:4;39531:5;:32::i;:::-;39408:163;;;:::o;39830:1775::-;39969:20;39992:13;;39969:36;;40034:1;40020:16;;:2;:16;;;40016:48;;;40045:19;;;;;;;;;;;;;;40016:48;40091:1;40079:8;:13;40075:44;;;40101:18;;;;;;;;;;;;;;40075:44;40132:61;40162:1;40166:2;40170:12;40184:8;40132:21;:61::i;:::-;40505:8;40470:12;:16;40483:2;40470:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40569:8;40529:12;:16;40542:2;40529:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40628:2;40595:11;:25;40607:12;40595:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40695:15;40645:11;:25;40657:12;40645:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40728:20;40751:12;40728:35;;40778:11;40807:8;40792:12;:23;40778:37;;40836:4;:23;;;;;40844:15;:2;:13;;;:15::i;:::-;40836:23;40832:641;;;40880:314;40936:12;40932:2;40911:38;;40928:1;40911:38;;;;;;;;;;;;40977:69;41016:1;41020:2;41024:14;;;;;;41040:5;40977:30;:69::i;:::-;40972:174;;41082:40;;;;;;;;;;;;;;40972:174;41189:3;41173:12;:19;;40880:314;;41275:12;41258:13;;:29;41254:43;;41289:8;;;41254:43;40832:641;;;41338:120;41394:14;;;;;;41390:2;41369:40;;41386:1;41369:40;;;;;;;;;;;;41453:3;41437:12;:19;;41338:120;;40832:641;41503:12;41487:13;:28;;;;40445:1082;;41537:60;41566:1;41570:2;41574:12;41588:8;41537:20;:60::i;:::-;39958:1647;39830:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:118::-;8730:24;8748:5;8730:24;:::i;:::-;8725:3;8718:37;8643:118;;:::o;8767:109::-;8848:21;8863:5;8848:21;:::i;:::-;8843:3;8836:34;8767:109;;:::o;8882:360::-;8968:3;8996:38;9028:5;8996:38;:::i;:::-;9050:70;9113:6;9108:3;9050:70;:::i;:::-;9043:77;;9129:52;9174:6;9169:3;9162:4;9155:5;9151:16;9129:52;:::i;:::-;9206:29;9228:6;9206:29;:::i;:::-;9201:3;9197:39;9190:46;;8972:270;8882:360;;;;:::o;9248:364::-;9336:3;9364:39;9397:5;9364:39;:::i;:::-;9419:71;9483:6;9478:3;9419:71;:::i;:::-;9412:78;;9499:52;9544:6;9539:3;9532:4;9525:5;9521:16;9499:52;:::i;:::-;9576:29;9598:6;9576:29;:::i;:::-;9571:3;9567:39;9560:46;;9340:272;9248:364;;;;:::o;9618:377::-;9724:3;9752:39;9785:5;9752:39;:::i;:::-;9807:89;9889:6;9884:3;9807:89;:::i;:::-;9800:96;;9905:52;9950:6;9945:3;9938:4;9931:5;9927:16;9905:52;:::i;:::-;9982:6;9977:3;9973:16;9966:23;;9728:267;9618:377;;;;:::o;10025:845::-;10128:3;10165:5;10159:12;10194:36;10220:9;10194:36;:::i;:::-;10246:89;10328:6;10323:3;10246:89;:::i;:::-;10239:96;;10366:1;10355:9;10351:17;10382:1;10377:137;;;;10528:1;10523:341;;;;10344:520;;10377:137;10461:4;10457:9;10446;10442:25;10437:3;10430:38;10497:6;10492:3;10488:16;10481:23;;10377:137;;10523:341;10590:38;10622:5;10590:38;:::i;:::-;10650:1;10664:154;10678:6;10675:1;10672:13;10664:154;;;10752:7;10746:14;10742:1;10737:3;10733:11;10726:35;10802:1;10793:7;10789:15;10778:26;;10700:4;10697:1;10693:12;10688:17;;10664:154;;;10847:6;10842:3;10838:16;10831:23;;10530:334;;10344:520;;10132:738;;10025:845;;;;:::o;10876:366::-;11018:3;11039:67;11103:2;11098:3;11039:67;:::i;:::-;11032:74;;11115:93;11204:3;11115:93;:::i;:::-;11233:2;11228:3;11224:12;11217:19;;10876:366;;;:::o;11248:::-;11390:3;11411:67;11475:2;11470:3;11411:67;:::i;:::-;11404:74;;11487:93;11576:3;11487:93;:::i;:::-;11605:2;11600:3;11596:12;11589:19;;11248:366;;;:::o;11620:::-;11762:3;11783:67;11847:2;11842:3;11783:67;:::i;:::-;11776:74;;11859:93;11948:3;11859:93;:::i;:::-;11977:2;11972:3;11968:12;11961:19;;11620:366;;;:::o;11992:::-;12134:3;12155:67;12219:2;12214:3;12155:67;:::i;:::-;12148:74;;12231:93;12320:3;12231:93;:::i;:::-;12349:2;12344:3;12340:12;12333:19;;11992:366;;;:::o;12364:::-;12506:3;12527:67;12591:2;12586:3;12527:67;:::i;:::-;12520:74;;12603:93;12692:3;12603:93;:::i;:::-;12721:2;12716:3;12712:12;12705:19;;12364:366;;;:::o;12736:::-;12878:3;12899:67;12963:2;12958:3;12899:67;:::i;:::-;12892:74;;12975:93;13064:3;12975:93;:::i;:::-;13093:2;13088:3;13084:12;13077:19;;12736:366;;;:::o;13108:::-;13250:3;13271:67;13335:2;13330:3;13271:67;:::i;:::-;13264:74;;13347:93;13436:3;13347:93;:::i;:::-;13465:2;13460:3;13456:12;13449:19;;13108:366;;;:::o;13480:398::-;13639:3;13660:83;13741:1;13736:3;13660:83;:::i;:::-;13653:90;;13752:93;13841:3;13752:93;:::i;:::-;13870:1;13865:3;13861:11;13854:18;;13480:398;;;:::o;13884:366::-;14026:3;14047:67;14111:2;14106:3;14047:67;:::i;:::-;14040:74;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13884:366;;;:::o;14256:::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:118::-;15459:24;15477:5;15459:24;:::i;:::-;15454:3;15447:37;15372:118;;:::o;15496:589::-;15721:3;15743:95;15834:3;15825:6;15743:95;:::i;:::-;15736:102;;15855:95;15946:3;15937:6;15855:95;:::i;:::-;15848:102;;15967:92;16055:3;16046:6;15967:92;:::i;:::-;15960:99;;16076:3;16069:10;;15496:589;;;;;;:::o;16091:379::-;16275:3;16297:147;16440:3;16297:147;:::i;:::-;16290:154;;16461:3;16454:10;;16091:379;;;:::o;16476:222::-;16569:4;16607:2;16596:9;16592:18;16584:26;;16620:71;16688:1;16677:9;16673:17;16664:6;16620:71;:::i;:::-;16476:222;;;;:::o;16704:640::-;16899:4;16937:3;16926:9;16922:19;16914:27;;16951:71;17019:1;17008:9;17004:17;16995:6;16951:71;:::i;:::-;17032:72;17100:2;17089:9;17085:18;17076:6;17032:72;:::i;:::-;17114;17182:2;17171:9;17167:18;17158:6;17114:72;:::i;:::-;17233:9;17227:4;17223:20;17218:2;17207:9;17203:18;17196:48;17261:76;17332:4;17323:6;17261:76;:::i;:::-;17253:84;;16704:640;;;;;;;:::o;17350:210::-;17437:4;17475:2;17464:9;17460:18;17452:26;;17488:65;17550:1;17539:9;17535:17;17526:6;17488:65;:::i;:::-;17350:210;;;;:::o;17566:313::-;17679:4;17717:2;17706:9;17702:18;17694:26;;17766:9;17760:4;17756:20;17752:1;17741:9;17737:17;17730:47;17794:78;17867:4;17858:6;17794:78;:::i;:::-;17786:86;;17566:313;;;;:::o;17885:419::-;18051:4;18089:2;18078:9;18074:18;18066:26;;18138:9;18132:4;18128:20;18124:1;18113:9;18109:17;18102:47;18166:131;18292:4;18166:131;:::i;:::-;18158:139;;17885:419;;;:::o;18310:::-;18476:4;18514:2;18503:9;18499:18;18491:26;;18563:9;18557:4;18553:20;18549:1;18538:9;18534:17;18527:47;18591:131;18717:4;18591:131;:::i;:::-;18583:139;;18310:419;;;:::o;18735:::-;18901:4;18939:2;18928:9;18924:18;18916:26;;18988:9;18982:4;18978:20;18974:1;18963:9;18959:17;18952:47;19016:131;19142:4;19016:131;:::i;:::-;19008:139;;18735:419;;;:::o;19160:::-;19326:4;19364:2;19353:9;19349:18;19341:26;;19413:9;19407:4;19403:20;19399:1;19388:9;19384:17;19377:47;19441:131;19567:4;19441:131;:::i;:::-;19433:139;;19160:419;;;:::o;19585:::-;19751:4;19789:2;19778:9;19774:18;19766:26;;19838:9;19832:4;19828:20;19824:1;19813:9;19809:17;19802:47;19866:131;19992:4;19866:131;:::i;:::-;19858:139;;19585:419;;;:::o;20010:::-;20176:4;20214:2;20203:9;20199:18;20191:26;;20263:9;20257:4;20253:20;20249:1;20238:9;20234:17;20227:47;20291:131;20417:4;20291:131;:::i;:::-;20283:139;;20010:419;;;:::o;20435:::-;20601:4;20639:2;20628:9;20624:18;20616:26;;20688:9;20682:4;20678:20;20674:1;20663:9;20659:17;20652:47;20716:131;20842:4;20716:131;:::i;:::-;20708:139;;20435:419;;;:::o;20860:::-;21026:4;21064:2;21053:9;21049:18;21041:26;;21113:9;21107:4;21103:20;21099:1;21088:9;21084:17;21077:47;21141:131;21267:4;21141:131;:::i;:::-;21133:139;;20860:419;;;:::o;21285:::-;21451:4;21489:2;21478:9;21474:18;21466:26;;21538:9;21532:4;21528:20;21524:1;21513:9;21509:17;21502:47;21566:131;21692:4;21566:131;:::i;:::-;21558:139;;21285:419;;;:::o;21710:::-;21876:4;21914:2;21903:9;21899:18;21891:26;;21963:9;21957:4;21953:20;21949:1;21938:9;21934:17;21927:47;21991:131;22117:4;21991:131;:::i;:::-;21983:139;;21710:419;;;:::o;22135:::-;22301:4;22339:2;22328:9;22324:18;22316:26;;22388:9;22382:4;22378:20;22374:1;22363:9;22359:17;22352:47;22416:131;22542:4;22416:131;:::i;:::-;22408:139;;22135:419;;;:::o;22560:222::-;22653:4;22691:2;22680:9;22676:18;22668:26;;22704:71;22772:1;22761:9;22757:17;22748:6;22704:71;:::i;:::-;22560:222;;;;:::o;22788:129::-;22822:6;22849:20;;:::i;:::-;22839:30;;22878:33;22906:4;22898:6;22878:33;:::i;:::-;22788:129;;;:::o;22923:75::-;22956:6;22989:2;22983:9;22973:19;;22923:75;:::o;23004:307::-;23065:4;23155:18;23147:6;23144:30;23141:56;;;23177:18;;:::i;:::-;23141:56;23215:29;23237:6;23215:29;:::i;:::-;23207:37;;23299:4;23293;23289:15;23281:23;;23004:307;;;:::o;23317:308::-;23379:4;23469:18;23461:6;23458:30;23455:56;;;23491:18;;:::i;:::-;23455:56;23529:29;23551:6;23529:29;:::i;:::-;23521:37;;23613:4;23607;23603:15;23595:23;;23317:308;;;:::o;23631:141::-;23680:4;23703:3;23695:11;;23726:3;23723:1;23716:14;23760:4;23757:1;23747:18;23739:26;;23631:141;;;:::o;23778:98::-;23829:6;23863:5;23857:12;23847:22;;23778:98;;;:::o;23882:99::-;23934:6;23968:5;23962:12;23952:22;;23882:99;;;:::o;23987:168::-;24070:11;24104:6;24099:3;24092:19;24144:4;24139:3;24135:14;24120:29;;23987:168;;;;:::o;24161:147::-;24262:11;24299:3;24284:18;;24161:147;;;;:::o;24314:169::-;24398:11;24432:6;24427:3;24420:19;24472:4;24467:3;24463:14;24448:29;;24314:169;;;;:::o;24489:148::-;24591:11;24628:3;24613:18;;24489:148;;;;:::o;24643:305::-;24683:3;24702:20;24720:1;24702:20;:::i;:::-;24697:25;;24736:20;24754:1;24736:20;:::i;:::-;24731:25;;24890:1;24822:66;24818:74;24815:1;24812:81;24809:107;;;24896:18;;:::i;:::-;24809:107;24940:1;24937;24933:9;24926:16;;24643:305;;;;:::o;24954:185::-;24994:1;25011:20;25029:1;25011:20;:::i;:::-;25006:25;;25045:20;25063:1;25045:20;:::i;:::-;25040:25;;25084:1;25074:35;;25089:18;;:::i;:::-;25074:35;25131:1;25128;25124:9;25119:14;;24954:185;;;;:::o;25145:348::-;25185:7;25208:20;25226:1;25208:20;:::i;:::-;25203:25;;25242:20;25260:1;25242:20;:::i;:::-;25237:25;;25430:1;25362:66;25358:74;25355:1;25352:81;25347:1;25340:9;25333:17;25329:105;25326:131;;;25437:18;;:::i;:::-;25326:131;25485:1;25482;25478:9;25467:20;;25145:348;;;;:::o;25499:191::-;25539:4;25559:20;25577:1;25559:20;:::i;:::-;25554:25;;25593:20;25611:1;25593:20;:::i;:::-;25588:25;;25632:1;25629;25626:8;25623:34;;;25637:18;;:::i;:::-;25623:34;25682:1;25679;25675:9;25667:17;;25499:191;;;;:::o;25696:96::-;25733:7;25762:24;25780:5;25762:24;:::i;:::-;25751:35;;25696:96;;;:::o;25798:90::-;25832:7;25875:5;25868:13;25861:21;25850:32;;25798:90;;;:::o;25894:149::-;25930:7;25970:66;25963:5;25959:78;25948:89;;25894:149;;;:::o;26049:126::-;26086:7;26126:42;26119:5;26115:54;26104:65;;26049:126;;;:::o;26181:77::-;26218:7;26247:5;26236:16;;26181:77;;;:::o;26264:154::-;26348:6;26343:3;26338;26325:30;26410:1;26401:6;26396:3;26392:16;26385:27;26264:154;;;:::o;26424:307::-;26492:1;26502:113;26516:6;26513:1;26510:13;26502:113;;;26601:1;26596:3;26592:11;26586:18;26582:1;26577:3;26573:11;26566:39;26538:2;26535:1;26531:10;26526:15;;26502:113;;;26633:6;26630:1;26627:13;26624:101;;;26713:1;26704:6;26699:3;26695:16;26688:27;26624:101;26473:258;26424:307;;;:::o;26737:320::-;26781:6;26818:1;26812:4;26808:12;26798:22;;26865:1;26859:4;26855:12;26886:18;26876:81;;26942:4;26934:6;26930:17;26920:27;;26876:81;27004:2;26996:6;26993:14;26973:18;26970:38;26967:84;;;27023:18;;:::i;:::-;26967:84;26788:269;26737:320;;;:::o;27063:281::-;27146:27;27168:4;27146:27;:::i;:::-;27138:6;27134:40;27276:6;27264:10;27261:22;27240:18;27228:10;27225:34;27222:62;27219:88;;;27287:18;;:::i;:::-;27219:88;27327:10;27323:2;27316:22;27106:238;27063:281;;:::o;27350:233::-;27389:3;27412:24;27430:5;27412:24;:::i;:::-;27403:33;;27458:66;27451:5;27448:77;27445:103;;;27528:18;;:::i;:::-;27445:103;27575:1;27568:5;27564:13;27557:20;;27350:233;;;:::o;27589:176::-;27621:1;27638:20;27656:1;27638:20;:::i;:::-;27633:25;;27672:20;27690:1;27672:20;:::i;:::-;27667:25;;27711:1;27701:35;;27716:18;;:::i;:::-;27701:35;27757:1;27754;27750:9;27745:14;;27589:176;;;;:::o;27771:180::-;27819:77;27816:1;27809:88;27916:4;27913:1;27906:15;27940:4;27937:1;27930:15;27957:180;28005:77;28002:1;27995:88;28102:4;28099:1;28092:15;28126:4;28123:1;28116:15;28143:180;28191:77;28188:1;28181:88;28288:4;28285:1;28278:15;28312:4;28309:1;28302:15;28329:180;28377:77;28374:1;28367:88;28474:4;28471:1;28464:15;28498:4;28495:1;28488:15;28515:180;28563:77;28560:1;28553:88;28660:4;28657:1;28650:15;28684:4;28681:1;28674:15;28701:117;28810:1;28807;28800:12;28824:117;28933:1;28930;28923:12;28947:117;29056:1;29053;29046:12;29070:117;29179:1;29176;29169:12;29193:117;29302:1;29299;29292:12;29316:117;29425:1;29422;29415:12;29439:102;29480:6;29531:2;29527:7;29522:2;29515:5;29511:14;29507:28;29497:38;;29439:102;;;:::o;29547:225::-;29687:34;29683:1;29675:6;29671:14;29664:58;29756:8;29751:2;29743:6;29739:15;29732:33;29547:225;:::o;29778:178::-;29918:30;29914:1;29906:6;29902:14;29895:54;29778:178;:::o;29962:172::-;30102:24;30098:1;30090:6;30086:14;30079:48;29962:172;:::o;30140:223::-;30280:34;30276:1;30268:6;30264:14;30257:58;30349:6;30344:2;30336:6;30332:15;30325:31;30140:223;:::o;30369:182::-;30509:34;30505:1;30497:6;30493:14;30486:58;30369:182;:::o;30557:172::-;30697:24;30693:1;30685:6;30681:14;30674:48;30557:172;:::o;30735:234::-;30875:34;30871:1;30863:6;30859:14;30852:58;30944:17;30939:2;30931:6;30927:15;30920:42;30735:234;:::o;30975:114::-;;:::o;31095:168::-;31235:20;31231:1;31223:6;31219:14;31212:44;31095:168;:::o;31269:173::-;31409:25;31405:1;31397:6;31393:14;31386:49;31269:173;:::o;31448:181::-;31588:33;31584:1;31576:6;31572:14;31565:57;31448:181;:::o;31635:177::-;31775:29;31771:1;31763:6;31759:14;31752:53;31635:177;:::o;31818:122::-;31891:24;31909:5;31891:24;:::i;:::-;31884:5;31881:35;31871:63;;31930:1;31927;31920:12;31871:63;31818:122;:::o;31946:116::-;32016:21;32031:5;32016:21;:::i;:::-;32009:5;32006:32;31996:60;;32052:1;32049;32042:12;31996:60;31946:116;:::o;32068:120::-;32140:23;32157:5;32140:23;:::i;:::-;32133:5;32130:34;32120:62;;32178:1;32175;32168:12;32120:62;32068:120;:::o;32194:122::-;32267:24;32285:5;32267:24;:::i;:::-;32260:5;32257:35;32247:63;;32306:1;32303;32296:12;32247:63;32194:122;:::o

Swarm Source

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