ETH Price: $2,381.64 (-1.16%)

Token

911NFT Pass (NNOP)
 

Overview

Max Total Supply

200 NNOP

Holders

91

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NNOP
0xf78d16ad6f902bfcd05800634c7e2a1962ee3809
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:
PASS_911NFT

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-10-27
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: 911_pass/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: 911_pass/pass_911_go.sol



pragma solidity ^0.8.4;





contract PASS_911NFT is ERC2981, ERC721A, Ownable {
    using Strings for uint256;

    uint32 public constant MAX_SUPPLY = 456;

    uint32 public _MintPerWallet = 10;
    bool public _publicMintActive;
    bool public _whiteMintActive;
    uint256 public _price = 0.1 ether; 
    uint256 public _whiteprice = 0.08 ether; 
    string public _prerevealURI = "ipfs://QmNVyAu2i27cEFRDbBuBdVtaLfKSBLuWJBBbacx64UpcNs";
    string public _matadataURI;
    mapping(address => bool) public WhitIsMint;

    bytes32 root = 0xc7824eb67adbcd9533957e7b4d7a74a5cb283651e8d18be3443ca865b42fdf73;
    constructor() ERC721A("911NFT Pass", "NNOP") {
        _setDefaultRoyalty(msg.sender, 1000);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Contract caller forbidden");
        _;
    }

    modifier supplyCompliance(uint32 amount) {
        require(_totalMinted() + amount <= MAX_SUPPLY, "Exceed max supply");

        _;
    }

    modifier publicCompliance(uint32 amount) {
        require(_publicMintActive, "Public mint is inactive");
        require(msg.value == _price * amount, "Value error");
        require(
            amount <= _MintPerWallet,
            "Exceed public mint limit per wallet"
        );
        _;
    }

    modifier whiteCompliance(bytes32[] memory proof) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        require(
            MerkleProof.verify(proof,root,leaf),"sign error"
        );
        require(_whiteMintActive, "White mint is inactive");
        require(msg.value == _whiteprice, "White Value error");
        require(!WhitIsMint[msg.sender], "White mint already");
        _;
    }


    // Public Read

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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


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

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }



    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC2981, ERC721A)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            interfaceId == type(IERC721).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function mint(uint32 amount)
        external
        payable
        supplyCompliance(amount)
        publicCompliance(amount)
        callerIsUser
    {
        _mint(msg.sender, amount, "", false);
        
    }

    function Whitemint(bytes32[] memory proof)
        external
        payable
        supplyCompliance(1)
        whiteCompliance(proof)
        callerIsUser
    {
        _mint(msg.sender, 1, "", false);
        WhitIsMint[msg.sender] = true;
    }

    // Only Owner

   
    function setPublicLimitPerWallet(uint32 MintPerWallet) external onlyOwner {
        _MintPerWallet = MintPerWallet;
    }

    function flipPublicMintActive() external onlyOwner {
        _publicMintActive = !_publicMintActive;
    }

    function whiteMintActive() external onlyOwner {
        _whiteMintActive = !_whiteMintActive;
    }

    function setPrerevealURI(string calldata prerevealURI) external onlyOwner {
        _prerevealURI = prerevealURI;
    }
    
    function setMetadataURI(string calldata metadataURI) external onlyOwner {
        _matadataURI = metadataURI;
    }

    function setPrice(uint256 price) external onlyOwner {
        _price = price;
    }

    function setFeeNumerator(address receiver, uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function withdraw(address to) external onlyOwner {
        payable(to).transfer(address(this).balance);
    }


      function setRoot(bytes32 _root) public onlyOwner{
          root = _root;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WhitIsMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"Whitemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_MintPerWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_matadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prerevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whiteMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whiteprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicMintActive","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":"uint32","name":"amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"metadataURI","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prerevealURI","type":"string"}],"name":"setPrerevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"MintPerWallet","type":"uint32"}],"name":"setPublicLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805463ffffffff60a01b1916600560a11b17905567016345785d8a0000600b5567011c37937e080000600c5560e06040526035608081815290620027b060a03980516200005791600d9160209091019062000277565b507fc7824eb67adbcd9533957e7b4d7a74a5cb283651e8d18be3443ca865b42fdf736010553480156200008957600080fd5b506040518060400160405280600b81526020016a3931314e4654205061737360a81b8152506040518060400160405280600481526020016304e4e4f560e41b8152508160049080519060200190620000e392919062000277565b508051620000f990600590602084019062000277565b50506001600255506200010c3362000120565b6200011a336103e862000172565b6200035a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001e65760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200023e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001dd565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b82805462000285906200031d565b90600052602060002090601f016020900481019282620002a95760008555620002f4565b82601f10620002c457805160ff1916838001178555620002f4565b82800160010185558215620002f4579182015b82811115620002f4578251825591602001919060010190620002d7565b506200030292915062000306565b5090565b5b8082111562000302576000815560010162000307565b600181811c908216806200033257607f821691505b602082108114156200035457634e487b7160e01b600052602260045260246000fd5b50919050565b612446806200036a6000396000f3fe6080604052600436106102305760003560e01c8063750521f51161012e578063bbe59891116100ab578063dc33e6811161006f578063dc33e68114610676578063e097198d14610696578063e9812cba146106c6578063e985e9c5146106db578063f2fde38b1461072457600080fd5b8063bbe59891146105ec578063c87b56dd1461060c578063d13423a91461062c578063d2c2afd514610641578063dab5f3401461065657600080fd5b806398b05089116100f257806398b0508914610562578063a22cb46514610578578063a71bbebe14610598578063b1645eb9146105ab578063b88d4fde146105cc57600080fd5b8063750521f5146104da5780638da5cb5b146104fa57806391b7f5ed1461051857806392e3114b1461053857806395d89b411461054d57600080fd5b806324b311b1116101bc57806351cff8d91161018057806351cff8d9146104525780635b420ea2146104725780636352211e1461048557806370a08231146104a5578063715018a6146104c557600080fd5b806324b311b1146103845780632a55205a146103bd57806332cb6b0c146103fc5780633ea9730a1461041257806342842e0e1461043257600080fd5b8063095ea7b311610203578063095ea7b3146102e6578063157d707a1461030657806318160ddd14610327578063235b6ea11461034e57806323b872dd1461036457600080fd5b806301ffc9a71461023557806306fdde031461026a578063078eef281461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b506102556102503660046120ca565b610744565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61078a565b6040516102619190612266565b34801561029857600080fd5b506102ac6102a7366004612104565b61081c565b005b3480156102ba57600080fd5b506102ce6102c93660046120b1565b610835565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b506102ac610301366004611fa2565b610879565b34801561031257600080fd5b50600a5461025590600160c81b900460ff1681565b34801561033357600080fd5b5060035460025403600019015b604051908152602001610261565b34801561035a57600080fd5b50610340600b5481565b34801561037057600080fd5b506102ac61037f366004611e6a565b610902565b34801561039057600080fd5b50600a546103a890600160a01b900463ffffffff1681565b60405163ffffffff9091168152602001610261565b3480156103c957600080fd5b506103dd6103d8366004612176565b61090d565b604080516001600160a01b039093168352602083019190915201610261565b34801561040857600080fd5b506103a86101c881565b34801561041e57600080fd5b506102ac61042d366004612198565b6109b9565b34801561043e57600080fd5b506102ac61044d366004611e6a565b6109e7565b34801561045e57600080fd5b506102ac61046d366004611e1c565b610a02565b6102ac610480366004612004565b610a43565b34801561049157600080fd5b506102ce6104a03660046120b1565b610c9c565b3480156104b157600080fd5b506103406104c0366004611e1c565b610cae565b3480156104d157600080fd5b506102ac610cfd565b3480156104e657600080fd5b506102ac6104f5366004612104565b610d11565b34801561050657600080fd5b50600a546001600160a01b03166102ce565b34801561052457600080fd5b506102ac6105333660046120b1565b610d25565b34801561054457600080fd5b5061027f610d32565b34801561055957600080fd5b5061027f610dc0565b34801561056e57600080fd5b50610340600c5481565b34801561058457600080fd5b506102ac610593366004611f66565b610dcf565b6102ac6105a6366004612198565b610e65565b3480156105b757600080fd5b50600a5461025590600160c01b900460ff1681565b3480156105d857600080fd5b506102ac6105e7366004611ea6565b611050565b3480156105f857600080fd5b506102ac610607366004611fcc565b6110a1565b34801561061857600080fd5b5061027f6106273660046120b1565b6110b3565b34801561063857600080fd5b506102ac611236565b34801561064d57600080fd5b506102ac61125f565b34801561066257600080fd5b506102ac6106713660046120b1565b611288565b34801561068257600080fd5b50610340610691366004611e1c565b611295565b3480156106a257600080fd5b506102556106b1366004611e1c565b600f6020526000908152604090205460ff1681565b3480156106d257600080fd5b5061027f6112c4565b3480156106e757600080fd5b506102556106f6366004611e37565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561073057600080fd5b506102ac61073f366004611e1c565b6112d1565b60006001600160e01b0319821663152a902d60e11b148061077557506001600160e01b031982166380ac58cd60e01b145b8061078457506107848261134a565b92915050565b60606004805461079990612338565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612338565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b61082461138a565b610830600d8383611d67565b505050565b6000610840826113e4565b61085d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061088482610c9c565b9050806001600160a01b0316836001600160a01b031614156108b95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108d957506108d781336106f6565b155b156108f7576040516367d9dca160e11b815260040160405180910390fd5b61083083838361141d565b610830838383611479565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109825750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906109a1906001600160601b0316876122d6565b6109ab91906122c2565b915196919550909350505050565b6109c161138a565b600a805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b61083083838360405180602001604052806000815250611050565b610a0a61138a565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a3f573d6000803e3d6000fd5b5050565b60016101c881610a566002546000190190565b610a6091906122aa565b1115610aa75760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b60448201526064015b60405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201528290600090603401604051602081830303815290604052805190602001209050610aef8260105483611669565b610b285760405162461bcd60e51b815260206004820152600a60248201526939b4b3b71032b93937b960b11b6044820152606401610a9e565b600a54600160c81b900460ff16610b7a5760405162461bcd60e51b81526020600482015260166024820152755768697465206d696e7420697320696e61637469766560501b6044820152606401610a9e565b600c543414610bbf5760405162461bcd60e51b81526020600482015260116024820152702bb434ba32902b30b63ab29032b93937b960791b6044820152606401610a9e565b336000908152600f602052604090205460ff1615610c145760405162461bcd60e51b81526020600482015260126024820152715768697465206d696e7420616c726561647960701b6044820152606401610a9e565b323314610c5f5760405162461bcd60e51b815260206004820152601960248201527821b7b73a3930b1ba1031b0b63632b9103337b93134b23232b760391b6044820152606401610a9e565b610c7c33600160405180602001604052806000815250600061167f565b5050336000908152600f60205260409020805460ff191660011790555050565b6000610ca78261184b565b5192915050565b60006001600160a01b038216610cd7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b610d0561138a565b610d0f6000611974565b565b610d1961138a565b610830600e8383611d67565b610d2d61138a565b600b55565b600d8054610d3f90612338565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6b90612338565b8015610db85780601f10610d8d57610100808354040283529160200191610db8565b820191906000526020600020905b815481529060010190602001808311610d9b57829003601f168201915b505050505081565b60606005805461079990612338565b6001600160a01b038216331415610df95760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b806101c863ffffffff8216610e7d6002546000190190565b610e8791906122aa565b1115610ec95760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610a9e565b600a548290600160c01b900460ff16610f245760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e7420697320696e6163746976650000000000000000006044820152606401610a9e565b8063ffffffff16600b54610f3891906122d6565b3414610f745760405162461bcd60e51b815260206004820152600b60248201526a2b30b63ab29032b93937b960a91b6044820152606401610a9e565b600a5463ffffffff600160a01b90910481169082161115610fe35760405162461bcd60e51b815260206004820152602360248201527f457863656564207075626c6963206d696e74206c696d6974207065722077616c6044820152621b195d60ea1b6064820152608401610a9e565b32331461102e5760405162461bcd60e51b815260206004820152601960248201527821b7b73a3930b1ba1031b0b63632b9103337b93134b23232b760391b6044820152606401610a9e565b610830338463ffffffff1660405180602001604052806000815250600061167f565b61105b848484611479565b6001600160a01b0383163b1515801561107d575061107b848484846119c6565b155b1561109b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6110a961138a565b610a3f8282611abe565b60606110be826113e4565b6110db57604051630a14c4b560e41b815260040160405180910390fd5b6000600e80546110ea90612338565b80601f016020809104026020016040519081016040528092919081815260200182805461111690612338565b80156111635780601f1061113857610100808354040283529160200191611163565b820191906000526020600020905b81548152906001019060200180831161114657829003601f168201915b5050505050905080516000141561120457600d805461118190612338565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad90612338565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b505050505061122f565b8061120e84611bbb565b60405160200161121f9291906121ea565b6040516020818303038152906040525b9392505050565b61123e61138a565b600a805460ff60c01b198116600160c01b9182900460ff1615909102179055565b61126761138a565b600a805460ff60c81b198116600160c81b9182900460ff1615909102179055565b61129061138a565b601055565b6001600160a01b038116600090815260076020526040812054600160401b900467ffffffffffffffff16610784565b600e8054610d3f90612338565b6112d961138a565b6001600160a01b03811661133e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a9e565b61134781611974565b50565b60006001600160e01b031982166380ac58cd60e01b148061137b57506001600160e01b03198216635b5e139f60e01b145b80610784575061078482611cb9565b600a546001600160a01b03163314610d0f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6000816001111580156113f8575060025482105b8015610784575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114848261184b565b9050836001600160a01b031681600001516001600160a01b0316146114bb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114d957506114d985336106f6565b806114f45750336114e984610835565b6001600160a01b0316145b90508061151457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661153b57604051633a954ecd60e21b815260040160405180910390fd5b6115476000848761141d565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661161d57600254821461161d578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826116768584611cee565b14949350505050565b6002546001600160a01b0385166116a857604051622e076360e81b815260040160405180910390fd5b836116c65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561177357506001600160a01b0387163b15155b156117fc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117c460008884806001019550886119c6565b6117e1576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117795782600254146117f757600080fd5b611842565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156117fd575b50600255611662565b6040805160608101825260008082526020820181905291810191909152818060011115801561187b575060025481105b1561195b57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906119595780516001600160a01b0316156118ef579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611954579392505050565b6118ef565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119fb903390899088908890600401612229565b602060405180830381600087803b158015611a1557600080fd5b505af1925050508015611a45575060408051601f3d908101601f19168201909252611a42918101906120e7565b60015b611aa0573d808015611a73576040519150601f19603f3d011682016040523d82523d6000602084013e611a78565b606091505b508051611a98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6127106001600160601b0382161115611b2c5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a9e565b6001600160a01b038216611b825760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a9e565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b606081611bdf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c095780611bf381612373565b9150611c029050600a836122c2565b9150611be3565b60008167ffffffffffffffff811115611c2457611c246123e4565b6040519080825280601f01601f191660200182016040528015611c4e576020820181803683370190505b5090505b8415611ab657611c636001836122f5565b9150611c70600a8661238e565b611c7b9060306122aa565b60f81b818381518110611c9057611c906123ce565b60200101906001600160f81b031916908160001a905350611cb2600a866122c2565b9450611c52565b60006001600160e01b0319821663152a902d60e11b148061078457506301ffc9a760e01b6001600160e01b0319831614610784565b600081815b8451811015611d3357611d1f82868381518110611d1257611d126123ce565b6020026020010151611d3b565b915080611d2b81612373565b915050611cf3565b509392505050565b6000818310611d5757600082815260208490526040902061122f565b5060009182526020526040902090565b828054611d7390612338565b90600052602060002090601f016020900481019282611d955760008555611ddb565b82601f10611dae5782800160ff19823516178555611ddb565b82800160010185558215611ddb579182015b82811115611ddb578235825591602001919060010190611dc0565b50611de7929150611deb565b5090565b5b80821115611de75760008155600101611dec565b80356001600160a01b0381168114611e1757600080fd5b919050565b600060208284031215611e2e57600080fd5b61122f82611e00565b60008060408385031215611e4a57600080fd5b611e5383611e00565b9150611e6160208401611e00565b90509250929050565b600080600060608486031215611e7f57600080fd5b611e8884611e00565b9250611e9660208501611e00565b9150604084013590509250925092565b60008060008060808587031215611ebc57600080fd5b611ec585611e00565b93506020611ed4818701611e00565b935060408601359250606086013567ffffffffffffffff80821115611ef857600080fd5b818801915088601f830112611f0c57600080fd5b813581811115611f1e57611f1e6123e4565b611f30601f8201601f19168501612279565b91508082528984828501011115611f4657600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611f7957600080fd5b611f8283611e00565b915060208301358015158114611f9757600080fd5b809150509250929050565b60008060408385031215611fb557600080fd5b611fbe83611e00565b946020939093013593505050565b60008060408385031215611fdf57600080fd5b611fe883611e00565b915060208301356001600160601b0381168114611f9757600080fd5b6000602080838503121561201757600080fd5b823567ffffffffffffffff8082111561202f57600080fd5b818501915085601f83011261204357600080fd5b813581811115612055576120556123e4565b8060051b9150612066848301612279565b8181528481019084860184860187018a101561208157600080fd5b600095505b838610156120a4578035835260019590950194918601918601612086565b5098975050505050505050565b6000602082840312156120c357600080fd5b5035919050565b6000602082840312156120dc57600080fd5b813561122f816123fa565b6000602082840312156120f957600080fd5b815161122f816123fa565b6000806020838503121561211757600080fd5b823567ffffffffffffffff8082111561212f57600080fd5b818501915085601f83011261214357600080fd5b81358181111561215257600080fd5b86602082850101111561216457600080fd5b60209290920196919550909350505050565b6000806040838503121561218957600080fd5b50508035926020909101359150565b6000602082840312156121aa57600080fd5b813563ffffffff8116811461122f57600080fd5b600081518084526121d681602086016020860161230c565b601f01601f19169290920160200192915050565b600083516121fc81846020880161230c565b83519083019061221081836020880161230c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061225c908301846121be565b9695505050505050565b60208152600061122f60208301846121be565b604051601f8201601f1916810167ffffffffffffffff811182821017156122a2576122a26123e4565b604052919050565b600082198211156122bd576122bd6123a2565b500190565b6000826122d1576122d16123b8565b500490565b60008160001904831182151516156122f0576122f06123a2565b500290565b600082821015612307576123076123a2565b500390565b60005b8381101561232757818101518382015260200161230f565b8381111561109b5750506000910152565b600181811c9082168061234c57607f821691505b6020821081141561236d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612387576123876123a2565b5060010190565b60008261239d5761239d6123b8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461134757600080fdfea2646970667358221220eb34e420a5957aeef542b050368f14241b242dd6de7441423c00ca13859b352e64736f6c63430008070033697066733a2f2f516d4e5679417532693237634546524462427542645674614c664b53424c75574a42426261637836345570634e73

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063750521f51161012e578063bbe59891116100ab578063dc33e6811161006f578063dc33e68114610676578063e097198d14610696578063e9812cba146106c6578063e985e9c5146106db578063f2fde38b1461072457600080fd5b8063bbe59891146105ec578063c87b56dd1461060c578063d13423a91461062c578063d2c2afd514610641578063dab5f3401461065657600080fd5b806398b05089116100f257806398b0508914610562578063a22cb46514610578578063a71bbebe14610598578063b1645eb9146105ab578063b88d4fde146105cc57600080fd5b8063750521f5146104da5780638da5cb5b146104fa57806391b7f5ed1461051857806392e3114b1461053857806395d89b411461054d57600080fd5b806324b311b1116101bc57806351cff8d91161018057806351cff8d9146104525780635b420ea2146104725780636352211e1461048557806370a08231146104a5578063715018a6146104c557600080fd5b806324b311b1146103845780632a55205a146103bd57806332cb6b0c146103fc5780633ea9730a1461041257806342842e0e1461043257600080fd5b8063095ea7b311610203578063095ea7b3146102e6578063157d707a1461030657806318160ddd14610327578063235b6ea11461034e57806323b872dd1461036457600080fd5b806301ffc9a71461023557806306fdde031461026a578063078eef281461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b506102556102503660046120ca565b610744565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61078a565b6040516102619190612266565b34801561029857600080fd5b506102ac6102a7366004612104565b61081c565b005b3480156102ba57600080fd5b506102ce6102c93660046120b1565b610835565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b506102ac610301366004611fa2565b610879565b34801561031257600080fd5b50600a5461025590600160c81b900460ff1681565b34801561033357600080fd5b5060035460025403600019015b604051908152602001610261565b34801561035a57600080fd5b50610340600b5481565b34801561037057600080fd5b506102ac61037f366004611e6a565b610902565b34801561039057600080fd5b50600a546103a890600160a01b900463ffffffff1681565b60405163ffffffff9091168152602001610261565b3480156103c957600080fd5b506103dd6103d8366004612176565b61090d565b604080516001600160a01b039093168352602083019190915201610261565b34801561040857600080fd5b506103a86101c881565b34801561041e57600080fd5b506102ac61042d366004612198565b6109b9565b34801561043e57600080fd5b506102ac61044d366004611e6a565b6109e7565b34801561045e57600080fd5b506102ac61046d366004611e1c565b610a02565b6102ac610480366004612004565b610a43565b34801561049157600080fd5b506102ce6104a03660046120b1565b610c9c565b3480156104b157600080fd5b506103406104c0366004611e1c565b610cae565b3480156104d157600080fd5b506102ac610cfd565b3480156104e657600080fd5b506102ac6104f5366004612104565b610d11565b34801561050657600080fd5b50600a546001600160a01b03166102ce565b34801561052457600080fd5b506102ac6105333660046120b1565b610d25565b34801561054457600080fd5b5061027f610d32565b34801561055957600080fd5b5061027f610dc0565b34801561056e57600080fd5b50610340600c5481565b34801561058457600080fd5b506102ac610593366004611f66565b610dcf565b6102ac6105a6366004612198565b610e65565b3480156105b757600080fd5b50600a5461025590600160c01b900460ff1681565b3480156105d857600080fd5b506102ac6105e7366004611ea6565b611050565b3480156105f857600080fd5b506102ac610607366004611fcc565b6110a1565b34801561061857600080fd5b5061027f6106273660046120b1565b6110b3565b34801561063857600080fd5b506102ac611236565b34801561064d57600080fd5b506102ac61125f565b34801561066257600080fd5b506102ac6106713660046120b1565b611288565b34801561068257600080fd5b50610340610691366004611e1c565b611295565b3480156106a257600080fd5b506102556106b1366004611e1c565b600f6020526000908152604090205460ff1681565b3480156106d257600080fd5b5061027f6112c4565b3480156106e757600080fd5b506102556106f6366004611e37565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b34801561073057600080fd5b506102ac61073f366004611e1c565b6112d1565b60006001600160e01b0319821663152a902d60e11b148061077557506001600160e01b031982166380ac58cd60e01b145b8061078457506107848261134a565b92915050565b60606004805461079990612338565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612338565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b61082461138a565b610830600d8383611d67565b505050565b6000610840826113e4565b61085d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061088482610c9c565b9050806001600160a01b0316836001600160a01b031614156108b95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108d957506108d781336106f6565b155b156108f7576040516367d9dca160e11b815260040160405180910390fd5b61083083838361141d565b610830838383611479565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109825750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906109a1906001600160601b0316876122d6565b6109ab91906122c2565b915196919550909350505050565b6109c161138a565b600a805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b61083083838360405180602001604052806000815250611050565b610a0a61138a565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a3f573d6000803e3d6000fd5b5050565b60016101c881610a566002546000190190565b610a6091906122aa565b1115610aa75760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b60448201526064015b60405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201528290600090603401604051602081830303815290604052805190602001209050610aef8260105483611669565b610b285760405162461bcd60e51b815260206004820152600a60248201526939b4b3b71032b93937b960b11b6044820152606401610a9e565b600a54600160c81b900460ff16610b7a5760405162461bcd60e51b81526020600482015260166024820152755768697465206d696e7420697320696e61637469766560501b6044820152606401610a9e565b600c543414610bbf5760405162461bcd60e51b81526020600482015260116024820152702bb434ba32902b30b63ab29032b93937b960791b6044820152606401610a9e565b336000908152600f602052604090205460ff1615610c145760405162461bcd60e51b81526020600482015260126024820152715768697465206d696e7420616c726561647960701b6044820152606401610a9e565b323314610c5f5760405162461bcd60e51b815260206004820152601960248201527821b7b73a3930b1ba1031b0b63632b9103337b93134b23232b760391b6044820152606401610a9e565b610c7c33600160405180602001604052806000815250600061167f565b5050336000908152600f60205260409020805460ff191660011790555050565b6000610ca78261184b565b5192915050565b60006001600160a01b038216610cd7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b610d0561138a565b610d0f6000611974565b565b610d1961138a565b610830600e8383611d67565b610d2d61138a565b600b55565b600d8054610d3f90612338565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6b90612338565b8015610db85780601f10610d8d57610100808354040283529160200191610db8565b820191906000526020600020905b815481529060010190602001808311610d9b57829003601f168201915b505050505081565b60606005805461079990612338565b6001600160a01b038216331415610df95760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b806101c863ffffffff8216610e7d6002546000190190565b610e8791906122aa565b1115610ec95760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610a9e565b600a548290600160c01b900460ff16610f245760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e7420697320696e6163746976650000000000000000006044820152606401610a9e565b8063ffffffff16600b54610f3891906122d6565b3414610f745760405162461bcd60e51b815260206004820152600b60248201526a2b30b63ab29032b93937b960a91b6044820152606401610a9e565b600a5463ffffffff600160a01b90910481169082161115610fe35760405162461bcd60e51b815260206004820152602360248201527f457863656564207075626c6963206d696e74206c696d6974207065722077616c6044820152621b195d60ea1b6064820152608401610a9e565b32331461102e5760405162461bcd60e51b815260206004820152601960248201527821b7b73a3930b1ba1031b0b63632b9103337b93134b23232b760391b6044820152606401610a9e565b610830338463ffffffff1660405180602001604052806000815250600061167f565b61105b848484611479565b6001600160a01b0383163b1515801561107d575061107b848484846119c6565b155b1561109b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6110a961138a565b610a3f8282611abe565b60606110be826113e4565b6110db57604051630a14c4b560e41b815260040160405180910390fd5b6000600e80546110ea90612338565b80601f016020809104026020016040519081016040528092919081815260200182805461111690612338565b80156111635780601f1061113857610100808354040283529160200191611163565b820191906000526020600020905b81548152906001019060200180831161114657829003601f168201915b5050505050905080516000141561120457600d805461118190612338565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad90612338565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b505050505061122f565b8061120e84611bbb565b60405160200161121f9291906121ea565b6040516020818303038152906040525b9392505050565b61123e61138a565b600a805460ff60c01b198116600160c01b9182900460ff1615909102179055565b61126761138a565b600a805460ff60c81b198116600160c81b9182900460ff1615909102179055565b61129061138a565b601055565b6001600160a01b038116600090815260076020526040812054600160401b900467ffffffffffffffff16610784565b600e8054610d3f90612338565b6112d961138a565b6001600160a01b03811661133e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a9e565b61134781611974565b50565b60006001600160e01b031982166380ac58cd60e01b148061137b57506001600160e01b03198216635b5e139f60e01b145b80610784575061078482611cb9565b600a546001600160a01b03163314610d0f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6000816001111580156113f8575060025482105b8015610784575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114848261184b565b9050836001600160a01b031681600001516001600160a01b0316146114bb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114d957506114d985336106f6565b806114f45750336114e984610835565b6001600160a01b0316145b90508061151457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661153b57604051633a954ecd60e21b815260040160405180910390fd5b6115476000848761141d565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661161d57600254821461161d578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826116768584611cee565b14949350505050565b6002546001600160a01b0385166116a857604051622e076360e81b815260040160405180910390fd5b836116c65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561177357506001600160a01b0387163b15155b156117fc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117c460008884806001019550886119c6565b6117e1576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117795782600254146117f757600080fd5b611842565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156117fd575b50600255611662565b6040805160608101825260008082526020820181905291810191909152818060011115801561187b575060025481105b1561195b57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906119595780516001600160a01b0316156118ef579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611954579392505050565b6118ef565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119fb903390899088908890600401612229565b602060405180830381600087803b158015611a1557600080fd5b505af1925050508015611a45575060408051601f3d908101601f19168201909252611a42918101906120e7565b60015b611aa0573d808015611a73576040519150601f19603f3d011682016040523d82523d6000602084013e611a78565b606091505b508051611a98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6127106001600160601b0382161115611b2c5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a9e565b6001600160a01b038216611b825760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a9e565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b606081611bdf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c095780611bf381612373565b9150611c029050600a836122c2565b9150611be3565b60008167ffffffffffffffff811115611c2457611c246123e4565b6040519080825280601f01601f191660200182016040528015611c4e576020820181803683370190505b5090505b8415611ab657611c636001836122f5565b9150611c70600a8661238e565b611c7b9060306122aa565b60f81b818381518110611c9057611c906123ce565b60200101906001600160f81b031916908160001a905350611cb2600a866122c2565b9450611c52565b60006001600160e01b0319821663152a902d60e11b148061078457506301ffc9a760e01b6001600160e01b0319831614610784565b600081815b8451811015611d3357611d1f82868381518110611d1257611d126123ce565b6020026020010151611d3b565b915080611d2b81612373565b915050611cf3565b509392505050565b6000818310611d5757600082815260208490526040902061122f565b5060009182526020526040902090565b828054611d7390612338565b90600052602060002090601f016020900481019282611d955760008555611ddb565b82601f10611dae5782800160ff19823516178555611ddb565b82800160010185558215611ddb579182015b82811115611ddb578235825591602001919060010190611dc0565b50611de7929150611deb565b5090565b5b80821115611de75760008155600101611dec565b80356001600160a01b0381168114611e1757600080fd5b919050565b600060208284031215611e2e57600080fd5b61122f82611e00565b60008060408385031215611e4a57600080fd5b611e5383611e00565b9150611e6160208401611e00565b90509250929050565b600080600060608486031215611e7f57600080fd5b611e8884611e00565b9250611e9660208501611e00565b9150604084013590509250925092565b60008060008060808587031215611ebc57600080fd5b611ec585611e00565b93506020611ed4818701611e00565b935060408601359250606086013567ffffffffffffffff80821115611ef857600080fd5b818801915088601f830112611f0c57600080fd5b813581811115611f1e57611f1e6123e4565b611f30601f8201601f19168501612279565b91508082528984828501011115611f4657600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611f7957600080fd5b611f8283611e00565b915060208301358015158114611f9757600080fd5b809150509250929050565b60008060408385031215611fb557600080fd5b611fbe83611e00565b946020939093013593505050565b60008060408385031215611fdf57600080fd5b611fe883611e00565b915060208301356001600160601b0381168114611f9757600080fd5b6000602080838503121561201757600080fd5b823567ffffffffffffffff8082111561202f57600080fd5b818501915085601f83011261204357600080fd5b813581811115612055576120556123e4565b8060051b9150612066848301612279565b8181528481019084860184860187018a101561208157600080fd5b600095505b838610156120a4578035835260019590950194918601918601612086565b5098975050505050505050565b6000602082840312156120c357600080fd5b5035919050565b6000602082840312156120dc57600080fd5b813561122f816123fa565b6000602082840312156120f957600080fd5b815161122f816123fa565b6000806020838503121561211757600080fd5b823567ffffffffffffffff8082111561212f57600080fd5b818501915085601f83011261214357600080fd5b81358181111561215257600080fd5b86602082850101111561216457600080fd5b60209290920196919550909350505050565b6000806040838503121561218957600080fd5b50508035926020909101359150565b6000602082840312156121aa57600080fd5b813563ffffffff8116811461122f57600080fd5b600081518084526121d681602086016020860161230c565b601f01601f19169290920160200192915050565b600083516121fc81846020880161230c565b83519083019061221081836020880161230c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061225c908301846121be565b9695505050505050565b60208152600061122f60208301846121be565b604051601f8201601f1916810167ffffffffffffffff811182821017156122a2576122a26123e4565b604052919050565b600082198211156122bd576122bd6123a2565b500190565b6000826122d1576122d16123b8565b500490565b60008160001904831182151516156122f0576122f06123a2565b500290565b600082821015612307576123076123a2565b500390565b60005b8381101561232757818101518382015260200161230f565b8381111561109b5750506000910152565b600181811c9082168061234c57607f821691505b6020821081141561236d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612387576123876123a2565b5060010190565b60008261239d5761239d6123b8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461134757600080fdfea2646970667358221220eb34e420a5957aeef542b050368f14241b242dd6de7441423c00ca13859b352e64736f6c63430008070033

