ETH Price: $3,468.19 (+2.18%)
Gas: 16 Gwei

Token

Non-Financial Advisors (NFA)
 

Overview

Max Total Supply

5,555 NFA

Holders

1,628

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NFA
0xcd5bcf7c05670e3dda2e8dc576d1c4cfdd090150
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:
NFA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-04
*/

// 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-upgradeable/utils/StringsUpgradeable.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    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-upgradeable/utils/AddressUpgradeable.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 AddressUpgradeable {
    /**
     * @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 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-upgradeable/proxy/utils/Initializable.sol


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

pragma solidity ^0.8.2;


/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
     * initialization step. This is essential to configure modules that are added through upgrades and that require
     * initialization.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }
}

// File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

// 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-upgradeable/utils/introspection/IERC165Upgradeable.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 IERC165Upgradeable {
    /**
     * @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-upgradeable/utils/introspection/ERC165Upgradeable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.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 IERC721Upgradeable is IERC165Upgradeable {
    /**
     * @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-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.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 IERC721MetadataUpgradeable is IERC721Upgradeable {
    /**
     * @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: nfa.sol



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

interface IERC2981Royalties {
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

abstract contract ERC2981PerTokenRoyalties is ERC165Upgradeable, IERC2981Royalties {
    struct Royalty {
        address recipient;
        uint256 value;
    }

    mapping(uint256 => Royalty) internal _royalties;
    address _treasury;
    uint256 _royaltyFee;

    /// @dev Sets token royalties
    /// @param id the token id fir which we register the royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setTokenRoyalty(
        uint256 id,
        address recipient,
        uint256 value
    ) internal {
        require(value <= 10000, 'ERC2981Royalties: Too high');

        _royalties[id] = Royalty(recipient, value);
    }

    /// @inheritdoc IERC2981Royalties
    function royaltyInfo(uint256 tokenId, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (_treasury, (value * _royaltyFee) / 10000);
    }
}


contract ERC721A is 
    Initializable,
    ContextUpgradeable,
    ERC165Upgradeable,
    IERC721Upgradeable,
    IERC721MetadataUpgradeable,
    ERC2981PerTokenRoyalties {
    using AddressUpgradeable for address;
    using StringsUpgradeable 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 1;
    }

    /**
     * @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(ERC165Upgradeable, IERC165Upgradeable) returns (bool) {
        return
            interfaceId == type(IERC721Upgradeable).interfaceId ||
            interfaceId == type(IERC721MetadataUpgradeable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

contract NFA is Initializable, ERC721A{
    using StringsUpgradeable for uint256;
    
    address private _owner;
    string  _mainURI;
    bool private _isMint;
    bool private _isPublic;
    bytes32 public _merkleRoot = "";
    uint private _wlCount;
    uint private _totalCount;
    string private _contractURI;


    mapping(address => uint256) public minted;
    
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    constructor(string memory _name, string memory _symbol, string memory _mUri) ERC721A(_name, _symbol){
        _treasury = msg.sender;
        _royaltyFee = 1000; //10%
        _owner = msg.sender;
        _mainURI = _mUri;
    }

    function changeMintStatus(bool _status) external onlyOwner{
    	require(_status != _isMint,'Mint already in same status');
    	_isMint = _status;
    }

    function changePublicStatus(bool _status) external onlyOwner{
    	require(_status != _isPublic,'isPublic already in same status');
    	_isPublic = _status;
    }

    function rdata(address _royltyAddr, uint256 _per) external onlyOwner{
    	_treasury = _royltyAddr;
        _royaltyFee = _per;
    }

    function updateRoot(bytes32 _root) external onlyOwner{
    	_merkleRoot = _root;
    }
    
    modifier onlyOwner{
        require(msg.sender == _owner, 'Only Owner');
        _;
    }
    
    function transferOwnership(address newOwner) external virtual onlyOwner {
        require(newOwner != address(0), "00");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function updateMainURI(string memory _mainuri) external virtual onlyOwner {
        _mainURI = _mainuri;
    }

    function updateContractURI(string memory _curi) external virtual onlyOwner {
        _contractURI = _curi;
    }
    
    function whitelistMint(bytes32[] calldata _merkleProof, uint256 _quantity) external {
    	require(_isMint, "Currently Minting Is Off");
        require(!_isPublic,"Whitelist Ended");
        require(_totalCount+_quantity <= 5555,"END");
        require(minted[msg.sender]+_quantity <= 3,"END");
        require(_wlCount+_quantity < 3000, "Completed");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof,_merkleRoot, leaf),"Not WL");
        _safeMint(msg.sender, _quantity);
        _wlCount+= _quantity;
        minted[msg.sender] += _quantity;
        _totalCount += _quantity;
    }

    function publicMint(uint256 _quantity) external{
        require(_isMint, "mint off");
        require(_isPublic, "public not live");
        require(_totalCount+_quantity <= 5555,"END");
        require(minted[msg.sender]+_quantity <= 2, "Limit Exceed" );
        _safeMint(msg.sender, _quantity);
        minted[msg.sender] += _quantity;
        _totalCount += _quantity;
    }

    function bulkMint(uint256 _quantity) external onlyOwner{
        require(_isMint, "Currently Minting Is Off");
        require(_totalCount+_quantity <= 5555,"END");
        _safeMint(msg.sender, _quantity);
        _totalCount += _quantity;
    }

    function withdrawTreasury() external onlyOwner{
        (bool success, ) = _treasury.call{value: address(this).balance}("");
        require(success, "Failed Tx");
    }
    
    function bulkTransfer(address[] memory to, uint[] memory tokenIds) external virtual{
        require( to.length == tokenIds.length, "Lenght not matched, Invalid Format");
        require( to.length <= 400, "You can transfer max 400 tokens");
        for(uint i = 0; i < to.length; i++){
            safeTransferFrom(msg.sender, to[i], tokenIds[i]);
        }
    }
    
    function multiSendTokens(address to, uint[] memory tokenIds) external virtual{
        require( tokenIds.length <= 400, "You can transfer max 400 tokens");
        for(uint i = 0; i < tokenIds.length; i++){
            safeTransferFrom(msg.sender, to, tokenIds[i]);
        }
    }

    function baseURI() external view returns (string memory) {
        return _mainURI;
    }

    function contractURI() external view returns (string memory){
        return _contractURI;
    }
    
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(_mainURI,tokenId.toString(),".json"));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_mUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":"_merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"bulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"bulkTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"changePublicStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"multiSendTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royltyAddr","type":"address"},{"internalType":"uint256","name":"_per","type":"uint256"}],"name":"rdata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_curi","type":"string"}],"name":"updateContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_mainuri","type":"string"}],"name":"updateMainURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"updateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006073553480156200001657600080fd5b506040516200269b3803806200269b833981016040819052620000399162000214565b8251839083906200005290606a906020850190620000b7565b5080516200006890606b906020840190620000b7565b506001606855505060668054336001600160a01b031991821681179092556103e86067556070805490911690911790558051620000ad906071906020840190620000b7565b50505050620002f8565b828054620000c590620002a5565b90600052602060002090601f016020900481019282620000e9576000855562000134565b82601f106200010457805160ff191683800117855562000134565b8280016001018555821562000134579182015b828111156200013457825182559160200191906001019062000117565b506200014292915062000146565b5090565b5b8082111562000142576000815560010162000147565b600082601f8301126200016f57600080fd5b81516001600160401b03808211156200018c576200018c620002e2565b604051601f8301601f19908116603f01168101908282118183101715620001b757620001b7620002e2565b81604052838152602092508683858801011115620001d457600080fd5b600091505b83821015620001f85785820183015181830184015290820190620001d9565b838211156200020a5760008385830101525b9695505050505050565b6000806000606084860312156200022a57600080fd5b83516001600160401b03808211156200024257600080fd5b62000250878388016200015d565b945060208601519150808211156200026757600080fd5b62000275878388016200015d565b935060408601519150808211156200028c57600080fd5b506200029b868287016200015d565b9150509250925092565b600181811c90821680620002ba57607f821691505b60208210811415620002dc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61239380620003086000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c806342842e0e1161010f578063a22cb465116100a2578063df1aa20711610071578063df1aa20714610441578063e8a3d48514610454578063e985e9c51461045c578063f2fde38b1461049857600080fd5b8063a22cb465146103f5578063a8ddf8f614610408578063b88d4fde1461041b578063c87b56dd1461042e57600080fd5b806370a08231116100de57806370a08231146103b45780637c9af616146103c75780637e5b1e24146103da57806395d89b41146103ed57600080fd5b806342842e0e146103735780636352211e14610386578063641c1346146103995780636c0360eb146103ac57600080fd5b80631ade6d9a116101875780632904e6d9116101565780632904e6d9146103125780632a55205a146103255780632db11544146103575780632fc37ab21461036a57600080fd5b80631ade6d9a146102b95780631e7269c5146102cc57806321ff9970146102ec57806323b872dd146102ff57600080fd5b8063095ea7b3116101c3578063095ea7b314610271578063153a1f3e14610284578063166bab951461029757806318160ddd1461029f57600080fd5b8062bc653c146101f457806301ffc9a71461020957806306fdde0314610231578063081812fc14610246575b600080fd5b610207610202366004611f53565b6104ab565b005b61021c610217366004611f6c565b61057e565b60405190151581526020015b60405180910390f35b6102396105d0565b6040516102289190612150565b610259610254366004611f53565b610662565b6040516001600160a01b039091168152602001610228565b61020761027f366004611dd8565b6106a6565b610207610292366004611e02565b610734565b61020761083e565b60695460685403600019015b604051908152602001610228565b6102076102c7366004611dd8565b6108fa565b6102ab6102da366004611c5c565b60776020526000908152604090205481565b6102076102fa366004611f53565b61094a565b61020761030d366004611caa565b610979565b610207610320366004611ebe565b610984565b610338610333366004611fee565b610be3565b604080516001600160a01b039093168352602083019190915201610228565b610207610365366004611f53565b610c1d565b6102ab60735481565b610207610381366004611caa565b610d6f565b610259610394366004611f53565b610d8a565b6102076103a7366004611f38565b610d9c565b610239610e43565b6102ab6103c2366004611c5c565b610e52565b6102076103d5366004611d61565b610ea0565b6102076103e8366004611fa6565b610f28565b610239610f69565b610207610403366004611dae565b610f78565b610207610416366004611f38565b61100e565b610207610429366004611ce6565b6110a4565b61023961043c366004611f53565b6110f5565b61020761044f366004611fa6565b611196565b6102396111d3565b61021c61046a366004611c77565b6001600160a01b039182166000908152606f6020908152604080832093909416825291909152205460ff1690565b6102076104a6366004611c5c565b6111e2565b6070546001600160a01b031633146104de5760405162461bcd60e51b81526004016104d590612180565b60405180910390fd5b60725460ff1661052b5760405162461bcd60e51b815260206004820152601860248201527721bab93932b73a363c9026b4b73a34b7339024b99027b33360411b60448201526064016104d5565b6115b38160755461053c91906121f7565b111561055a5760405162461bcd60e51b81526004016104d590612163565b61056433826112a3565b806075600082825461057691906121f7565b909155505050565b60006001600160e01b031982166380ac58cd60e01b14806105af57506001600160e01b03198216635b5e139f60e01b145b806105ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060606a80546105df90612285565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90612285565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b600061066d826112bd565b61068a576040516333d1c03960e21b815260040160405180910390fd5b506000908152606e60205260409020546001600160a01b031690565b60006106b182610d8a565b9050806001600160a01b0316836001600160a01b031614156106e65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107065750610704813361046a565b155b15610724576040516367d9dca160e11b815260040160405180910390fd5b61072f8383836112f6565b505050565b80518251146107905760405162461bcd60e51b815260206004820152602260248201527f4c656e676874206e6f74206d6174636865642c20496e76616c696420466f726d604482015261185d60f21b60648201526084016104d5565b610190825111156107e35760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e207472616e73666572206d61782034303020746f6b656e730060448201526064016104d5565b60005b825181101561072f5761082c338483815181106108055761080561231b565b602002602001015184848151811061081f5761081f61231b565b6020026020010151610d6f565b80610836816122c0565b9150506107e6565b6070546001600160a01b031633146108685760405162461bcd60e51b81526004016104d590612180565b6066546040516000916001600160a01b03169047908381818185875af1925050503d80600081146108b5576040519150601f19603f3d011682016040523d82523d6000602084013e6108ba565b606091505b50509050806108f75760405162461bcd60e51b815260206004820152600960248201526808cc2d2d8cac840a8f60bb1b60448201526064016104d5565b50565b6070546001600160a01b031633146109245760405162461bcd60e51b81526004016104d590612180565b606680546001600160a01b0319166001600160a01b039390931692909217909155606755565b6070546001600160a01b031633146109745760405162461bcd60e51b81526004016104d590612180565b607355565b61072f838383611352565b60725460ff166109d15760405162461bcd60e51b815260206004820152601860248201527721bab93932b73a363c9026b4b73a34b7339024b99027b33360411b60448201526064016104d5565b607254610100900460ff1615610a1b5760405162461bcd60e51b815260206004820152600f60248201526e15da1a5d195b1a5cdd08115b991959608a1b60448201526064016104d5565b6115b381607554610a2c91906121f7565b1115610a4a5760405162461bcd60e51b81526004016104d590612163565b33600090815260776020526040902054600390610a689083906121f7565b1115610a865760405162461bcd60e51b81526004016104d590612163565b610bb881607454610a9791906121f7565b10610ad05760405162461bcd60e51b815260206004820152600960248201526810dbdb5c1b195d195960ba1b60448201526064016104d5565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b4a848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506073549150849050611540565b610b7f5760405162461bcd60e51b8152602060048201526006602482015265139bdd0815d360d21b60448201526064016104d5565b610b8933836112a3565b8160746000828254610b9b91906121f7565b90915550503360009081526077602052604081208054849290610bbf9084906121f7565b925050819055508160756000828254610bd891906121f7565b909155505050505050565b60665460675460009182916001600160a01b039091169061271090610c089086612223565b610c12919061220f565b915091509250929050565b60725460ff16610c5a5760405162461bcd60e51b815260206004820152600860248201526736b4b73a1037b33360c11b60448201526064016104d5565b607254610100900460ff16610ca35760405162461bcd60e51b815260206004820152600f60248201526e7075626c6963206e6f74206c69766560881b60448201526064016104d5565b6115b381607554610cb491906121f7565b1115610cd25760405162461bcd60e51b81526004016104d590612163565b33600090815260776020526040902054600290610cf09083906121f7565b1115610d2d5760405162461bcd60e51b815260206004820152600c60248201526b131a5b5a5d08115e18d9595960a21b60448201526064016104d5565b610d3733826112a3565b3360009081526077602052604081208054839290610d569084906121f7565b92505081905550806075600082825461057691906121f7565b61072f838383604051806020016040528060008152506110a4565b6000610d9582611556565b5192915050565b6070546001600160a01b03163314610dc65760405162461bcd60e51b81526004016104d590612180565b607260019054906101000a900460ff1615158115151415610e295760405162461bcd60e51b815260206004820152601f60248201527f69735075626c696320616c726561647920696e2073616d65207374617475730060448201526064016104d5565b607280549115156101000261ff0019909216919091179055565b6060607180546105df90612285565b60006001600160a01b038216610e7b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606d60205260409020546001600160401b031690565b61019081511115610ef35760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e207472616e73666572206d61782034303020746f6b656e730060448201526064016104d5565b60005b815181101561072f57610f16338484848151811061081f5761081f61231b565b80610f20816122c0565b915050610ef6565b6070546001600160a01b03163314610f525760405162461bcd60e51b81526004016104d590612180565b8051610f65906076906020840190611ace565b5050565b6060606b80546105df90612285565b6001600160a01b038216331415610fa25760405163b06307db60e01b815260040160405180910390fd5b336000818152606f602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6070546001600160a01b031633146110385760405162461bcd60e51b81526004016104d590612180565b60725460ff16151581151514156110915760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616c726561647920696e2073616d6520737461747573000000000060448201526064016104d5565b6072805460ff1916911515919091179055565b6110af848484611352565b6001600160a01b0383163b151580156110d157506110cf8484848461167d565b155b156110ef576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611100826112bd565b6111645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104d5565b607161116f83611775565b604051602001611180929190612058565b6040516020818303038152906040529050919050565b6070546001600160a01b031633146111c05760405162461bcd60e51b81526004016104d590612180565b8051610f65906071906020840190611ace565b6060607680546105df90612285565b6070546001600160a01b0316331461120c5760405162461bcd60e51b81526004016104d590612180565b6001600160a01b0381166112475760405162461bcd60e51b8152602060048201526002602482015261030360f41b60448201526064016104d5565b6070546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3607080546001600160a01b0319166001600160a01b0392909216919091179055565b610f65828260405180602001604052806000815250611872565b6000816001111580156112d1575060685482105b80156105ca5750506000908152606c6020526040902054600160e01b900460ff161590565b6000828152606e602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061135d82611556565b9050836001600160a01b031681600001516001600160a01b0316146113945760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113b257506113b2853361046a565b806113cd5750336113c284610662565b6001600160a01b0316145b9050806113ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661141457604051633a954ecd60e21b815260040160405180910390fd5b611420600084876112f6565b6001600160a01b038581166000908152606d60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606c90945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166114f45760685482146114f457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60008261154d858461187f565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611586575060685481105b15611664576000818152606c6020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116625780516001600160a01b0316156115f9579392505050565b50600019016000818152606c6020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561165d579392505050565b6115f9565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116b2903390899088908890600401612113565b602060405180830381600087803b1580156116cc57600080fd5b505af19250505080156116fc575060408051601f3d908101601f191682019092526116f991810190611f89565b60015b611757573d80801561172a576040519150601f19603f3d011682016040523d82523d6000602084013e61172f565b606091505b50805161174f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816117995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c357806117ad816122c0565b91506117bc9050600a8361220f565b915061179d565b6000816001600160401b038111156117dd576117dd612331565b6040519080825280601f01601f191660200182016040528015611807576020820181803683370190505b5090505b841561176d5761181c600183612242565b9150611829600a866122db565b6118349060306121f7565b60f81b8183815181106118495761184961231b565b60200101906001600160f81b031916908160001a90535061186b600a8661220f565b945061180b565b61072f83838360016118cc565b600081815b84518110156118c4576118b0828683815181106118a3576118a361231b565b6020026020010151611a9c565b9150806118bc816122c0565b915050611884565b509392505050565b6068546001600160a01b0385166118f557604051622e076360e81b815260040160405180910390fd5b836119135760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385166000818152606d6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452606c90925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156119c457506001600160a01b0387163b15155b15611a4d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a15600088848060010195508861167d565b611a32576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119ca578260685414611a4857600080fd5b611a93565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611a4e575b50606855611539565b6000818310611ab8576000828152602084905260409020611ac7565b60008381526020839052604090205b9392505050565b828054611ada90612285565b90600052602060002090601f016020900481019282611afc5760008555611b42565b82601f10611b1557805160ff1916838001178555611b42565b82800160010185558215611b42579182015b82811115611b42578251825591602001919060010190611b27565b50611b4e929150611b52565b5090565b5b80821115611b4e5760008155600101611b53565b60006001600160401b03831115611b8057611b80612331565b611b93601f8401601f19166020016121a4565b9050828152838383011115611ba757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bd557600080fd5b919050565b600082601f830112611beb57600080fd5b81356020611c00611bfb836121d4565b6121a4565b80838252828201915082860187848660051b8901011115611c2057600080fd5b60005b85811015611c3f57813584529284019290840190600101611c23565b5090979650505050505050565b80358015158114611bd557600080fd5b600060208284031215611c6e57600080fd5b611ac782611bbe565b60008060408385031215611c8a57600080fd5b611c9383611bbe565b9150611ca160208401611bbe565b90509250929050565b600080600060608486031215611cbf57600080fd5b611cc884611bbe565b9250611cd660208501611bbe565b9150604084013590509250925092565b60008060008060808587031215611cfc57600080fd5b611d0585611bbe565b9350611d1360208601611bbe565b92506040850135915060608501356001600160401b03811115611d3557600080fd5b8501601f81018713611d4657600080fd5b611d5587823560208401611b67565b91505092959194509250565b60008060408385031215611d7457600080fd5b611d7d83611bbe565b915060208301356001600160401b03811115611d9857600080fd5b611da485828601611bda565b9150509250929050565b60008060408385031215611dc157600080fd5b611dca83611bbe565b9150611ca160208401611c4c565b60008060408385031215611deb57600080fd5b611df483611bbe565b946020939093013593505050565b60008060408385031215611e1557600080fd5b82356001600160401b0380821115611e2c57600080fd5b818501915085601f830112611e4057600080fd5b81356020611e50611bfb836121d4565b8083825282820191508286018a848660051b8901011115611e7057600080fd5b600096505b84871015611e9a57611e8681611bbe565b835260019690960195918301918301611e75565b5096505086013592505080821115611eb157600080fd5b50611da485828601611bda565b600080600060408486031215611ed357600080fd5b83356001600160401b0380821115611eea57600080fd5b818601915086601f830112611efe57600080fd5b813581811115611f0d57600080fd5b8760208260051b8501011115611f2257600080fd5b6020928301989097509590910135949350505050565b600060208284031215611f4a57600080fd5b611ac782611c4c565b600060208284031215611f6557600080fd5b5035919050565b600060208284031215611f7e57600080fd5b8135611ac781612347565b600060208284031215611f9b57600080fd5b8151611ac781612347565b600060208284031215611fb857600080fd5b81356001600160401b03811115611fce57600080fd5b8201601f81018413611fdf57600080fd5b61176d84823560208401611b67565b6000806040838503121561200157600080fd5b50508035926020909101359150565b60008151808452612028816020860160208601612259565b601f01601f19169290920160200192915050565b6000815161204e818560208601612259565b9290920192915050565b600080845481600182811c91508083168061207457607f831692505b602080841082141561209457634e487b7160e01b86526022600452602486fd5b8180156120a857600181146120b9576120e6565b60ff198616895284890196506120e6565b60008b81526020902060005b868110156120de5781548b8201529085019083016120c5565b505084890196505b50505050505061210a6120f9828661203c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061214690830184612010565b9695505050505050565b602081526000611ac76020830184612010565b60208082526003908201526211539160ea1b604082015260600190565b6020808252600a908201526927b7363c9027bbb732b960b11b604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156121cc576121cc612331565b604052919050565b60006001600160401b038211156121ed576121ed612331565b5060051b60200190565b6000821982111561220a5761220a6122ef565b500190565b60008261221e5761221e612305565b500490565b600081600019048311821515161561223d5761223d6122ef565b500290565b600082821015612254576122546122ef565b500390565b60005b8381101561227457818101518382015260200161225c565b838111156110ef5750506000910152565b600181811c9082168061229957607f821691505b602082108114156122ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122d4576122d46122ef565b5060010190565b6000826122ea576122ea612305565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f757600080fdfea2646970667358221220fa5ae39a05e4d88b9d7b25dbf30920030a470a1fa2e51b182828c0a2a53da31664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000164e6f6e2d46696e616e6369616c2041647669736f72730000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d533668653852597057417665466e56316b6d61734c426952434d6f396a4d4e6376416b746b736a574a7733782f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c806342842e0e1161010f578063a22cb465116100a2578063df1aa20711610071578063df1aa20714610441578063e8a3d48514610454578063e985e9c51461045c578063f2fde38b1461049857600080fd5b8063a22cb465146103f5578063a8ddf8f614610408578063b88d4fde1461041b578063c87b56dd1461042e57600080fd5b806370a08231116100de57806370a08231146103b45780637c9af616146103c75780637e5b1e24146103da57806395d89b41146103ed57600080fd5b806342842e0e146103735780636352211e14610386578063641c1346146103995780636c0360eb146103ac57600080fd5b80631ade6d9a116101875780632904e6d9116101565780632904e6d9146103125780632a55205a146103255780632db11544146103575780632fc37ab21461036a57600080fd5b80631ade6d9a146102b95780631e7269c5146102cc57806321ff9970146102ec57806323b872dd146102ff57600080fd5b8063095ea7b3116101c3578063095ea7b314610271578063153a1f3e14610284578063166bab951461029757806318160ddd1461029f57600080fd5b8062bc653c146101f457806301ffc9a71461020957806306fdde0314610231578063081812fc14610246575b600080fd5b610207610202366004611f53565b6104ab565b005b61021c610217366004611f6c565b61057e565b60405190151581526020015b60405180910390f35b6102396105d0565b6040516102289190612150565b610259610254366004611f53565b610662565b6040516001600160a01b039091168152602001610228565b61020761027f366004611dd8565b6106a6565b610207610292366004611e02565b610734565b61020761083e565b60695460685403600019015b604051908152602001610228565b6102076102c7366004611dd8565b6108fa565b6102ab6102da366004611c5c565b60776020526000908152604090205481565b6102076102fa366004611f53565b61094a565b61020761030d366004611caa565b610979565b610207610320366004611ebe565b610984565b610338610333366004611fee565b610be3565b604080516001600160a01b039093168352602083019190915201610228565b610207610365366004611f53565b610c1d565b6102ab60735481565b610207610381366004611caa565b610d6f565b610259610394366004611f53565b610d8a565b6102076103a7366004611f38565b610d9c565b610239610e43565b6102ab6103c2366004611c5c565b610e52565b6102076103d5366004611d61565b610ea0565b6102076103e8366004611fa6565b610f28565b610239610f69565b610207610403366004611dae565b610f78565b610207610416366004611f38565b61100e565b610207610429366004611ce6565b6110a4565b61023961043c366004611f53565b6110f5565b61020761044f366004611fa6565b611196565b6102396111d3565b61021c61046a366004611c77565b6001600160a01b039182166000908152606f6020908152604080832093909416825291909152205460ff1690565b6102076104a6366004611c5c565b6111e2565b6070546001600160a01b031633146104de5760405162461bcd60e51b81526004016104d590612180565b60405180910390fd5b60725460ff1661052b5760405162461bcd60e51b815260206004820152601860248201527721bab93932b73a363c9026b4b73a34b7339024b99027b33360411b60448201526064016104d5565b6115b38160755461053c91906121f7565b111561055a5760405162461bcd60e51b81526004016104d590612163565b61056433826112a3565b806075600082825461057691906121f7565b909155505050565b60006001600160e01b031982166380ac58cd60e01b14806105af57506001600160e01b03198216635b5e139f60e01b145b806105ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060606a80546105df90612285565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90612285565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b600061066d826112bd565b61068a576040516333d1c03960e21b815260040160405180910390fd5b506000908152606e60205260409020546001600160a01b031690565b60006106b182610d8a565b9050806001600160a01b0316836001600160a01b031614156106e65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107065750610704813361046a565b155b15610724576040516367d9dca160e11b815260040160405180910390fd5b61072f8383836112f6565b505050565b80518251146107905760405162461bcd60e51b815260206004820152602260248201527f4c656e676874206e6f74206d6174636865642c20496e76616c696420466f726d604482015261185d60f21b60648201526084016104d5565b610190825111156107e35760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e207472616e73666572206d61782034303020746f6b656e730060448201526064016104d5565b60005b825181101561072f5761082c338483815181106108055761080561231b565b602002602001015184848151811061081f5761081f61231b565b6020026020010151610d6f565b80610836816122c0565b9150506107e6565b6070546001600160a01b031633146108685760405162461bcd60e51b81526004016104d590612180565b6066546040516000916001600160a01b03169047908381818185875af1925050503d80600081146108b5576040519150601f19603f3d011682016040523d82523d6000602084013e6108ba565b606091505b50509050806108f75760405162461bcd60e51b815260206004820152600960248201526808cc2d2d8cac840a8f60bb1b60448201526064016104d5565b50565b6070546001600160a01b031633146109245760405162461bcd60e51b81526004016104d590612180565b606680546001600160a01b0319166001600160a01b039390931692909217909155606755565b6070546001600160a01b031633146109745760405162461bcd60e51b81526004016104d590612180565b607355565b61072f838383611352565b60725460ff166109d15760405162461bcd60e51b815260206004820152601860248201527721bab93932b73a363c9026b4b73a34b7339024b99027b33360411b60448201526064016104d5565b607254610100900460ff1615610a1b5760405162461bcd60e51b815260206004820152600f60248201526e15da1a5d195b1a5cdd08115b991959608a1b60448201526064016104d5565b6115b381607554610a2c91906121f7565b1115610a4a5760405162461bcd60e51b81526004016104d590612163565b33600090815260776020526040902054600390610a689083906121f7565b1115610a865760405162461bcd60e51b81526004016104d590612163565b610bb881607454610a9791906121f7565b10610ad05760405162461bcd60e51b815260206004820152600960248201526810dbdb5c1b195d195960ba1b60448201526064016104d5565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b4a848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506073549150849050611540565b610b7f5760405162461bcd60e51b8152602060048201526006602482015265139bdd0815d360d21b60448201526064016104d5565b610b8933836112a3565b8160746000828254610b9b91906121f7565b90915550503360009081526077602052604081208054849290610bbf9084906121f7565b925050819055508160756000828254610bd891906121f7565b909155505050505050565b60665460675460009182916001600160a01b039091169061271090610c089086612223565b610c12919061220f565b915091509250929050565b60725460ff16610c5a5760405162461bcd60e51b815260206004820152600860248201526736b4b73a1037b33360c11b60448201526064016104d5565b607254610100900460ff16610ca35760405162461bcd60e51b815260206004820152600f60248201526e7075626c6963206e6f74206c69766560881b60448201526064016104d5565b6115b381607554610cb491906121f7565b1115610cd25760405162461bcd60e51b81526004016104d590612163565b33600090815260776020526040902054600290610cf09083906121f7565b1115610d2d5760405162461bcd60e51b815260206004820152600c60248201526b131a5b5a5d08115e18d9595960a21b60448201526064016104d5565b610d3733826112a3565b3360009081526077602052604081208054839290610d569084906121f7565b92505081905550806075600082825461057691906121f7565b61072f838383604051806020016040528060008152506110a4565b6000610d9582611556565b5192915050565b6070546001600160a01b03163314610dc65760405162461bcd60e51b81526004016104d590612180565b607260019054906101000a900460ff1615158115151415610e295760405162461bcd60e51b815260206004820152601f60248201527f69735075626c696320616c726561647920696e2073616d65207374617475730060448201526064016104d5565b607280549115156101000261ff0019909216919091179055565b6060607180546105df90612285565b60006001600160a01b038216610e7b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606d60205260409020546001600160401b031690565b61019081511115610ef35760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e207472616e73666572206d61782034303020746f6b656e730060448201526064016104d5565b60005b815181101561072f57610f16338484848151811061081f5761081f61231b565b80610f20816122c0565b915050610ef6565b6070546001600160a01b03163314610f525760405162461bcd60e51b81526004016104d590612180565b8051610f65906076906020840190611ace565b5050565b6060606b80546105df90612285565b6001600160a01b038216331415610fa25760405163b06307db60e01b815260040160405180910390fd5b336000818152606f602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6070546001600160a01b031633146110385760405162461bcd60e51b81526004016104d590612180565b60725460ff16151581151514156110915760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616c726561647920696e2073616d6520737461747573000000000060448201526064016104d5565b6072805460ff1916911515919091179055565b6110af848484611352565b6001600160a01b0383163b151580156110d157506110cf8484848461167d565b155b156110ef576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611100826112bd565b6111645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104d5565b607161116f83611775565b604051602001611180929190612058565b6040516020818303038152906040529050919050565b6070546001600160a01b031633146111c05760405162461bcd60e51b81526004016104d590612180565b8051610f65906071906020840190611ace565b6060607680546105df90612285565b6070546001600160a01b0316331461120c5760405162461bcd60e51b81526004016104d590612180565b6001600160a01b0381166112475760405162461bcd60e51b8152602060048201526002602482015261030360f41b60448201526064016104d5565b6070546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3607080546001600160a01b0319166001600160a01b0392909216919091179055565b610f65828260405180602001604052806000815250611872565b6000816001111580156112d1575060685482105b80156105ca5750506000908152606c6020526040902054600160e01b900460ff161590565b6000828152606e602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061135d82611556565b9050836001600160a01b031681600001516001600160a01b0316146113945760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113b257506113b2853361046a565b806113cd5750336113c284610662565b6001600160a01b0316145b9050806113ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661141457604051633a954ecd60e21b815260040160405180910390fd5b611420600084876112f6565b6001600160a01b038581166000908152606d60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606c90945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166114f45760685482146114f457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60008261154d858461187f565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611586575060685481105b15611664576000818152606c6020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116625780516001600160a01b0316156115f9579392505050565b50600019016000818152606c6020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561165d579392505050565b6115f9565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116b2903390899088908890600401612113565b602060405180830381600087803b1580156116cc57600080fd5b505af19250505080156116fc575060408051601f3d908101601f191682019092526116f991810190611f89565b60015b611757573d80801561172a576040519150601f19603f3d011682016040523d82523d6000602084013e61172f565b606091505b50805161174f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816117995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c357806117ad816122c0565b91506117bc9050600a8361220f565b915061179d565b6000816001600160401b038111156117dd576117dd612331565b6040519080825280601f01601f191660200182016040528015611807576020820181803683370190505b5090505b841561176d5761181c600183612242565b9150611829600a866122db565b6118349060306121f7565b60f81b8183815181106118495761184961231b565b60200101906001600160f81b031916908160001a90535061186b600a8661220f565b945061180b565b61072f83838360016118cc565b600081815b84518110156118c4576118b0828683815181106118a3576118a361231b565b6020026020010151611a9c565b9150806118bc816122c0565b915050611884565b509392505050565b6068546001600160a01b0385166118f557604051622e076360e81b815260040160405180910390fd5b836119135760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385166000818152606d6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452606c90925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156119c457506001600160a01b0387163b15155b15611a4d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a15600088848060010195508861167d565b611a32576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119ca578260685414611a4857600080fd5b611a93565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611a4e575b50606855611539565b6000818310611ab8576000828152602084905260409020611ac7565b60008381526020839052604090205b9392505050565b828054611ada90612285565b90600052602060002090601f016020900481019282611afc5760008555611b42565b82601f10611b1557805160ff1916838001178555611b42565b82800160010185558215611b42579182015b82811115611b42578251825591602001919060010190611b27565b50611b4e929150611b52565b5090565b5b80821115611b4e5760008155600101611b53565b60006001600160401b03831115611b8057611b80612331565b611b93601f8401601f19166020016121a4565b9050828152838383011115611ba757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bd557600080fd5b919050565b600082601f830112611beb57600080fd5b81356020611c00611bfb836121d4565b6121a4565b80838252828201915082860187848660051b8901011115611c2057600080fd5b60005b85811015611c3f57813584529284019290840190600101611c23565b5090979650505050505050565b80358015158114611bd557600080fd5b600060208284031215611c6e57600080fd5b611ac782611bbe565b60008060408385031215611c8a57600080fd5b611c9383611bbe565b9150611ca160208401611bbe565b90509250929050565b600080600060608486031215611cbf57600080fd5b611cc884611bbe565b9250611cd660208501611bbe565b9150604084013590509250925092565b60008060008060808587031215611cfc57600080fd5b611d0585611bbe565b9350611d1360208601611bbe565b92506040850135915060608501356001600160401b03811115611d3557600080fd5b8501601f81018713611d4657600080fd5b611d5587823560208401611b67565b91505092959194509250565b60008060408385031215611d7457600080fd5b611d7d83611bbe565b915060208301356001600160401b03811115611d9857600080fd5b611da485828601611bda565b9150509250929050565b60008060408385031215611dc157600080fd5b611dca83611bbe565b9150611ca160208401611c4c565b60008060408385031215611deb57600080fd5b611df483611bbe565b946020939093013593505050565b60008060408385031215611e1557600080fd5b82356001600160401b0380821115611e2c57600080fd5b818501915085601f830112611e4057600080fd5b81356020611e50611bfb836121d4565b8083825282820191508286018a848660051b8901011115611e7057600080fd5b600096505b84871015611e9a57611e8681611bbe565b835260019690960195918301918301611e75565b5096505086013592505080821115611eb157600080fd5b50611da485828601611bda565b600080600060408486031215611ed357600080fd5b83356001600160401b0380821115611eea57600080fd5b818601915086601f830112611efe57600080fd5b813581811115611f0d57600080fd5b8760208260051b8501011115611f2257600080fd5b6020928301989097509590910135949350505050565b600060208284031215611f4a57600080fd5b611ac782611c4c565b600060208284031215611f6557600080fd5b5035919050565b600060208284031215611f7e57600080fd5b8135611ac781612347565b600060208284031215611f9b57600080fd5b8151611ac781612347565b600060208284031215611fb857600080fd5b81356001600160401b03811115611fce57600080fd5b8201601f81018413611fdf57600080fd5b61176d84823560208401611b67565b6000806040838503121561200157600080fd5b50508035926020909101359150565b60008151808452612028816020860160208601612259565b601f01601f19169290920160200192915050565b6000815161204e818560208601612259565b9290920192915050565b600080845481600182811c91508083168061207457607f831692505b602080841082141561209457634e487b7160e01b86526022600452602486fd5b8180156120a857600181146120b9576120e6565b60ff198616895284890196506120e6565b60008b81526020902060005b868110156120de5781548b8201529085019083016120c5565b505084890196505b50505050505061210a6120f9828661203c565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061214690830184612010565b9695505050505050565b602081526000611ac76020830184612010565b60208082526003908201526211539160ea1b604082015260600190565b6020808252600a908201526927b7363c9027bbb732b960b11b604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156121cc576121cc612331565b604052919050565b60006001600160401b038211156121ed576121ed612331565b5060051b60200190565b6000821982111561220a5761220a6122ef565b500190565b60008261221e5761221e612305565b500490565b600081600019048311821515161561223d5761223d6122ef565b500290565b600082821015612254576122546122ef565b500390565b60005b8381101561227457818101518382015260200161225c565b838111156110ef5750506000910152565b600181811c9082168061229957607f821691505b602082108114156122ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122d4576122d46122ef565b5060010190565b6000826122ea576122ea612305565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f757600080fdfea2646970667358221220fa5ae39a05e4d88b9d7b25dbf30920030a470a1fa2e51b182828c0a2a53da31664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000164e6f6e2d46696e616e6369616c2041647669736f72730000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d533668653852597057417665466e56316b6d61734c426952434d6f396a4d4e6376416b746b736a574a7733782f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Non-Financial Advisors
Arg [1] : _symbol (string): NFA
Arg [2] : _mUri (string): https://ipfs.io/ipfs/QmS6he8RYpWAveFnV1kmasLBiRCMo9jMNcvAktksjWJw3x/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 4e6f6e2d46696e616e6369616c2041647669736f727300000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4e46410000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d533668653852597057
Arg [9] : 417665466e56316b6d61734c426952434d6f396a4d4e6376416b746b736a574a
Arg [10] : 7733782f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

58287:4525:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61227:251;;;;;;:::i;:::-;;:::i;:::-;;40485:349;;;;;;:::i;:::-;;:::i;:::-;;;10939:14:1;;10932:22;10914:41;;10902:2;10887:18;40485:349:0;;;;;;;;43642:100;;;:::i;:::-;;;;;;;:::i;45145:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9958:32:1;;;9940:51;;9928:2;9913:18;45145:204:0;9794:203:1;44708:371:0;;;;;;:::i;:::-;;:::i;61670:370::-;;;;;;:::i;:::-;;:::i;61486:172::-;;;:::i;39734:303::-;39988:12;;39972:13;;:28;-1:-1:-1;;39972:46:0;39734:303;;;11112:25:1;;;11100:2;11085:18;39734:303:0;10966:177:1;59353:136:0;;;;;;:::i;:::-;;:::i;58624:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;59497:88;;;;;;:::i;:::-;;:::i;46010:170::-;;;;;;:::i;:::-;;:::i;60165:659::-;;;;;;:::i;:::-;;:::i;36925:235::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;10687:32:1;;;10669:51;;10751:2;10736:18;;10729:34;;;;10642:18;36925:235:0;10495:274:1;60832:387:0;;;;;;:::i;:::-;;:::i;58489:31::-;;;;;;46251:185;;;;;;:::i;:::-;;:::i;43450:125::-;;;;;;:::i;:::-;;:::i;59179:166::-;;;;;;:::i;:::-;;:::i;62346:91::-;;;:::i;40898:206::-;;;;;;:::i;:::-;;:::i;62052:286::-;;;;;;:::i;:::-;;:::i;60039:114::-;;;;;;:::i;:::-;;:::i;43811:104::-;;;:::i;45421:287::-;;;;;;:::i;:::-;;:::i;59015:156::-;;;;;;:::i;:::-;;:::i;46507:369::-;;;;;;:::i;:::-;;:::i;62555:254::-;;;;;;:::i;:::-;;:::i;59919:112::-;;;;;;:::i;:::-;;:::i;62445:98::-;;;:::i;45779:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;45900:25:0;;;45876:4;45900:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45779:164;59701:210;;;;;;:::i;:::-;;:::i;61227:251::-;59648:6;;-1:-1:-1;;;;;59648:6:0;59634:10;:20;59626:43;;;;-1:-1:-1;;;59626:43:0;;;;;;;:::i;:::-;;;;;;;;;61301:7:::1;::::0;::::1;;61293:44;;;::::0;-1:-1:-1;;;61293:44:0;;12245:2:1;61293:44:0::1;::::0;::::1;12227:21:1::0;12284:2;12264:18;;;12257:30;-1:-1:-1;;;12303:18:1;;;12296:54;12367:18;;61293:44:0::1;12043:348:1::0;61293:44:0::1;61381:4;61368:9;61356:11;;:21;;;;:::i;:::-;:29;;61348:44;;;;-1:-1:-1::0;;;61348:44:0::1;;;;;;;:::i;:::-;61403:32;61413:10;61425:9;61403;:32::i;:::-;61461:9;61446:11;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;61227:251:0:o;40485:349::-;40609:4;-1:-1:-1;;;;;;40646:51:0;;-1:-1:-1;;;40646:51:0;;:127;;-1:-1:-1;;;;;;;40714:59:0;;-1:-1:-1;;;40714:59:0;40646:127;:180;;;-1:-1:-1;;;;;;;;;;29248:51:0;;;40790:36;40626:200;40485:349;-1:-1:-1;;40485:349:0:o;43642:100::-;43696:13;43729:5;43722:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43642:100;:::o;45145:204::-;45213:7;45238:16;45246:7;45238;:16::i;:::-;45233:64;;45263:34;;-1:-1:-1;;;45263:34:0;;;;;;;;;;;45233:64;-1:-1:-1;45317:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45317:24:0;;45145:204::o;44708:371::-;44781:13;44797:24;44813:7;44797:15;:24::i;:::-;44781:40;;44842:5;-1:-1:-1;;;;;44836:11:0;:2;-1:-1:-1;;;;;44836:11:0;;44832:48;;;44856:24;;-1:-1:-1;;;44856:24:0;;;;;;;;;;;44832:48;25633:10;-1:-1:-1;;;;;44897:21:0;;;;;;:63;;-1:-1:-1;44923:37:0;44940:5;25633:10;45779:164;:::i;44923:37::-;44922:38;44897:63;44893:138;;;44984:35;;-1:-1:-1;;;44984:35:0;;;;;;;;;;;44893:138;45043:28;45052:2;45056:7;45065:5;45043:8;:28::i;:::-;44770:309;44708:371;;:::o;61670:370::-;61786:8;:15;61773:2;:9;:28;61764:76;;;;-1:-1:-1;;;61764:76:0;;15407:2:1;61764:76:0;;;15389:21:1;15446:2;15426:18;;;15419:30;15485:34;15465:18;;;15458:62;-1:-1:-1;;;15536:18:1;;;15529:32;15578:19;;61764:76:0;15205:398:1;61764:76:0;61873:3;61860:2;:9;:16;;61851:61;;;;-1:-1:-1;;;61851:61:0;;16140:2:1;61851:61:0;;;16122:21:1;16179:2;16159:18;;;16152:30;16218:33;16198:18;;;16191:61;16269:18;;61851:61:0;15938:355:1;61851:61:0;61927:6;61923:110;61943:2;:9;61939:1;:13;61923:110;;;61973:48;61990:10;62002:2;62005:1;62002:5;;;;;;;;:::i;:::-;;;;;;;62009:8;62018:1;62009:11;;;;;;;;:::i;:::-;;;;;;;61973:16;:48::i;:::-;61954:3;;;;:::i;:::-;;;;61923:110;;61486:172;59648:6;;-1:-1:-1;;;;;59648:6:0;59634:10;:20;59626:43;;;;-1:-1:-1;;;59626:43:0;;;;;;;:::i;:::-;61562:9:::1;::::0;:48:::1;::::0;61544:12:::1;::::0;-1:-1:-1;;;;;61562:9:0::1;::::0;61584:21:::1;::::0;61544:12;61562:48;61544:12;61562:48;61584:21;61562:9;:48:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61543:67;;;61629:7;61621:29;;;::::0;-1:-1:-1;;;61621:29:0;;13979:2:1;61621:29:0::1;::::0;::::1;13961:21:1::0;14018:1;13998:18;;;13991:29;-1:-1:-1;;;14036:18:1;;;14029:39;14085:18;;61621:29:0::1;13777:332:1::0;61621:29:0::1;61532:126;61486:172::o:0;59353:136::-;59648:6;;-1:-1:-1;;;;;59648:6:0;59634:10;:20;59626:43;;;;-1:-1:-1;;;59626:43:0;;;;;;;:::i;:::-;59429:9:::1;:23:::0;;-1:-1:-1;;;;;;59429:23:0::1;-1:-1:-1::0;;;;;59429:23:0;;;::::1;::::0;;;::::1;::::0;;;59463:11:::1;:18:::0;59353:136::o;59497:88::-;59648:6;;-1:-1:-1;;;;;59648:6:0;59634:10;:20;59626:43;;;;-1:-1:-1;;;59626:43:0;;;;;;;:::i;:::-;59558:11:::1;:19:::0;59497:88::o;46010:170::-;46144:28;46154:4;46160:2;46164:7;46144:9;:28::i;60165:659::-;60265:7;;;;60257:44;;;;-1:-1:-1;;;60257:44:0;;12245:2:1;60257:44:0;;;12227:21:1;12284:2;12264:18;;;12257:30;-1:-1:-1;;;12303:18:1;;;12296:54;12367:18;;60257:44:0;12043:348:1;60257:44:0;60321:9;;;;;;;60320:10;60312:37;;;;-1:-1:-1;;;60312:37:0;;14316:2:1;60312:37:0;;;14298:21:1;14355:2;14335:18;;;14328:30;-1:-1:-1;;;14374:18:1;;;14367:45;14429:18;;60312:37:0;14114:339:1;60312:37:0;60393:4;60380:9;60368:11;;:21;;;;:::i;:::-;:29;;60360:44;;;;-1:-1:-1;;;60360:44:0;;;;;;;:::i;:::-;60430:10;60423:18;;;;:6;:18;;;;;;60455:1;;60423:28;;60442:9;;60423:28;:::i;:::-;:33;;60415:48;;;;-1:-1:-1;;;60415:48:0;;;;;;;:::i;:::-;60503:4;60491:9;60482:8;;:18;;;;:::i;:::-;:25;60474:47;;;;-1:-1:-1;;;60474:47:0;;11574:2:1;60474:47:0;;;11556:21:1;11613:1;11593:18;;;11586:29;-1:-1:-1;;;11631:18:1;;;11624:39;11680:18;;60474:47:0;11372:332:1;60474:47:0;60557:28;;-1:-1:-1;;60574:10:0;8193:2:1;8189:15;8185:53;60557:28:0;;;8173:66:1;60532:12:0;;8255::1;;60557:28:0;;;;;;;;;;;;60547:39;;;;;;60532:54;;60605:50;60624:12;;60605:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;60637:11:0;;;-1:-1:-1;60650:4:0;;-1:-1:-1;60605:18:0;:50::i;:::-;60597:68;;;;-1:-1:-1;;;60597:68:0;;11911:2:1;60597:68:0;;;11893:21:1;11950:1;11930:18;;;11923:29;-1:-1:-1;;;11968:18:1;;;11961:36;12014:18;;60597:68:0;11709:329:1;60597:68:0;60676:32;60686:10;60698:9;60676;:32::i;:::-;60730:9;60719:8;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;60757:10:0;60750:18;;;;:6;:18;;;;;:31;;60772:9;;60750:18;:31;;60772:9;;60750:31;:::i;:::-;;;;;;;;60807:9;60792:11;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;60165:659:0:o;36925:235::-;37111:9;;37131:11;;37046:16;;;;-1:-1:-1;;;;;37111:9:0;;;;37146:5;;37123:19;;:5;:19;:::i;:::-;37122:29;;;;:::i;:::-;37103:49;;;;36925:235;;;;;:::o;60832:387::-;60898:7;;;;60890:28;;;;-1:-1:-1;;;60890:28:0;;12598:2:1;60890:28:0;;;12580:21:1;12637:1;12617:18;;;12610:29;-1:-1:-1;;;12655:18:1;;;12648:38;12703:18;;60890:28:0;12396:331:1;60890:28:0;60937:9;;;;;;;60929:37;;;;-1:-1:-1;;;60929:37:0;;12934:2:1;60929:37:0;;;12916:21:1;12973:2;12953:18;;;12946:30;-1:-1:-1;;;12992:18:1;;;12985:45;13047:18;;60929:37:0;12732:339:1;60929:37:0;61010:4;60997:9;60985:11;;:21;;;;:::i;:::-;:29;;60977:44;;;;-1:-1:-1;;;60977:44:0;;;;;;;:::i;:::-;61047:10;61040:18;;;;:6;:18;;;;;;61072:1;;61040:28;;61059:9;;61040:28;:::i;:::-;:33;;61032:59;;;;-1:-1:-1;;;61032:59:0;;13278:2:1;61032:59:0;;;13260:21:1;13317:2;13297:18;;;13290:30;-1:-1:-1;;;13336:18:1;;;13329:42;13388:18;;61032:59:0;13076:336:1;61032:59:0;61102:32;61112:10;61124:9;61102;:32::i;:::-;61152:10;61145:18;;;;:6;:18;;;;;:31;;61167:9;;61145:18;:31;;61167:9;;61145:31;:::i;:::-;;;;;;;;61202:9;61187:11;;:24;;;;;;;:::i;46251:185::-;46389:39;46406:4;46412:2;46416:7;46389:39;;;;;;;;;;;;:16;:39::i;43450:125::-;43514:7;43541:21;43554:7;43541:12;:21::i;:::-;:26;;43450:125;-1:-1:-1;;43450:125:0:o;59179:166::-;59648:6;;-1:-1:-1;;;;;59648:6:0;59634:10;:20;59626:43;;;;-1:-1:-1;;;59626:43:0;;;;;;;:::i;:::-;59266:9:::1;;;;;;;;;;;59255:20;;:7;:20;;;;59247:63;;;::::0;-1:-1:-1;;;59247:63:0;;13619:2:1;59247:63:0::1;::::0;::::1;13601:21:1::0;13658:2;13638:18;;;13631:30;13697:33;13677:18;;;13670:61;13748:18;;59247:63:0::1;13417:355:1::0;59247:63:0::1;59318:9;:19:::0;;;::::1;;;;-1:-1:-1::0;;59318:19:0;;::::1;::::0;;;::::1;::::0;;59179:166::o;62346:91::-;62388:13;62421:8;62414:15;;;;;:::i;40898:206::-;40962:7;-1:-1:-1;;;;;40986:19:0;;40982:60;;41014:28;;-1:-1:-1;;;41014:28:0;;;;;;;;;;;40982:60;-1:-1:-1;;;;;;41068:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;41068:27:0;;40898:206::o;62052:286::-;62168:3;62149:8;:15;:22;;62140:67;;;;-1:-1:-1;;;62140:67:0;;16140:2:1;62140:67:0;;;16122:21:1;16179:2;16159:18;;;16152:30;16218:33;16198:18;;;16191:61;16269:18;;62140:67:0;15938:355:1;62140:67:0;62222:6;62218:113;62238:8;:15;62234:1;:19;62218:113;;;62274:45;62291:10;62303:2;62307:8;62316:1;62307:11;;;;;;;;:::i;62274:45::-;62255:3;;;;:::i;:::-;;;;62218:113;;60039:114;59648:6;;-1:-1:-1;;;;;59648:6:0;59634:10;:20;59626:43;;;;-1:-1:-1;;;59626:43:0;;;;;;;:::i;:::-;60125:20;;::::1;::::0;:12:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60039:114:::0;:::o;43811:104::-;43867:13;43900:7;43893:14;;;;;:::i;45421:287::-;-1:-1:-1;;;;;45520:24:0;;25633:10;45520:24;45516:54;;;45553:17;;-1:-1:-1;;;45553:17:0;;;;;;;;;;;45516:54;25633:10;45583:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45583:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45583:53:0;;;;;;;;;;45652:48;;10914:41:1;;;45583:42:0;;25633:10;45652:48;;10887:18:1;45652:48:0;;;;;;;45421:287;;:::o;59015:156::-;59648:6;;-1:-1:-1;;;;;59648:6:0;59634:10;:20;59626:43;;;;-1:-1:-1;;;59626:43:0;;;;;;;:::i;:::-;59100:7:::1;::::0;::::1;;59089:18;;::::0;::::1;;;;59081:57;;;::::0;-1:-1:-1;;;59081:57:0;;16500:2:1;59081:57:0::1;::::0;::::1;16482:21:1::0;16539:2;16519:18;;;16512:30;16578:29;16558:18;;;16551:57;16625:18;;59081:57:0::1;16298:351:1::0;59081:57:0::1;59146:7;:17:::0;;-1:-1:-1;;59146:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59015:156::o;46507:369::-;46674:28;46684:4;46690:2;46694:7;46674:9;:28::i;:::-;-1:-1:-1;;;;;46717:13:0;;12818:19;:23;;46717:76;;;;;46737:56;46768:4;46774:2;46778:7;46787:5;46737:30;:56::i;:::-;46736:57;46717:76;46713:156;;;46817:40;;-1:-1:-1;;;46817:40:0;;;;;;;;;;;46713:156;46507:369;;;;:::o;62555:254::-;62620:13;62654:16;62662:7;62654;:16::i;:::-;62646:76;;;;-1:-1:-1;;;62646:76:0;;14660:2:1;62646:76:0;;;14642:21:1;14699:2;14679:18;;;14672:30;14738:34;14718:18;;;14711:62;-1:-1:-1;;;14789:18:1;;;14782:45;14844:19;;62646:76:0;14458:411:1;62646:76:0;62764:8;62773:18;:7;:16;:18::i;:::-;62747:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62733:68;;62555:254;;;:::o;59919:112::-;59648:6;;-1:-1:-1;;;;;59648:6:0;59634:10;:20;59626:43;;;;-1:-1:-1;;;59626:43:0;;;;;;;:::i;:::-;60004:19;;::::1;::::0;:8:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;62445:98::-:0;62491:13;62523:12;62516:19;;;;;:::i;59701:210::-;59648:6;;-1:-1:-1;;;;;59648:6:0;59634:10;:20;59626:43;;;;-1:-1:-1;;;59626:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59792:22:0;::::1;59784:37;;;::::0;-1:-1:-1;;;59784:37:0;;15810:2:1;59784:37:0::1;::::0;::::1;15792:21:1::0;15849:1;15829:18;;;15822:29;-1:-1:-1;;;15867:18:1;;;15860:32;15909:18;;59784:37:0::1;15608:325:1::0;59784:37:0::1;59858:6;::::0;59837:38:::1;::::0;-1:-1:-1;;;;;59837:38:0;;::::1;::::0;59858:6:::1;::::0;59837:38:::1;::::0;59858:6:::1;::::0;59837:38:::1;59886:6;:17:::0;;-1:-1:-1;;;;;;59886:17:0::1;-1:-1:-1::0;;;;;59886:17:0;;;::::1;::::0;;;::::1;::::0;;59701:210::o;47326:104::-;47395:27;47405:2;47409:8;47395:27;;;;;;;;;;;;:9;:27::i;47131:187::-;47188:4;47231:7;39591:1;47212:26;;:53;;;;;47252:13;;47242:7;:23;47212:53;:98;;;;-1:-1:-1;;47283:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;47283:27:0;;;;47282:28;;47131:187::o;55301:196::-;55416:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;55416:29:0;-1:-1:-1;;;;;55416:29:0;;;;;;;;;55461:28;;55416:24;;55461:28;;;;;;;55301:196;;;:::o;50244:2130::-;50359:35;50397:21;50410:7;50397:12;:21::i;:::-;50359:59;;50457:4;-1:-1:-1;;;;;50435:26:0;:13;:18;;;-1:-1:-1;;;;;50435:26:0;;50431:67;;50470:28;;-1:-1:-1;;;50470:28:0;;;;;;;;;;;50431:67;50511:22;25633:10;-1:-1:-1;;;;;50537:20:0;;;;:73;;-1:-1:-1;50574:36:0;50591:4;25633:10;45779:164;:::i;50574:36::-;50537:126;;;-1:-1:-1;25633:10:0;50627:20;50639:7;50627:11;:20::i;:::-;-1:-1:-1;;;;;50627:36:0;;50537:126;50511:153;;50682:17;50677:66;;50708:35;;-1:-1:-1;;;50708:35:0;;;;;;;;;;;50677:66;-1:-1:-1;;;;;50758:16:0;;50754:52;;50783:23;;-1:-1:-1;;;50783:23:0;;;;;;;;;;;50754:52;50927:35;50944:1;50948:7;50957:4;50927:8;:35::i;:::-;-1:-1:-1;;;;;51258:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;51258:31:0;;;-1:-1:-1;;;;;51258:31:0;;;-1:-1:-1;;51258:31:0;;;;;;;51304:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51304:29:0;;;;;;;;;;;51384:20;;;:11;:20;;;;;;51419:18;;-1:-1:-1;;;;;;51452:49:0;;;;-1:-1:-1;;;51485:15:0;51452:49;;;;;;;;;;51775:11;;51835:24;;;;;51878:13;;51384:20;;51835:24;;51878:13;51874:384;;52088:13;;52073:11;:28;52069:174;;52126:20;;52195:28;;;;-1:-1:-1;;;;;52169:54:0;-1:-1:-1;;;52169:54:0;-1:-1:-1;;;;;;52169:54:0;;;-1:-1:-1;;;;;52126:20:0;;52169:54;;;;52069:174;51233:1036;;;52305:7;52301:2;-1:-1:-1;;;;;52286:27:0;52295:4;-1:-1:-1;;;;;52286:27:0;;;;;;;;;;;52324:42;50348:2026;;50244:2130;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;42279:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;42390:7:0;;39591:1;42439:23;;:47;;;;;42473:13;;42466:4;:20;42439:47;42435:886;;;42507:31;42541:17;;;:11;:17;;;;;;;;;42507:51;;;;;;;;;-1:-1:-1;;;;;42507:51:0;;;;-1:-1:-1;;;42507:51:0;;-1:-1:-1;;;;;42507:51:0;;;;;;;;-1:-1:-1;;;42507:51:0;;;;;;;;;;;;;;42577:729;;42627:14;;-1:-1:-1;;;;;42627:28:0;;42623:101;;42691:9;42279:1109;-1:-1:-1;;;42279:1109:0:o;42623:101::-;-1:-1:-1;;;43066:6:0;43111:17;;;;:11;:17;;;;;;;;;43099:29;;;;;;;;;-1:-1:-1;;;;;43099:29:0;;;;;-1:-1:-1;;;43099:29:0;;-1:-1:-1;;;;;43099:29:0;;;;;;;;-1:-1:-1;;;43099:29:0;;;;;;;;;;;;;43159:28;43155:109;;43227:9;42279:1109;-1:-1:-1;;;42279:1109:0:o;43155:109::-;43026:261;;;42488:833;42435:886;43349:31;;-1:-1:-1;;;43349:31:0;;;;;;;;;;;55989:667;56173:72;;-1:-1:-1;;;56173:72:0;;56152:4;;-1:-1:-1;;;;;56173:36:0;;;;;:72;;25633:10;;56224:4;;56230:7;;56239:5;;56173:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56173:72:0;;;;;;;;-1:-1:-1;;56173:72:0;;;;;;;;;;;;:::i;:::-;;;56169:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56407:13:0;;56403:235;;56453:40;;-1:-1:-1;;;56453:40:0;;;;;;;;;;;56403:235;56596:6;56590:13;56581:6;56577:2;56573:15;56566:38;56169:480;-1:-1:-1;;;;;;56292:55:0;-1:-1:-1;;;56292:55:0;;-1:-1:-1;56169:480:0;55989:667;;;;;;:::o;9189:723::-;9245:13;9466:10;9462:53;;-1:-1:-1;;9493:10:0;;;;;;;;;;;;-1:-1:-1;;;9493:10:0;;;;;9189:723::o;9462:53::-;9540:5;9525:12;9581:78;9588:9;;9581:78;;9614:8;;;;:::i;:::-;;-1:-1:-1;9637:10:0;;-1:-1:-1;9645:2:0;9637:10;;:::i;:::-;;;9581:78;;;9669:19;9701:6;-1:-1:-1;;;;;9691:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9691:17:0;;9669:39;;9719:154;9726:10;;9719:154;;9753:11;9763:1;9753:11;;:::i;:::-;;-1:-1:-1;9822:10:0;9830:2;9822:5;:10;:::i;:::-;9809:24;;:2;:24;:::i;:::-;9796:39;;9779:6;9786;9779:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9779:56:0;;;;;;;;-1:-1:-1;9850:11:0;9859:2;9850:11;;:::i;:::-;;;9719:154;;47793:163;47916:32;47922:2;47926:8;47936:5;47943:4;47916:5;:32::i;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;;-1:-1:-1;2362:12:0;2086:296;-1:-1:-1;;;2086:296:0:o;48215:1775::-;48377:13;;-1:-1:-1;;;;;48405:16:0;;48401:48;;48430:19;;-1:-1:-1;;;48430:19:0;;;;;;;;;;;48401:48;48464:13;48460:44;;48486:18;;-1:-1:-1;;;48486:18:0;;;;;;;;;;;48460:44;-1:-1:-1;;;;;48855:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;48914:49:0;;-1:-1:-1;;;;;48855:44:0;;;;;;;48914:49;;;;-1:-1:-1;;48855:44:0;;;;;;48914:49;;;;;;;;;;;;;;;;48980:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;49030:66:0;;;;-1:-1:-1;;;49080:15:0;49030:66;;;;;;;;;;48980:25;49177:23;;;49221:4;:23;;;;-1:-1:-1;;;;;;49229:13:0;;12818:19;:23;;49229:15;49217:641;;;49265:314;49296:38;;49321:12;;-1:-1:-1;;;;;49296:38:0;;;49313:1;;49296:38;;49313:1;;49296:38;49362:69;49401:1;49405:2;49409:14;;;;;;49425:5;49362:30;:69::i;:::-;49357:174;;49467:40;;-1:-1:-1;;;49467:40:0;;;;;;;;;;;49357:174;49574:3;49558:12;:19;;49265:314;;49660:12;49643:13;;:29;49639:43;;49674:8;;;49639:43;49217:641;;;49723:120;49754:40;;49779:14;;;;;-1:-1:-1;;;;;49754:40:0;;;49771:1;;49754:40;;49771:1;;49754:40;49838:3;49822:12;:19;;49723:120;;49217:641;-1:-1:-1;49872:13:0;:28;49922:60;46507:369;8293:149;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8391:20;8376:58;8293:149;-1:-1:-1;;;8293:149:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:160::-;1346:20;;1402:13;;1395:21;1385:32;;1375:60;;1431:1;1428;1421:12;1446:186;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1597:29;1616:9;1597:29;:::i;1637:260::-;1705:6;1713;1766:2;1754:9;1745:7;1741:23;1737:32;1734:52;;;1782:1;1779;1772:12;1734:52;1805:29;1824:9;1805:29;:::i;:::-;1795:39;;1853:38;1887:2;1876:9;1872:18;1853:38;:::i;:::-;1843:48;;1637:260;;;;;:::o;1902:328::-;1979:6;1987;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;;2135:38;2169:2;2158:9;2154:18;2135:38;:::i;:::-;2125:48;;2220:2;2209:9;2205:18;2192:32;2182:42;;1902:328;;;;;:::o;2235:666::-;2330:6;2338;2346;2354;2407:3;2395:9;2386:7;2382:23;2378:33;2375:53;;;2424:1;2421;2414:12;2375:53;2447:29;2466:9;2447:29;:::i;:::-;2437:39;;2495:38;2529:2;2518:9;2514:18;2495:38;:::i;:::-;2485:48;;2580:2;2569:9;2565:18;2552:32;2542:42;;2635:2;2624:9;2620:18;2607:32;-1:-1:-1;;;;;2654:6:1;2651:30;2648:50;;;2694:1;2691;2684:12;2648:50;2717:22;;2770:4;2762:13;;2758:27;-1:-1:-1;2748:55:1;;2799:1;2796;2789:12;2748:55;2822:73;2887:7;2882:2;2869:16;2864:2;2860;2856:11;2822:73;:::i;:::-;2812:83;;;2235:666;;;;;;;:::o;2906:422::-;2999:6;3007;3060:2;3048:9;3039:7;3035:23;3031:32;3028:52;;;3076:1;3073;3066:12;3028:52;3099:29;3118:9;3099:29;:::i;:::-;3089:39;;3179:2;3168:9;3164:18;3151:32;-1:-1:-1;;;;;3198:6:1;3195:30;3192:50;;;3238:1;3235;3228:12;3192:50;3261:61;3314:7;3305:6;3294:9;3290:22;3261:61;:::i;:::-;3251:71;;;2906:422;;;;;:::o;3333:254::-;3398:6;3406;3459:2;3447:9;3438:7;3434:23;3430:32;3427:52;;;3475:1;3472;3465:12;3427:52;3498:29;3517:9;3498:29;:::i;:::-;3488:39;;3546:35;3577:2;3566:9;3562:18;3546:35;:::i;3592:254::-;3660:6;3668;3721:2;3709:9;3700:7;3696:23;3692:32;3689:52;;;3737:1;3734;3727:12;3689:52;3760:29;3779:9;3760:29;:::i;:::-;3750:39;3836:2;3821:18;;;;3808:32;;-1:-1:-1;;;3592:254:1:o;3851:1157::-;3969:6;3977;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4086:9;4073:23;-1:-1:-1;;;;;4156:2:1;4148:6;4145:14;4142:34;;;4172:1;4169;4162:12;4142:34;4210:6;4199:9;4195:22;4185:32;;4255:7;4248:4;4244:2;4240:13;4236:27;4226:55;;4277:1;4274;4267:12;4226:55;4313:2;4300:16;4335:4;4359:60;4375:43;4415:2;4375:43;:::i;4359:60::-;4441:3;4465:2;4460:3;4453:15;4493:2;4488:3;4484:12;4477:19;;4524:2;4520;4516:11;4572:7;4567:2;4561;4558:1;4554:10;4550:2;4546:19;4542:28;4539:41;4536:61;;;4593:1;4590;4583:12;4536:61;4615:1;4606:10;;4625:169;4639:2;4636:1;4633:9;4625:169;;;4696:23;4715:3;4696:23;:::i;:::-;4684:36;;4657:1;4650:9;;;;;4740:12;;;;4772;;4625:169;;;-1:-1:-1;4813:5:1;-1:-1:-1;;4856:18:1;;4843:32;;-1:-1:-1;;4887:16:1;;;4884:36;;;4916:1;4913;4906:12;4884:36;;4939:63;4994:7;4983:8;4972:9;4968:24;4939:63;:::i;5013:689::-;5108:6;5116;5124;5177:2;5165:9;5156:7;5152:23;5148:32;5145:52;;;5193:1;5190;5183:12;5145:52;5233:9;5220:23;-1:-1:-1;;;;;5303:2:1;5295:6;5292:14;5289:34;;;5319:1;5316;5309:12;5289:34;5357:6;5346:9;5342:22;5332:32;;5402:7;5395:4;5391:2;5387:13;5383:27;5373:55;;5424:1;5421;5414:12;5373:55;5464:2;5451:16;5490:2;5482:6;5479:14;5476:34;;;5506:1;5503;5496:12;5476:34;5561:7;5554:4;5544:6;5541:1;5537:14;5533:2;5529:23;5525:34;5522:47;5519:67;;;5582:1;5579;5572:12;5519:67;5613:4;5605:13;;;;5637:6;;-1:-1:-1;5675:20:1;;;;5662:34;;5013:689;-1:-1:-1;;;;5013:689:1:o;5707:180::-;5763:6;5816:2;5804:9;5795:7;5791:23;5787:32;5784:52;;;5832:1;5829;5822:12;5784:52;5855:26;5871:9;5855:26;:::i;5892:180::-;5951:6;6004:2;5992:9;5983:7;5979:23;5975:32;5972:52;;;6020:1;6017;6010:12;5972:52;-1:-1:-1;6043:23:1;;5892:180;-1:-1:-1;5892:180:1:o;6077:245::-;6135:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:52;;;6204:1;6201;6194:12;6156:52;6243:9;6230:23;6262:30;6286:5;6262:30;:::i;6327:249::-;6396:6;6449:2;6437:9;6428:7;6424:23;6420:32;6417:52;;;6465:1;6462;6455:12;6417:52;6497:9;6491:16;6516:30;6540:5;6516:30;:::i;6581:450::-;6650:6;6703:2;6691:9;6682:7;6678:23;6674:32;6671:52;;;6719:1;6716;6709:12;6671:52;6759:9;6746:23;-1:-1:-1;;;;;6784:6:1;6781:30;6778:50;;;6824:1;6821;6814:12;6778:50;6847:22;;6900:4;6892:13;;6888:27;-1:-1:-1;6878:55:1;;6929:1;6926;6919:12;6878:55;6952:73;7017:7;7012:2;6999:16;6994:2;6990;6986:11;6952:73;:::i;7221:248::-;7289:6;7297;7350:2;7338:9;7329:7;7325:23;7321:32;7318:52;;;7366:1;7363;7356:12;7318:52;-1:-1:-1;;7389:23:1;;;7459:2;7444:18;;;7431:32;;-1:-1:-1;7221:248:1:o;7474:257::-;7515:3;7553:5;7547:12;7580:6;7575:3;7568:19;7596:63;7652:6;7645:4;7640:3;7636:14;7629:4;7622:5;7618:16;7596:63;:::i;:::-;7713:2;7692:15;-1:-1:-1;;7688:29:1;7679:39;;;;7720:4;7675:50;;7474:257;-1:-1:-1;;7474:257:1:o;7736:185::-;7778:3;7816:5;7810:12;7831:52;7876:6;7871:3;7864:4;7857:5;7853:16;7831:52;:::i;:::-;7899:16;;;;;7736:185;-1:-1:-1;;7736:185:1:o;8278:1301::-;8555:3;8584:1;8617:6;8611:13;8647:3;8669:1;8697:9;8693:2;8689:18;8679:28;;8757:2;8746:9;8742:18;8779;8769:61;;8823:4;8815:6;8811:17;8801:27;;8769:61;8849:2;8897;8889:6;8886:14;8866:18;8863:38;8860:165;;;-1:-1:-1;;;8924:33:1;;8980:4;8977:1;8970:15;9010:4;8931:3;8998:17;8860:165;9041:18;9068:104;;;;9186:1;9181:320;;;;9034:467;;9068:104;-1:-1:-1;;9101:24:1;;9089:37;;9146:16;;;;-1:-1:-1;9068:104:1;;9181:320;17716:1;17709:14;;;17753:4;17740:18;;9276:1;9290:165;9304:6;9301:1;9298:13;9290:165;;;9382:14;;9369:11;;;9362:35;9425:16;;;;9319:10;;9290:165;;;9294:3;;9484:6;9479:3;9475:16;9468:23;;9034:467;;;;;;;9517:56;9542:30;9568:3;9560:6;9542:30;:::i;:::-;-1:-1:-1;;;7986:20:1;;8031:1;8022:11;;7926:113;9517:56;9510:63;8278:1301;-1:-1:-1;;;;;8278:1301:1:o;10002:488::-;-1:-1:-1;;;;;10271:15:1;;;10253:34;;10323:15;;10318:2;10303:18;;10296:43;10370:2;10355:18;;10348:34;;;10418:3;10413:2;10398:18;;10391:31;;;10196:4;;10439:45;;10464:19;;10456:6;10439:45;:::i;:::-;10431:53;10002:488;-1:-1:-1;;;;;;10002:488:1:o;11148:219::-;11297:2;11286:9;11279:21;11260:4;11317:44;11357:2;11346:9;11342:18;11334:6;11317:44;:::i;14874:326::-;15076:2;15058:21;;;15115:1;15095:18;;;15088:29;-1:-1:-1;;;15148:2:1;15133:18;;15126:33;15191:2;15176:18;;14874:326::o;16654:334::-;16856:2;16838:21;;;16895:2;16875:18;;;16868:30;-1:-1:-1;;;16929:2:1;16914:18;;16907:40;16979:2;16964:18;;16654:334::o;17175:275::-;17246:2;17240:9;17311:2;17292:13;;-1:-1:-1;;17288:27:1;17276:40;;-1:-1:-1;;;;;17331:34:1;;17367:22;;;17328:62;17325:88;;;17393:18;;:::i;:::-;17429:2;17422:22;17175:275;;-1:-1:-1;17175:275:1:o;17455:183::-;17515:4;-1:-1:-1;;;;;17540:6:1;17537:30;17534:56;;;17570:18;;:::i;:::-;-1:-1:-1;17615:1:1;17611:14;17627:4;17607:25;;17455:183::o;17769:128::-;17809:3;17840:1;17836:6;17833:1;17830:13;17827:39;;;17846:18;;:::i;:::-;-1:-1:-1;17882:9:1;;17769:128::o;17902:120::-;17942:1;17968;17958:35;;17973:18;;:::i;:::-;-1:-1:-1;18007:9:1;;17902:120::o;18027:168::-;18067:7;18133:1;18129;18125:6;18121:14;18118:1;18115:21;18110:1;18103:9;18096:17;18092:45;18089:71;;;18140:18;;:::i;:::-;-1:-1:-1;18180:9:1;;18027:168::o;18200:125::-;18240:4;18268:1;18265;18262:8;18259:34;;;18273:18;;:::i;:::-;-1:-1:-1;18310:9:1;;18200:125::o;18330:258::-;18402:1;18412:113;18426:6;18423:1;18420:13;18412:113;;;18502:11;;;18496:18;18483:11;;;18476:39;18448:2;18441:10;18412:113;;;18543:6;18540:1;18537:13;18534:48;;;-1:-1:-1;;18578:1:1;18560:16;;18553:27;18330:258::o;18593:380::-;18672:1;18668:12;;;;18715;;;18736:61;;18790:4;18782:6;18778:17;18768:27;;18736:61;18843:2;18835:6;18832:14;18812:18;18809:38;18806:161;;;18889:10;18884:3;18880:20;18877:1;18870:31;18924:4;18921:1;18914:15;18952:4;18949:1;18942:15;18806:161;;18593:380;;;:::o;18978:135::-;19017:3;-1:-1:-1;;19038:17:1;;19035:43;;;19058:18;;:::i;:::-;-1:-1:-1;19105:1:1;19094:13;;18978:135::o;19118:112::-;19150:1;19176;19166:35;;19181:18;;:::i;:::-;-1:-1:-1;19215:9:1;;19118:112::o;19235:127::-;19296:10;19291:3;19287:20;19284:1;19277:31;19327:4;19324:1;19317:15;19351:4;19348:1;19341:15;19367:127;19428:10;19423:3;19419:20;19416:1;19409:31;19459:4;19456:1;19449:15;19483:4;19480:1;19473:15;19499:127;19560:10;19555:3;19551:20;19548:1;19541:31;19591:4;19588:1;19581:15;19615:4;19612:1;19605:15;19631:127;19692:10;19687:3;19683:20;19680:1;19673:31;19723:4;19720:1;19713:15;19747:4;19744:1;19737:15;19763:131;-1:-1:-1;;;;;;19837:32:1;;19827:43;;19817:71;;19884:1;19881;19874:12

Swarm Source

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