Deployed Bytecode Sourcemap

59186:4352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61593:349;;;;;;;;;;-1:-1:-1;61593:349:0;;;;;:::i;:::-;;:::i;:::-;;;8198:14:1;;8191:22;8173:41;;8161:2;8146:18;61593:349:0;;;;;;;;41780:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;62828:121::-;;;;;;;;;;-1:-1:-1;62828:121:0;;;;;:::i;:::-;;:::i;:::-;;43283:204;;;;;;;;;;-1:-1:-1;43283:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7217:32:1;;;7199:51;;7187:2;7172:18;43283:204:0;7053:203:1;42846:371:0;;;;;;;;;;-1:-1:-1;42846:371:0;;;;;:::i;:::-;;:::i;59401:28::-;;;;;;;;;;-1:-1:-1;59401:28:0;;;;-1:-1:-1;;;59401:28:0;;;;;;37916:303;;;;;;;;;;-1:-1:-1;38170:12:0;;38154:13;;:28;-1:-1:-1;;38154:46:0;37916:303;;;13307:25:1;;;13295:2;13280:18;37916:303:0;13161:177:1;59436:33:0;;;;;;;;;;;;;;;;44148:170;;;;;;;;;;-1:-1:-1;44148:170:0;;;;;:::i;:::-;;:::i;59325:33::-;;;;;;;;;;-1:-1:-1;59325:33:0;;;;-1:-1:-1;;;59325:33:0;;;;;;;;;13517:10:1;13505:23;;;13487:42;;13475:2;13460:18;59325:33:0;13343:192:1;31016:442:0;;;;;;;;;;-1:-1:-1;31016:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7946:32:1;;;7928:51;;8010:2;7995:18;;7988:34;;;;7901:18;31016:442:0;7754:274:1;59277:39:0;;;;;;;;;;;;59313:3;59277:39;;62472:123;;;;;;;;;;-1:-1:-1;62472:123:0;;;;;:::i;:::-;;:::i;44389:185::-;;;;;;;;;;-1:-1:-1;44389:185:0;;;;;:::i;:::-;;:::i;63329:111::-;;;;;;;;;;-1:-1:-1;63329:111:0;;;;;:::i;:::-;;:::i;62182:256::-;;;;;;:::i;:::-;;:::i;41588:125::-;;;;;;;;;;-1:-1:-1;41588:125:0;;;;;:::i;:::-;;:::i;39036:206::-;;;;;;;;;;-1:-1:-1;39036:206:0;;;;;:::i;:::-;;:::i;58293:103::-;;;;;;;;;;;;;:::i;62961:117::-;;;;;;;;;;-1:-1:-1;62961:117:0;;;;;:::i;:::-;;:::i;57645:87::-;;;;;;;;;;-1:-1:-1;57718:6:0;;-1:-1:-1;;;;;57718:6:0;57645:87;;63086:85;;;;;;;;;;-1:-1:-1;63086:85:0;;;;;:::i;:::-;;:::i;59524:::-;;;;;;;;;;;;;:::i;41949:104::-;;;;;;;;;;;;;:::i;59477:39::-;;;;;;;;;;;;;;;;43559:287;;;;;;;;;;-1:-1:-1;43559:287:0;;;;;:::i;:::-;;:::i;61950:224::-;;;;;;:::i;:::-;;:::i;59365:29::-;;;;;;;;;;-1:-1:-1;59365:29:0;;;;-1:-1:-1;;;59365:29:0;;;;;;44645:369;;;;;;;;;;-1:-1:-1;44645:369:0;;;;;:::i;:::-;;:::i;63179:142::-;;;;;;;;;;-1:-1:-1;63179:142:0;;;;;:::i;:::-;;:::i;60937:420::-;;;;;;;;;;-1:-1:-1;60937:420:0;;;;;:::i;:::-;;:::i;62603:108::-;;;;;;;;;;;;;:::i;62719:101::-;;;;;;;;;;;;;:::i;63452:81::-;;;;;;;;;;-1:-1:-1;63452:81:0;;;;;:::i;:::-;;:::i;61468:113::-;;;;;;;;;;-1:-1:-1;61468:113:0;;;;;:::i;:::-;;:::i;59649:42::-;;;;;;;;;;-1:-1:-1;59649:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;59616:26;;;;;;;;;;;;;:::i;43917:164::-;;;;;;;;;;-1:-1:-1;43917:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44038:25:0;;;44014:4;44038:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43917:164;58551:201;;;;;;;;;;-1:-1:-1;58551:201:0;;;;;:::i;:::-;;:::i;61593:349::-;61741:4;-1:-1:-1;;;;;;61783:41:0;;-1:-1:-1;;;61783:41:0;;:98;;-1:-1:-1;;;;;;;61841:40:0;;-1:-1:-1;;;61841:40:0;61783:98;:151;;;;61898:36;61922:11;61898:23;:36::i;:::-;61763:171;61593:349;-1:-1:-1;;61593:349:0:o;41780:100::-;41834:13;41867:5;41860:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41780:100;:::o;62828:121::-;57531:13;:11;:13::i;:::-;62913:28:::1;:13;62929:12:::0;;62913:28:::1;:::i;:::-;;62828:121:::0;;:::o;43283:204::-;43351:7;43376:16;43384:7;43376;:16::i;:::-;43371:64;;43401:34;;-1:-1:-1;;;43401:34:0;;;;;;;;;;;43371:64;-1:-1:-1;43455:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43455:24:0;;43283:204::o;42846:371::-;42919:13;42935:24;42951:7;42935:15;:24::i;:::-;42919:40;;42980:5;-1:-1:-1;;;;;42974:11:0;:2;-1:-1:-1;;;;;42974:11:0;;42970:48;;;42994:24;;-1:-1:-1;;;42994:24:0;;;;;;;;;;;42970:48;34272:10;-1:-1:-1;;;;;43035:21:0;;;;;;:63;;-1:-1:-1;43061:37:0;43078:5;34272:10;43917:164;:::i;43061:37::-;43060:38;43035:63;43031:138;;;43122:35;;-1:-1:-1;;;43122:35:0;;;;;;;;;;;43031:138;43181:28;43190:2;43194:7;43203:5;43181:8;:28::i;44148:170::-;44282:28;44292:4;44298:2;44302:7;44282:9;:28::i;31016:442::-;31113:7;31171:27;;;:17;:27;;;;;;;;31142:56;;;;;;;;;-1:-1:-1;;;;;31142:56:0;;;;;-1:-1:-1;;;31142:56:0;;;-1:-1:-1;;;;;31142:56:0;;;;;;;;31113:7;;31211:92;;-1:-1:-1;31262:29:0;;;;;;;;;-1:-1:-1;31262:29:0;-1:-1:-1;;;;;31262:29:0;;;;-1:-1:-1;;;31262:29:0;;-1:-1:-1;;;;;31262:29:0;;;;;31211:92;31353:23;;;;31315:21;;31824:5;;31340:36;;-1:-1:-1;;;;;31340:36:0;:10;:36;:::i;:::-;31339:58;;;;:::i;:::-;31418:16;;;;;-1:-1:-1;31016:442:0;;-1:-1:-1;;;;31016:442:0:o;62472:123::-;57531:13;:11;:13::i;:::-;62557:14:::1;:30:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;62557:30:0::1;-1:-1:-1::0;;;;62557:30:0;;::::1;::::0;;;::::1;::::0;;62472:123::o;44389:185::-;44527:39;44544:4;44550:2;44554:7;44527:39;;;;;;;;;;;;:16;:39::i;63329:111::-;57531:13;:11;:13::i;:::-;63389:43:::1;::::0;-1:-1:-1;;;;;63389:20:0;::::1;::::0;63410:21:::1;63389:43:::0;::::1;;;::::0;::::1;::::0;;;63410:21;63389:20;:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;63329:111:::0;:::o;62182:256::-;62286:1;59313:3;62286:1;60080:14;38545:13;;-1:-1:-1;;38545:31:0;;38312:283;60080:14;:23;;;;:::i;:::-;:37;;60072:67;;;;-1:-1:-1;;;60072:67:0;;11148:2:1;60072:67:0;;;11130:21:1;11187:2;11167:18;;;11160:30;-1:-1:-1;;;11206:18:1;;;11199:47;11263:18;;60072:67:0;;;;;;;;;60570:28:::1;::::0;-1:-1:-1;;60587:10:0::1;6326:2:1::0;6322:15;6318:53;60570:28:0::1;::::0;::::1;6306:66:1::0;62314:5:0;;60545:12:::1;::::0;6388::1;;60570:28:0::1;;;;;;;;;;;;60560:39;;;;;;60545:54;;60634:35;60653:5;60659:4;;60664;60634:18;:35::i;:::-;60612:81;;;::::0;-1:-1:-1;;;60612:81:0;;13024:2:1;60612:81:0::1;::::0;::::1;13006:21:1::0;13063:2;13043:18;;;13036:30;-1:-1:-1;;;13082:18:1;;;13075:40;13132:18;;60612:81:0::1;12822:334:1::0;60612:81:0::1;60712:16;::::0;-1:-1:-1;;;60712:16:0;::::1;;;60704:51;;;::::0;-1:-1:-1;;;60704:51:0;;8651:2:1;60704:51:0::1;::::0;::::1;8633:21:1::0;8690:2;8670:18;;;8663:30;-1:-1:-1;;;8709:18:1;;;8702:52;8771:18;;60704:51:0::1;8449:346:1::0;60704:51:0::1;60787:11;;60774:9;:24;60766:54;;;::::0;-1:-1:-1;;;60766:54:0;;10110:2:1;60766:54:0::1;::::0;::::1;10092:21:1::0;10149:2;10129:18;;;10122:30;-1:-1:-1;;;10168:18:1;;;10161:47;10225:18;;60766:54:0::1;9908:341:1::0;60766:54:0::1;60851:10;60840:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;60839:23;60831:54;;;::::0;-1:-1:-1;;;60831:54:0;;9002:2:1;60831:54:0::1;::::0;::::1;8984:21:1::0;9041:2;9021:18;;;9014:30;-1:-1:-1;;;9060:18:1;;;9053:48;9118:18;;60831:54:0::1;8800:342:1::0;60831:54:0::1;59939:9:::2;59952:10;59939:23;59931:61;;;::::0;-1:-1:-1;;;59931:61:0;;9756:2:1;59931:61:0::2;::::0;::::2;9738:21:1::0;9795:2;9775:18;;;9768:30;-1:-1:-1;;;9814:18:1;;;9807:55;9879:18;;59931:61:0::2;9554:349:1::0;59931:61:0::2;62359:31:::3;62365:10;62377:1;62359:31;;;;;;;;;;;::::0;62384:5:::3;62359;:31::i;:::-;-1:-1:-1::0;;62412:10:0::3;62401:22;::::0;;;:10:::3;:22;::::0;;;;:29;;-1:-1:-1;;62401:29:0::3;62426:4;62401:29;::::0;;-1:-1:-1;;62182:256:0:o;41588:125::-;41652:7;41679:21;41692:7;41679:12;:21::i;:::-;:26;;41588:125;-1:-1:-1;;41588:125:0:o;39036:206::-;39100:7;-1:-1:-1;;;;;39124:19:0;;39120:60;;39152:28;;-1:-1:-1;;;39152:28:0;;;;;;;;;;;39120:60;-1:-1:-1;;;;;;39206:19:0;;;;;:12;:19;;;;;:27;;;;39036:206::o;58293:103::-;57531:13;:11;:13::i;:::-;58358:30:::1;58385:1;58358:18;:30::i;:::-;58293:103::o:0;62961:117::-;57531:13;:11;:13::i;:::-;63044:26:::1;:12;63059:11:::0;;63044:26:::1;:::i;63086:85::-:0;57531:13;:11;:13::i;:::-;63149:6:::1;:14:::0;63086:85::o;59524:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41949:104::-;42005:13;42038:7;42031:14;;;;;:::i;43559:287::-;-1:-1:-1;;;;;43658:24:0;;34272:10;43658:24;43654:54;;;43691:17;;-1:-1:-1;;;43691:17:0;;;;;;;;;;;43654:54;34272:10;43721:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43721:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43721:53:0;;;;;;;;;;43790:48;;8173:41:1;;;43721:42:0;;34272:10;43790:48;;8146:18:1;43790:48:0;;;;;;;43559:287;;:::o;61950:224::-;62040:6;59313:3;60080:37;:23;;:14;38545:13;;-1:-1:-1;;38545:31:0;;38312:283;60080:14;:23;;;;:::i;:::-;:37;;60072:67;;;;-1:-1:-1;;;60072:67:0;;11148:2:1;60072:67:0;;;11130:21:1;11187:2;11167:18;;;11160:30;-1:-1:-1;;;11206:18:1;;;11199:47;11263:18;;60072:67:0;10946:341:1;60072:67:0;60229:17:::1;::::0;62074:6;;-1:-1:-1;;;60229:17:0;::::1;;;60221:53;;;::::0;-1:-1:-1;;;60221:53:0;;10456:2:1;60221:53:0::1;::::0;::::1;10438:21:1::0;10495:2;10475:18;;;10468:30;10534:25;10514:18;;;10507:53;10577:18;;60221:53:0::1;10254:347:1::0;60221:53:0::1;60315:6;60306:15;;:6;;:15;;;;:::i;:::-;60293:9;:28;60285:52;;;::::0;-1:-1:-1;;;60285:52:0;;10808:2:1;60285:52:0::1;::::0;::::1;10790:21:1::0;10847:2;10827:18;;;10820:30;-1:-1:-1;;;10866:18:1;;;10859:41;10917:18;;60285:52:0::1;10606:335:1::0;60285:52:0::1;60380:14;::::0;::::1;-1:-1:-1::0;;;60380:14:0;;::::1;::::0;::::1;60370:24:::0;;::::1;;;60348:109;;;::::0;-1:-1:-1;;;60348:109:0;;11855:2:1;60348:109:0::1;::::0;::::1;11837:21:1::0;11894:2;11874:18;;;11867:30;11933:34;11913:18;;;11906:62;-1:-1:-1;;;11984:18:1;;;11977:33;12027:19;;60348:109:0::1;11653:399:1::0;60348:109:0::1;59939:9:::2;59952:10;59939:23;59931:61;;;::::0;-1:-1:-1;;;59931:61:0;;9756:2:1;59931:61:0::2;::::0;::::2;9738:21:1::0;9795:2;9775:18;;;9768:30;-1:-1:-1;;;9814:18:1;;;9807:55;9879:18;;59931:61:0::2;9554:349:1::0;59931:61:0::2;62120:36:::3;62126:10;62138:6;62120:36;;;;;;;;;;;;;::::0;62150:5:::3;62120;:36::i;44645:369::-:0;44812:28;44822:4;44828:2;44832:7;44812:9;:28::i;:::-;-1:-1:-1;;;;;44855:13:0;;4025:19;:23;;44855:76;;;;;44875:56;44906:4;44912:2;44916:7;44925:5;44875:30;:56::i;:::-;44874:57;44855:76;44851:156;;;44955:40;;-1:-1:-1;;;44955:40:0;;;;;;;;;;;44851:156;44645:369;;;;:::o;63179:142::-;57531:13;:11;:13::i;:::-;63271:42:::1;63290:8;63300:12;63271:18;:42::i;60937:420::-:0;61038:13;61074:16;61082:7;61074;:16::i;:::-;61069:59;;61099:29;;-1:-1:-1;;;61099:29:0;;;;;;;;;;;61069:59;61141:21;61165:12;61141:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61214:7;61208:21;61233:1;61208:26;;:141;;61336:13;61208:141;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61278:7;61287:18;:7;:16;:18::i;:::-;61261:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61208:141;61188:161;60937:420;-1:-1:-1;;;60937:420:0:o;62603:108::-;57531:13;:11;:13::i;:::-;62686:17:::1;::::0;;-1:-1:-1;;;;62665:38:0;::::1;-1:-1:-1::0;;;62686:17:0;;;::::1;;;62685:18;62665:38:::0;;::::1;;::::0;;62603:108::o;62719:101::-;57531:13;:11;:13::i;:::-;62796:16:::1;::::0;;-1:-1:-1;;;;62776:36:0;::::1;-1:-1:-1::0;;;62796:16:0;;;::::1;;;62795:17;62776:36:::0;;::::1;;::::0;;62719:101::o;63452:81::-;57531:13;:11;:13::i;:::-;63513:4:::1;:12:::0;63452:81::o;61468:113::-;-1:-1:-1;;;;;39420:19:0;;61526:7;39420:19;;;:12;:19;;;;;:32;-1:-1:-1;;;39420:32:0;;;;61553:20;39324:137;59616:26;;;;;;;:::i;58551:201::-;57531:13;:11;:13::i;:::-;-1:-1:-1;;;;;58640:22:0;::::1;58632:73;;;::::0;-1:-1:-1;;;58632:73:0;;9349:2:1;58632:73:0::1;::::0;::::1;9331:21:1::0;9388:2;9368:18;;;9361:30;9427:34;9407:18;;;9400:62;-1:-1:-1;;;9478:18:1;;;9471:36;9524:19;;58632:73:0::1;9147:402:1::0;58632:73:0::1;58716:28;58735:8;58716:18;:28::i;:::-;58551:201:::0;:::o;38667:305::-;38769:4;-1:-1:-1;;;;;;38806:40:0;;-1:-1:-1;;;38806:40:0;;:105;;-1:-1:-1;;;;;;;38863:48:0;;-1:-1:-1;;;38863:48:0;38806:105;:158;;;;38928:36;38952:11;38928:23;:36::i;57810:132::-;57718:6;;-1:-1:-1;;;;;57718:6:0;34272:10;57874:23;57866:68;;;;-1:-1:-1;;;57866:68:0;;11494:2:1;57866:68:0;;;11476:21:1;;;11513:18;;;11506:30;11572:34;11552:18;;;11545:62;11624:18;;57866:68:0;11292:356:1;45269:174:0;45326:4;45369:7;61451:1;45350:26;;:53;;;;;45390:13;;45380:7;:23;45350:53;:85;;;;-1:-1:-1;;45408:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;45408:27:0;;;;45407:28;;45269:174::o;53426:196::-;53541:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53541:29:0;-1:-1:-1;;;;;53541:29:0;;;;;;;;;53586:28;;53541:24;;53586:28;;;;;;;53426:196;;;:::o;48369:2130::-;48484:35;48522:21;48535:7;48522:12;:21::i;:::-;48484:59;;48582:4;-1:-1:-1;;;;;48560:26:0;:13;:18;;;-1:-1:-1;;;;;48560:26:0;;48556:67;;48595:28;;-1:-1:-1;;;48595:28:0;;;;;;;;;;;48556:67;48636:22;34272:10;-1:-1:-1;;;;;48662:20:0;;;;:73;;-1:-1:-1;48699:36:0;48716:4;34272:10;43917:164;:::i;48699:36::-;48662:126;;;-1:-1:-1;34272:10:0;48752:20;48764:7;48752:11;:20::i;:::-;-1:-1:-1;;;;;48752:36:0;;48662:126;48636:153;;48807:17;48802:66;;48833:35;;-1:-1:-1;;;48833:35:0;;;;;;;;;;;48802:66;-1:-1:-1;;;;;48883:16:0;;48879:52;;48908:23;;-1:-1:-1;;;48908:23:0;;;;;;;;;;;48879:52;49052:35;49069:1;49073:7;49082:4;49052:8;:35::i;:::-;-1:-1:-1;;;;;49383:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;49383:31:0;;;;;;;-1:-1:-1;;49383:31:0;;;;;;;49429:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49429:29:0;;;;;;;;;;;49509:20;;;:11;:20;;;;;;49544:18;;-1:-1:-1;;;;;;49577:49:0;;;;-1:-1:-1;;;49610:15:0;49577:49;;;;;;;;;;49900:11;;49960:24;;;;;50003:13;;49509:20;;49960:24;;50003:13;49999:384;;50213:13;;50198:11;:28;50194:174;;50251:20;;50320:28;;;;50294:54;;-1:-1:-1;;;50294:54:0;-1:-1:-1;;;;;;50294:54:0;;;-1:-1:-1;;;;;50251:20:0;;50294:54;;;;50194:174;49358:1036;;;50430:7;50426:2;-1:-1:-1;;;;;50411:27:0;50420:4;-1:-1:-1;;;;;50411:27:0;;;;;;;;;;;50449:42;48473:2026;;48369:2130;;;:::o;13323:190::-;13448:4;13501;13472:25;13485:5;13492:4;13472:12;:25::i;:::-;:33;;13323:190;-1:-1:-1;;;;13323:190:0:o;46340:1775::-;46502:13;;-1:-1:-1;;;;;46530:16:0;;46526:48;;46555:19;;-1:-1:-1;;;46555:19:0;;;;;;;;;;;46526:48;46589:13;46585:44;;46611:18;;-1:-1:-1;;;46611:18:0;;;;;;;;;;;46585:44;-1:-1:-1;;;;;46980:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;47039:49:0;;46980:44;;;;;;;;47039:49;;;-1:-1:-1;;;;;46980:44:0;;;;;;47039:49;;;;;;;;;;;;;;;;47105:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;47155:66:0;;;;-1:-1:-1;;;47205:15:0;47155:66;;;;;;;;;;47105:25;47302:23;;;47346:4;:23;;;;-1:-1:-1;;;;;;47354:13:0;;4025:19;:23;;47354:15;47342:641;;;47390:314;47421:38;;47446:12;;-1:-1:-1;;;;;47421:38:0;;;47438:1;;47421:38;;47438:1;;47421:38;47487:69;47526:1;47530:2;47534:14;;;;;;47550:5;47487:30;:69::i;:::-;47482:174;;47592:40;;-1:-1:-1;;;47592:40:0;;;;;;;;;;;47482:174;47699:3;47683:12;:19;;47390:314;;47785:12;47768:13;;:29;47764:43;;47799:8;;;47764:43;47342:641;;;47848:120;47879:40;;47904:14;;;;;-1:-1:-1;;;;;47879:40:0;;;47896:1;;47879:40;;47896:1;;47879:40;47963:3;47947:12;:19;;47848:120;;47342:641;-1:-1:-1;47997:13:0;:28;48047:60;44645:369;40417:1109;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;40528:7:0;;61451:1;40577:23;;:47;;;;;40611:13;;40604:4;:20;40577:47;40573:886;;;40645:31;40679:17;;;:11;:17;;;;;;;;;40645:51;;;;;;;;;-1:-1:-1;;;;;40645:51:0;;;;-1:-1:-1;;;40645:51:0;;;;;;;;;;;-1:-1:-1;;;40645:51:0;;;;;;;;;;;;;;40715:729;;40765:14;;-1:-1:-1;;;;;40765:28:0;;40761:101;;40829:9;40417:1109;-1:-1:-1;;;40417:1109:0:o;40761:101::-;-1:-1:-1;;;41204:6:0;41249:17;;;;:11;:17;;;;;;;;;41237:29;;;;;;;;;-1:-1:-1;;;;;41237:29:0;;;;;-1:-1:-1;;;41237:29:0;;;;;;;;;;;-1:-1:-1;;;41237:29:0;;;;;;;;;;;;;41297:28;41293:109;;41365:9;40417:1109;-1:-1:-1;;;40417:1109:0:o;41293:109::-;41164:261;;;40626:833;40573:886;41487:31;;-1:-1:-1;;;41487:31:0;;;;;;;;;;;58912:191;59005:6;;;-1:-1:-1;;;;;59022:17:0;;;-1:-1:-1;;;;;;59022:17:0;;;;;;;59055:40;;59005:6;;;59022:17;59005:6;;59055:40;;58986:16;;59055:40;58975:128;58912:191;:::o;54114:667::-;54298:72;;-1:-1:-1;;;54298:72:0;;54277:4;;-1:-1:-1;;;;;54298:36:0;;;;;:72;;34272:10;;54349:4;;54355:7;;54364:5;;54298:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54298:72:0;;;;;;;;-1:-1:-1;;54298:72:0;;;;;;;;;;;;:::i;:::-;;;54294:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54532:13:0;;54528:235;;54578:40;;-1:-1:-1;;;54578:40:0;;;;;;;;;;;54528:235;54721:6;54715:13;54706:6;54702:2;54698:15;54691:38;54294:480;-1:-1:-1;;;;;;54417:55:0;-1:-1:-1;;;54417:55:0;;-1:-1:-1;54294:480:0;54114:667;;;;;;:::o;32108:332::-;31824:5;-1:-1:-1;;;;;32211:33:0;;;;32203:88;;;;-1:-1:-1;;;32203:88:0;;12259:2:1;32203:88:0;;;12241:21:1;12298:2;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;-1:-1:-1;;;12388:18:1;;;12381:40;12438:19;;32203:88:0;12057:406:1;32203:88:0;-1:-1:-1;;;;;32310:22:0;;32302:60;;;;-1:-1:-1;;;32302:60:0;;12670:2:1;32302:60:0;;;12652:21:1;12709:2;12689:18;;;12682:30;12748:27;12728:18;;;12721:55;12793:18;;32302:60:0;12468:349:1;32302:60:0;32397:35;;;;;;;;;-1:-1:-1;;;;;32397:35:0;;;;;;-1:-1:-1;;;;;32397:35:0;;;;;;;;;;-1:-1:-1;;;32375:57:0;;;;-1:-1:-1;32375:57:0;32108:332::o;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;30746:215;30848:4;-1:-1:-1;;;;;;30872:41:0;;-1:-1:-1;;;30872:41:0;;:81;;-1:-1:-1;;;;;;;;;;28407:40:0;;;30917:36;28298:157;14190:296;14273:7;14316:4;14273:7;14331:118;14355:5;:12;14351:1;:16;14331:118;;;14404:33;14414:12;14428:5;14434:1;14428:8;;;;;;;;:::i;:::-;;;;;;;14404:9;:33::i;:::-;14389:48;-1:-1:-1;14369:3:0;;;;:::i;:::-;;;;14331:118;;;-1:-1:-1;14466:12:0;14190:296;-1:-1:-1;;;14190:296:0:o;20397:149::-;20460:7;20491:1;20487;:5;:51;;20622:13;20716:15;;;20752:4;20745:15;;;20799:4;20783:21;;20487:51;;;-1:-1:-1;20622:13:0;20716:15;;;20752:4;20745:15;20799:4;20783:21;;;20397:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:980::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:2;1262:38;1296:2;1285:9;1281:18;1262:38;:::i;:::-;1252:48;;1347:2;1336:9;1332:18;1319:32;1309:42;;1402:2;1391:9;1387:18;1374:32;1425:18;1466:2;1458:6;1455:14;1452:34;;;1482:1;1479;1472:12;1452:34;1520:6;1509:9;1505:22;1495:32;;1565:7;1558:4;1554:2;1550:13;1546:27;1536:55;;1587:1;1584;1577:12;1536:55;1623:2;1610:16;1645:2;1641;1638:10;1635:36;;;1651:18;;:::i;:::-;1693:53;1736:2;1717:13;;-1:-1:-1;;1713:27:1;1709:36;;1693:53;:::i;:::-;1680:66;;1769:2;1762:5;1755:17;1809:7;1804:2;1799;1795;1791:11;1787:20;1784:33;1781:53;;;1830:1;1827;1820:12;1781:53;1885:2;1880;1876;1872:11;1867:2;1860:5;1856:14;1843:45;1929:1;1924:2;1919;1912:5;1908:14;1904:23;1897:34;;1950:5;1940:15;;;;;981:980;;;;;;;:::o;1966:347::-;2031:6;2039;2092:2;2080:9;2071:7;2067:23;2063:32;2060:52;;;2108:1;2105;2098:12;2060:52;2131:29;2150:9;2131:29;:::i;:::-;2121:39;;2210:2;2199:9;2195:18;2182:32;2257:5;2250:13;2243:21;2236:5;2233:32;2223:60;;2279:1;2276;2269:12;2223:60;2302:5;2292:15;;;1966:347;;;;;:::o;2318:254::-;2386:6;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:29;2505:9;2486:29;:::i;:::-;2476:39;2562:2;2547:18;;;;2534:32;;-1:-1:-1;;;2318:254:1:o;2577:366::-;2644:6;2652;2705:2;2693:9;2684:7;2680:23;2676:32;2673:52;;;2721:1;2718;2711:12;2673:52;2744:29;2763:9;2744:29;:::i;:::-;2734:39;;2823:2;2812:9;2808:18;2795:32;-1:-1:-1;;;;;2860:5:1;2856:38;2849:5;2846:49;2836:77;;2909:1;2906;2899:12;2948:957;3032:6;3063:2;3106;3094:9;3085:7;3081:23;3077:32;3074:52;;;3122:1;3119;3112:12;3074:52;3162:9;3149:23;3191:18;3232:2;3224:6;3221:14;3218:34;;;3248:1;3245;3238:12;3218:34;3286:6;3275:9;3271:22;3261:32;;3331:7;3324:4;3320:2;3316:13;3312:27;3302:55;;3353:1;3350;3343:12;3302:55;3389:2;3376:16;3411:2;3407;3404:10;3401:36;;;3417:18;;:::i;:::-;3463:2;3460:1;3456:10;3446:20;;3486:28;3510:2;3506;3502:11;3486:28;:::i;:::-;3548:15;;;3579:12;;;;3611:11;;;3641;;;3637:20;;3634:33;-1:-1:-1;3631:53:1;;;3680:1;3677;3670:12;3631:53;3702:1;3693:10;;3712:163;3726:2;3723:1;3720:9;3712:163;;;3783:17;;3771:30;;3744:1;3737:9;;;;;3821:12;;;;3853;;3712:163;;;-1:-1:-1;3894:5:1;2948:957;-1:-1:-1;;;;;;;;2948:957:1:o;3910:180::-;3969:6;4022:2;4010:9;4001:7;3997:23;3993:32;3990:52;;;4038:1;4035;4028:12;3990:52;-1:-1:-1;4061:23:1;;3910:180;-1:-1:-1;3910:180:1:o;4095:245::-;4153:6;4206:2;4194:9;4185:7;4181:23;4177:32;4174:52;;;4222:1;4219;4212:12;4174:52;4261:9;4248:23;4280:30;4304:5;4280:30;:::i;4345:249::-;4414:6;4467:2;4455:9;4446:7;4442:23;4438:32;4435:52;;;4483:1;4480;4473:12;4435:52;4515:9;4509:16;4534:30;4558:5;4534:30;:::i;4599:592::-;4670:6;4678;4731:2;4719:9;4710:7;4706:23;4702:32;4699:52;;;4747:1;4744;4737:12;4699:52;4787:9;4774:23;4816:18;4857:2;4849:6;4846:14;4843:34;;;4873:1;4870;4863:12;4843:34;4911:6;4900:9;4896:22;4886:32;;4956:7;4949:4;4945:2;4941:13;4937:27;4927:55;;4978:1;4975;4968:12;4927:55;5018:2;5005:16;5044:2;5036:6;5033:14;5030:34;;;5060:1;5057;5050:12;5030:34;5105:7;5100:2;5091:6;5087:2;5083:15;5079:24;5076:37;5073:57;;;5126:1;5123;5116:12;5073:57;5157:2;5149:11;;;;;5179:6;;-1:-1:-1;4599:592:1;;-1:-1:-1;;;;4599:592:1:o;5381:248::-;5449:6;5457;5510:2;5498:9;5489:7;5485:23;5481:32;5478:52;;;5526:1;5523;5516:12;5478:52;-1:-1:-1;;5549:23:1;;;5619:2;5604:18;;;5591:32;;-1:-1:-1;5381:248:1:o;5634:276::-;5692:6;5745:2;5733:9;5724:7;5720:23;5716:32;5713:52;;;5761:1;5758;5751:12;5713:52;5800:9;5787:23;5850:10;5843:5;5839:22;5832:5;5829:33;5819:61;;5876:1;5873;5866:12;5915:257;5956:3;5994:5;5988:12;6021:6;6016:3;6009:19;6037:63;6093:6;6086:4;6081:3;6077:14;6070:4;6063:5;6059:16;6037:63;:::i;:::-;6154:2;6133:15;-1:-1:-1;;6129:29:1;6120:39;;;;6161:4;6116:50;;5915:257;-1:-1:-1;;5915:257:1:o;6411:637::-;6691:3;6729:6;6723:13;6745:53;6791:6;6786:3;6779:4;6771:6;6767:17;6745:53;:::i;:::-;6861:13;;6820:16;;;;6883:57;6861:13;6820:16;6917:4;6905:17;;6883:57;:::i;:::-;-1:-1:-1;;;6962:20:1;;6991:22;;;7040:1;7029:13;;6411:637;-1:-1:-1;;;;6411:637:1:o;7261:488::-;-1:-1:-1;;;;;7530:15:1;;;7512:34;;7582:15;;7577:2;7562:18;;7555:43;7629:2;7614:18;;7607:34;;;7677:3;7672:2;7657:18;;7650:31;;;7455:4;;7698:45;;7723:19;;7715:6;7698:45;:::i;:::-;7690:53;7261:488;-1:-1:-1;;;;;;7261:488:1:o;8225:219::-;8374:2;8363:9;8356:21;8337:4;8394:44;8434:2;8423:9;8419:18;8411:6;8394:44;:::i;13540:275::-;13611:2;13605:9;13676:2;13657:13;;-1:-1:-1;;13653:27:1;13641:40;;13711:18;13696:34;;13732:22;;;13693:62;13690:88;;;13758:18;;:::i;:::-;13794:2;13787:22;13540:275;;-1:-1:-1;13540:275:1:o;13820:128::-;13860:3;13891:1;13887:6;13884:1;13881:13;13878:39;;;13897:18;;:::i;:::-;-1:-1:-1;13933:9:1;;13820:128::o;13953:120::-;13993:1;14019;14009:35;;14024:18;;:::i;:::-;-1:-1:-1;14058:9:1;;13953:120::o;14078:168::-;14118:7;14184:1;14180;14176:6;14172:14;14169:1;14166:21;14161:1;14154:9;14147:17;14143:45;14140:71;;;14191:18;;:::i;:::-;-1:-1:-1;14231:9:1;;14078:168::o;14251:125::-;14291:4;14319:1;14316;14313:8;14310:34;;;14324:18;;:::i;:::-;-1:-1:-1;14361:9:1;;14251:125::o;14381:258::-;14453:1;14463:113;14477:6;14474:1;14471:13;14463:113;;;14553:11;;;14547:18;14534:11;;;14527:39;14499:2;14492:10;14463:113;;;14594:6;14591:1;14588:13;14585:48;;;-1:-1:-1;;14629:1:1;14611:16;;14604:27;14381:258::o;14644:380::-;14723:1;14719:12;;;;14766;;;14787:61;;14841:4;14833:6;14829:17;14819:27;;14787:61;14894:2;14886:6;14883:14;14863:18;14860:38;14857:161;;;14940:10;14935:3;14931:20;14928:1;14921:31;14975:4;14972:1;14965:15;15003:4;15000:1;14993:15;14857:161;;14644:380;;;:::o;15029:135::-;15068:3;-1:-1:-1;;15089:17:1;;15086:43;;;15109:18;;:::i;:::-;-1:-1:-1;15156:1:1;15145:13;;15029:135::o;15169:112::-;15201:1;15227;15217:35;;15232:18;;:::i;:::-;-1:-1:-1;15266:9:1;;15169:112::o;15286:127::-;15347:10;15342:3;15338:20;15335:1;15328:31;15378:4;15375:1;15368:15;15402:4;15399:1;15392:15;15418:127;15479:10;15474:3;15470:20;15467:1;15460:31;15510:4;15507:1;15500:15;15534:4;15531:1;15524:15;15550:127;15611:10;15606:3;15602:20;15599:1;15592:31;15642:4;15639:1;15632:15;15666:4;15663:1;15656:15;15682:127;15743:10;15738:3;15734:20;15731:1;15724:31;15774:4;15771:1;15764:15;15798:4;15795:1;15788:15;15814:131;-1:-1:-1;;;;;;15888:32:1;;15878:43;;15868:71;;15935:1;15932;15925:12

Swarm Source

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