ETH Price: $2,638.55 (+1.02%)

Token

ChickenWings (CHKNWINGS)
 

Overview

Max Total Supply

75 CHKNWINGS

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 CHKNWINGS
0xb5dd2e685772b384f6520ce13f6e5d4c559a64dc
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:
ChickenWings

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT

// 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 ChickenWings 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 <= 2000,"END");
        require(minted[msg.sender]+_quantity <= 5,"END");
        require(_wlCount+_quantity < 2000, "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 <= 2000,"END");
        require(minted[msg.sender]+_quantity <= 5, "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 <= 2000,"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 <= 5, "You can transfer max 5 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 <= 5, "You can transfer max 5 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"}]

608060405260006073553480156200001657600080fd5b506040516200269938038062002699833981016040819052620000399162000214565b8251839083906200005290606a906020850190620000b7565b5080516200006890606b906020840190620000b7565b506001606855505060668054336001600160a01b031991821681179092556103e86067556070805490911690911790558051620000ad906071906020840190620000b7565b50505050620002f8565b828054620000c590620002a5565b90600052602060002090601f016020900481019282620000e9576000855562000134565b82601f106200010457805160ff191683800117855562000134565b8280016001018555821562000134579182015b828111156200013457825182559160200191906001019062000117565b506200014292915062000146565b5090565b5b8082111562000142576000815560010162000147565b600082601f8301126200016f57600080fd5b81516001600160401b03808211156200018c576200018c620002e2565b604051601f8301601f19908116603f01168101908282118183101715620001b757620001b7620002e2565b81604052838152602092508683858801011115620001d457600080fd5b600091505b83821015620001f85785820183015181830184015290820190620001d9565b838211156200020a5760008385830101525b9695505050505050565b6000806000606084860312156200022a57600080fd5b83516001600160401b03808211156200024257600080fd5b62000250878388016200015d565b945060208601519150808211156200026757600080fd5b62000275878388016200015d565b935060408601519150808211156200028c57600080fd5b506200029b868287016200015d565b9150509250925092565b600181811c90821680620002ba57607f821691505b60208210811415620002dc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61239180620003086000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c806342842e0e1161010f578063a22cb465116100a2578063df1aa20711610071578063df1aa20714610441578063e8a3d48514610454578063e985e9c51461045c578063f2fde38b1461049857600080fd5b8063a22cb465146103f5578063a8ddf8f614610408578063b88d4fde1461041b578063c87b56dd1461042e57600080fd5b806370a08231116100de57806370a08231146103b45780637c9af616146103c75780637e5b1e24146103da57806395d89b41146103ed57600080fd5b806342842e0e146103735780636352211e14610386578063641c1346146103995780636c0360eb146103ac57600080fd5b80631ade6d9a116101875780632904e6d9116101565780632904e6d9146103125780632a55205a146103255780632db11544146103575780632fc37ab21461036a57600080fd5b80631ade6d9a146102b95780631e7269c5146102cc57806321ff9970146102ec57806323b872dd146102ff57600080fd5b8063095ea7b3116101c3578063095ea7b314610271578063153a1f3e14610284578063166bab951461029757806318160ddd1461029f57600080fd5b8062bc653c146101f457806301ffc9a71461020957806306fdde0314610231578063081812fc14610246575b600080fd5b610207610202366004611f51565b6104ab565b005b61021c610217366004611f6a565b61057e565b60405190151581526020015b60405180910390f35b6102396105d0565b604051610228919061214e565b610259610254366004611f51565b610662565b6040516001600160a01b039091168152602001610228565b61020761027f366004611dd6565b6106a6565b610207610292366004611e00565b610734565b61020761083d565b60695460685403600019015b604051908152602001610228565b6102076102c7366004611dd6565b6108f9565b6102ab6102da366004611c5a565b60776020526000908152604090205481565b6102076102fa366004611f51565b610949565b61020761030d366004611ca8565b610978565b610207610320366004611ebc565b610983565b610338610333366004611fec565b610be2565b604080516001600160a01b039093168352602083019190915201610228565b610207610365366004611f51565b610c1c565b6102ab60735481565b610207610381366004611ca8565b610d6e565b610259610394366004611f51565b610d89565b6102076103a7366004611f36565b610d9b565b610239610e42565b6102ab6103c2366004611c5a565b610e51565b6102076103d5366004611d5f565b610e9f565b6102076103e8366004611fa4565b610f26565b610239610f67565b610207610403366004611dac565b610f76565b610207610416366004611f36565b61100c565b610207610429366004611ce4565b6110a2565b61023961043c366004611f51565b6110f3565b61020761044f366004611fa4565b611194565b6102396111d1565b61021c61046a366004611c75565b6001600160a01b039182166000908152606f6020908152604080832093909416825291909152205460ff1690565b6102076104a6366004611c5a565b6111e0565b6070546001600160a01b031633146104de5760405162461bcd60e51b81526004016104d59061217e565b60405180910390fd5b60725460ff1661052b5760405162461bcd60e51b815260206004820152601860248201527721bab93932b73a363c9026b4b73a34b7339024b99027b33360411b60448201526064016104d5565b6107d08160755461053c91906121f5565b111561055a5760405162461bcd60e51b81526004016104d590612161565b61056433826112a1565b806075600082825461057691906121f5565b909155505050565b60006001600160e01b031982166380ac58cd60e01b14806105af57506001600160e01b03198216635b5e139f60e01b145b806105ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060606a80546105df90612283565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90612283565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b600061066d826112bb565b61068a576040516333d1c03960e21b815260040160405180910390fd5b506000908152606e60205260409020546001600160a01b031690565b60006106b182610d89565b9050806001600160a01b0316836001600160a01b031614156106e65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107065750610704813361046a565b155b15610724576040516367d9dca160e11b815260040160405180910390fd5b61072f8383836112f4565b505050565b80518251146107905760405162461bcd60e51b815260206004820152602260248201527f4c656e676874206e6f74206d6174636865642c20496e76616c696420466f726d604482015261185d60f21b60648201526084016104d5565b6005825111156107e25760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e207472616e73666572206d6178203520746f6b656e7300000060448201526064016104d5565b60005b825181101561072f5761082b3384838151811061080457610804612319565b602002602001015184848151811061081e5761081e612319565b6020026020010151610d6e565b80610835816122be565b9150506107e5565b6070546001600160a01b031633146108675760405162461bcd60e51b81526004016104d59061217e565b6066546040516000916001600160a01b03169047908381818185875af1925050503d80600081146108b4576040519150601f19603f3d011682016040523d82523d6000602084013e6108b9565b606091505b50509050806108f65760405162461bcd60e51b815260206004820152600960248201526808cc2d2d8cac840a8f60bb1b60448201526064016104d5565b50565b6070546001600160a01b031633146109235760405162461bcd60e51b81526004016104d59061217e565b606680546001600160a01b0319166001600160a01b039390931692909217909155606755565b6070546001600160a01b031633146109735760405162461bcd60e51b81526004016104d59061217e565b607355565b61072f838383611350565b60725460ff166109d05760405162461bcd60e51b815260206004820152601860248201527721bab93932b73a363c9026b4b73a34b7339024b99027b33360411b60448201526064016104d5565b607254610100900460ff1615610a1a5760405162461bcd60e51b815260206004820152600f60248201526e15da1a5d195b1a5cdd08115b991959608a1b60448201526064016104d5565b6107d081607554610a2b91906121f5565b1115610a495760405162461bcd60e51b81526004016104d590612161565b33600090815260776020526040902054600590610a679083906121f5565b1115610a855760405162461bcd60e51b81526004016104d590612161565b6107d081607454610a9691906121f5565b10610acf5760405162461bcd60e51b815260206004820152600960248201526810dbdb5c1b195d195960ba1b60448201526064016104d5565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b4984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050607354915084905061153e565b610b7e5760405162461bcd60e51b8152602060048201526006602482015265139bdd0815d360d21b60448201526064016104d5565b610b8833836112a1565b8160746000828254610b9a91906121f5565b90915550503360009081526077602052604081208054849290610bbe9084906121f5565b925050819055508160756000828254610bd791906121f5565b909155505050505050565b60665460675460009182916001600160a01b039091169061271090610c079086612221565b610c11919061220d565b915091509250929050565b60725460ff16610c595760405162461bcd60e51b815260206004820152600860248201526736b4b73a1037b33360c11b60448201526064016104d5565b607254610100900460ff16610ca25760405162461bcd60e51b815260206004820152600f60248201526e7075626c6963206e6f74206c69766560881b60448201526064016104d5565b6107d081607554610cb391906121f5565b1115610cd15760405162461bcd60e51b81526004016104d590612161565b33600090815260776020526040902054600590610cef9083906121f5565b1115610d2c5760405162461bcd60e51b815260206004820152600c60248201526b131a5b5a5d08115e18d9595960a21b60448201526064016104d5565b610d3633826112a1565b3360009081526077602052604081208054839290610d559084906121f5565b92505081905550806075600082825461057691906121f5565b61072f838383604051806020016040528060008152506110a2565b6000610d9482611554565b5192915050565b6070546001600160a01b03163314610dc55760405162461bcd60e51b81526004016104d59061217e565b607260019054906101000a900460ff1615158115151415610e285760405162461bcd60e51b815260206004820152601f60248201527f69735075626c696320616c726561647920696e2073616d65207374617475730060448201526064016104d5565b607280549115156101000261ff0019909216919091179055565b6060607180546105df90612283565b60006001600160a01b038216610e7a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606d60205260409020546001600160401b031690565b600581511115610ef15760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e207472616e73666572206d6178203520746f6b656e7300000060448201526064016104d5565b60005b815181101561072f57610f14338484848151811061081e5761081e612319565b80610f1e816122be565b915050610ef4565b6070546001600160a01b03163314610f505760405162461bcd60e51b81526004016104d59061217e565b8051610f63906076906020840190611acc565b5050565b6060606b80546105df90612283565b6001600160a01b038216331415610fa05760405163b06307db60e01b815260040160405180910390fd5b336000818152606f602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6070546001600160a01b031633146110365760405162461bcd60e51b81526004016104d59061217e565b60725460ff161515811515141561108f5760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616c726561647920696e2073616d6520737461747573000000000060448201526064016104d5565b6072805460ff1916911515919091179055565b6110ad848484611350565b6001600160a01b0383163b151580156110cf57506110cd8484848461167b565b155b156110ed576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110fe826112bb565b6111625760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104d5565b607161116d83611773565b60405160200161117e929190612056565b6040516020818303038152906040529050919050565b6070546001600160a01b031633146111be5760405162461bcd60e51b81526004016104d59061217e565b8051610f63906071906020840190611acc565b6060607680546105df90612283565b6070546001600160a01b0316331461120a5760405162461bcd60e51b81526004016104d59061217e565b6001600160a01b0381166112455760405162461bcd60e51b8152602060048201526002602482015261030360f41b60448201526064016104d5565b6070546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3607080546001600160a01b0319166001600160a01b0392909216919091179055565b610f63828260405180602001604052806000815250611870565b6000816001111580156112cf575060685482105b80156105ca5750506000908152606c6020526040902054600160e01b900460ff161590565b6000828152606e602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061135b82611554565b9050836001600160a01b031681600001516001600160a01b0316146113925760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113b057506113b0853361046a565b806113cb5750336113c084610662565b6001600160a01b0316145b9050806113eb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661141257604051633a954ecd60e21b815260040160405180910390fd5b61141e600084876112f4565b6001600160a01b038581166000908152606d60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606c90945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166114f25760685482146114f257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60008261154b858461187d565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611584575060685481105b15611662576000818152606c6020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116605780516001600160a01b0316156115f7579392505050565b50600019016000818152606c6020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561165b579392505050565b6115f7565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116b0903390899088908890600401612111565b602060405180830381600087803b1580156116ca57600080fd5b505af19250505080156116fa575060408051601f3d908101601f191682019092526116f791810190611f87565b60015b611755573d808015611728576040519150601f19603f3d011682016040523d82523d6000602084013e61172d565b606091505b50805161174d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816117975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c157806117ab816122be565b91506117ba9050600a8361220d565b915061179b565b6000816001600160401b038111156117db576117db61232f565b6040519080825280601f01601f191660200182016040528015611805576020820181803683370190505b5090505b841561176b5761181a600183612240565b9150611827600a866122d9565b6118329060306121f5565b60f81b81838151811061184757611847612319565b60200101906001600160f81b031916908160001a905350611869600a8661220d565b9450611809565b61072f83838360016118ca565b600081815b84518110156118c2576118ae828683815181106118a1576118a1612319565b6020026020010151611a9a565b9150806118ba816122be565b915050611882565b509392505050565b6068546001600160a01b0385166118f357604051622e076360e81b815260040160405180910390fd5b836119115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385166000818152606d6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452606c90925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156119c257506001600160a01b0387163b15155b15611a4b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a13600088848060010195508861167b565b611a30576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119c8578260685414611a4657600080fd5b611a91565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611a4c575b50606855611537565b6000818310611ab6576000828152602084905260409020611ac5565b60008381526020839052604090205b9392505050565b828054611ad890612283565b90600052602060002090601f016020900481019282611afa5760008555611b40565b82601f10611b1357805160ff1916838001178555611b40565b82800160010185558215611b40579182015b82811115611b40578251825591602001919060010190611b25565b50611b4c929150611b50565b5090565b5b80821115611b4c5760008155600101611b51565b60006001600160401b03831115611b7e57611b7e61232f565b611b91601f8401601f19166020016121a2565b9050828152838383011115611ba557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bd357600080fd5b919050565b600082601f830112611be957600080fd5b81356020611bfe611bf9836121d2565b6121a2565b80838252828201915082860187848660051b8901011115611c1e57600080fd5b60005b85811015611c3d57813584529284019290840190600101611c21565b5090979650505050505050565b80358015158114611bd357600080fd5b600060208284031215611c6c57600080fd5b611ac582611bbc565b60008060408385031215611c8857600080fd5b611c9183611bbc565b9150611c9f60208401611bbc565b90509250929050565b600080600060608486031215611cbd57600080fd5b611cc684611bbc565b9250611cd460208501611bbc565b9150604084013590509250925092565b60008060008060808587031215611cfa57600080fd5b611d0385611bbc565b9350611d1160208601611bbc565b92506040850135915060608501356001600160401b03811115611d3357600080fd5b8501601f81018713611d4457600080fd5b611d5387823560208401611b65565b91505092959194509250565b60008060408385031215611d7257600080fd5b611d7b83611bbc565b915060208301356001600160401b03811115611d9657600080fd5b611da285828601611bd8565b9150509250929050565b60008060408385031215611dbf57600080fd5b611dc883611bbc565b9150611c9f60208401611c4a565b60008060408385031215611de957600080fd5b611df283611bbc565b946020939093013593505050565b60008060408385031215611e1357600080fd5b82356001600160401b0380821115611e2a57600080fd5b818501915085601f830112611e3e57600080fd5b81356020611e4e611bf9836121d2565b8083825282820191508286018a848660051b8901011115611e6e57600080fd5b600096505b84871015611e9857611e8481611bbc565b835260019690960195918301918301611e73565b5096505086013592505080821115611eaf57600080fd5b50611da285828601611bd8565b600080600060408486031215611ed157600080fd5b83356001600160401b0380821115611ee857600080fd5b818601915086601f830112611efc57600080fd5b813581811115611f0b57600080fd5b8760208260051b8501011115611f2057600080fd5b6020928301989097509590910135949350505050565b600060208284031215611f4857600080fd5b611ac582611c4a565b600060208284031215611f6357600080fd5b5035919050565b600060208284031215611f7c57600080fd5b8135611ac581612345565b600060208284031215611f9957600080fd5b8151611ac581612345565b600060208284031215611fb657600080fd5b81356001600160401b03811115611fcc57600080fd5b8201601f81018413611fdd57600080fd5b61176b84823560208401611b65565b60008060408385031215611fff57600080fd5b50508035926020909101359150565b60008151808452612026816020860160208601612257565b601f01601f19169290920160200192915050565b6000815161204c818560208601612257565b9290920192915050565b600080845481600182811c91508083168061207257607f831692505b602080841082141561209257634e487b7160e01b86526022600452602486fd5b8180156120a657600181146120b7576120e4565b60ff198616895284890196506120e4565b60008b81526020902060005b868110156120dc5781548b8201529085019083016120c3565b505084890196505b5050505050506121086120f7828661203a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121449083018461200e565b9695505050505050565b602081526000611ac5602083018461200e565b60208082526003908201526211539160ea1b604082015260600190565b6020808252600a908201526927b7363c9027bbb732b960b11b604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156121ca576121ca61232f565b604052919050565b60006001600160401b038211156121eb576121eb61232f565b5060051b60200190565b60008219821115612208576122086122ed565b500190565b60008261221c5761221c612303565b500490565b600081600019048311821515161561223b5761223b6122ed565b500290565b600082821015612252576122526122ed565b500390565b60005b8381101561227257818101518382015260200161225a565b838111156110ed5750506000910152565b600181811c9082168061229757607f821691505b602082108114156122b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122d2576122d26122ed565b5060010190565b6000826122e8576122e8612303565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f657600080fdfea26469706673582212200e54a548a4523c37ce933128722864caed144a360c5d5dd1118610ce9ad9e1a364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c436869636b656e57696e67730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000943484b4e57494e475300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6361465845463332626d796b4a7563396b73706251357a7a47795152723932474b72726f61654e75654b6d552f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c806342842e0e1161010f578063a22cb465116100a2578063df1aa20711610071578063df1aa20714610441578063e8a3d48514610454578063e985e9c51461045c578063f2fde38b1461049857600080fd5b8063a22cb465146103f5578063a8ddf8f614610408578063b88d4fde1461041b578063c87b56dd1461042e57600080fd5b806370a08231116100de57806370a08231146103b45780637c9af616146103c75780637e5b1e24146103da57806395d89b41146103ed57600080fd5b806342842e0e146103735780636352211e14610386578063641c1346146103995780636c0360eb146103ac57600080fd5b80631ade6d9a116101875780632904e6d9116101565780632904e6d9146103125780632a55205a146103255780632db11544146103575780632fc37ab21461036a57600080fd5b80631ade6d9a146102b95780631e7269c5146102cc57806321ff9970146102ec57806323b872dd146102ff57600080fd5b8063095ea7b3116101c3578063095ea7b314610271578063153a1f3e14610284578063166bab951461029757806318160ddd1461029f57600080fd5b8062bc653c146101f457806301ffc9a71461020957806306fdde0314610231578063081812fc14610246575b600080fd5b610207610202366004611f51565b6104ab565b005b61021c610217366004611f6a565b61057e565b60405190151581526020015b60405180910390f35b6102396105d0565b604051610228919061214e565b610259610254366004611f51565b610662565b6040516001600160a01b039091168152602001610228565b61020761027f366004611dd6565b6106a6565b610207610292366004611e00565b610734565b61020761083d565b60695460685403600019015b604051908152602001610228565b6102076102c7366004611dd6565b6108f9565b6102ab6102da366004611c5a565b60776020526000908152604090205481565b6102076102fa366004611f51565b610949565b61020761030d366004611ca8565b610978565b610207610320366004611ebc565b610983565b610338610333366004611fec565b610be2565b604080516001600160a01b039093168352602083019190915201610228565b610207610365366004611f51565b610c1c565b6102ab60735481565b610207610381366004611ca8565b610d6e565b610259610394366004611f51565b610d89565b6102076103a7366004611f36565b610d9b565b610239610e42565b6102ab6103c2366004611c5a565b610e51565b6102076103d5366004611d5f565b610e9f565b6102076103e8366004611fa4565b610f26565b610239610f67565b610207610403366004611dac565b610f76565b610207610416366004611f36565b61100c565b610207610429366004611ce4565b6110a2565b61023961043c366004611f51565b6110f3565b61020761044f366004611fa4565b611194565b6102396111d1565b61021c61046a366004611c75565b6001600160a01b039182166000908152606f6020908152604080832093909416825291909152205460ff1690565b6102076104a6366004611c5a565b6111e0565b6070546001600160a01b031633146104de5760405162461bcd60e51b81526004016104d59061217e565b60405180910390fd5b60725460ff1661052b5760405162461bcd60e51b815260206004820152601860248201527721bab93932b73a363c9026b4b73a34b7339024b99027b33360411b60448201526064016104d5565b6107d08160755461053c91906121f5565b111561055a5760405162461bcd60e51b81526004016104d590612161565b61056433826112a1565b806075600082825461057691906121f5565b909155505050565b60006001600160e01b031982166380ac58cd60e01b14806105af57506001600160e01b03198216635b5e139f60e01b145b806105ca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060606a80546105df90612283565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90612283565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b600061066d826112bb565b61068a576040516333d1c03960e21b815260040160405180910390fd5b506000908152606e60205260409020546001600160a01b031690565b60006106b182610d89565b9050806001600160a01b0316836001600160a01b031614156106e65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107065750610704813361046a565b155b15610724576040516367d9dca160e11b815260040160405180910390fd5b61072f8383836112f4565b505050565b80518251146107905760405162461bcd60e51b815260206004820152602260248201527f4c656e676874206e6f74206d6174636865642c20496e76616c696420466f726d604482015261185d60f21b60648201526084016104d5565b6005825111156107e25760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e207472616e73666572206d6178203520746f6b656e7300000060448201526064016104d5565b60005b825181101561072f5761082b3384838151811061080457610804612319565b602002602001015184848151811061081e5761081e612319565b6020026020010151610d6e565b80610835816122be565b9150506107e5565b6070546001600160a01b031633146108675760405162461bcd60e51b81526004016104d59061217e565b6066546040516000916001600160a01b03169047908381818185875af1925050503d80600081146108b4576040519150601f19603f3d011682016040523d82523d6000602084013e6108b9565b606091505b50509050806108f65760405162461bcd60e51b815260206004820152600960248201526808cc2d2d8cac840a8f60bb1b60448201526064016104d5565b50565b6070546001600160a01b031633146109235760405162461bcd60e51b81526004016104d59061217e565b606680546001600160a01b0319166001600160a01b039390931692909217909155606755565b6070546001600160a01b031633146109735760405162461bcd60e51b81526004016104d59061217e565b607355565b61072f838383611350565b60725460ff166109d05760405162461bcd60e51b815260206004820152601860248201527721bab93932b73a363c9026b4b73a34b7339024b99027b33360411b60448201526064016104d5565b607254610100900460ff1615610a1a5760405162461bcd60e51b815260206004820152600f60248201526e15da1a5d195b1a5cdd08115b991959608a1b60448201526064016104d5565b6107d081607554610a2b91906121f5565b1115610a495760405162461bcd60e51b81526004016104d590612161565b33600090815260776020526040902054600590610a679083906121f5565b1115610a855760405162461bcd60e51b81526004016104d590612161565b6107d081607454610a9691906121f5565b10610acf5760405162461bcd60e51b815260206004820152600960248201526810dbdb5c1b195d195960ba1b60448201526064016104d5565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b4984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050607354915084905061153e565b610b7e5760405162461bcd60e51b8152602060048201526006602482015265139bdd0815d360d21b60448201526064016104d5565b610b8833836112a1565b8160746000828254610b9a91906121f5565b90915550503360009081526077602052604081208054849290610bbe9084906121f5565b925050819055508160756000828254610bd791906121f5565b909155505050505050565b60665460675460009182916001600160a01b039091169061271090610c079086612221565b610c11919061220d565b915091509250929050565b60725460ff16610c595760405162461bcd60e51b815260206004820152600860248201526736b4b73a1037b33360c11b60448201526064016104d5565b607254610100900460ff16610ca25760405162461bcd60e51b815260206004820152600f60248201526e7075626c6963206e6f74206c69766560881b60448201526064016104d5565b6107d081607554610cb391906121f5565b1115610cd15760405162461bcd60e51b81526004016104d590612161565b33600090815260776020526040902054600590610cef9083906121f5565b1115610d2c5760405162461bcd60e51b815260206004820152600c60248201526b131a5b5a5d08115e18d9595960a21b60448201526064016104d5565b610d3633826112a1565b3360009081526077602052604081208054839290610d559084906121f5565b92505081905550806075600082825461057691906121f5565b61072f838383604051806020016040528060008152506110a2565b6000610d9482611554565b5192915050565b6070546001600160a01b03163314610dc55760405162461bcd60e51b81526004016104d59061217e565b607260019054906101000a900460ff1615158115151415610e285760405162461bcd60e51b815260206004820152601f60248201527f69735075626c696320616c726561647920696e2073616d65207374617475730060448201526064016104d5565b607280549115156101000261ff0019909216919091179055565b6060607180546105df90612283565b60006001600160a01b038216610e7a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606d60205260409020546001600160401b031690565b600581511115610ef15760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e207472616e73666572206d6178203520746f6b656e7300000060448201526064016104d5565b60005b815181101561072f57610f14338484848151811061081e5761081e612319565b80610f1e816122be565b915050610ef4565b6070546001600160a01b03163314610f505760405162461bcd60e51b81526004016104d59061217e565b8051610f63906076906020840190611acc565b5050565b6060606b80546105df90612283565b6001600160a01b038216331415610fa05760405163b06307db60e01b815260040160405180910390fd5b336000818152606f602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6070546001600160a01b031633146110365760405162461bcd60e51b81526004016104d59061217e565b60725460ff161515811515141561108f5760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616c726561647920696e2073616d6520737461747573000000000060448201526064016104d5565b6072805460ff1916911515919091179055565b6110ad848484611350565b6001600160a01b0383163b151580156110cf57506110cd8484848461167b565b155b156110ed576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110fe826112bb565b6111625760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104d5565b607161116d83611773565b60405160200161117e929190612056565b6040516020818303038152906040529050919050565b6070546001600160a01b031633146111be5760405162461bcd60e51b81526004016104d59061217e565b8051610f63906071906020840190611acc565b6060607680546105df90612283565b6070546001600160a01b0316331461120a5760405162461bcd60e51b81526004016104d59061217e565b6001600160a01b0381166112455760405162461bcd60e51b8152602060048201526002602482015261030360f41b60448201526064016104d5565b6070546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3607080546001600160a01b0319166001600160a01b0392909216919091179055565b610f63828260405180602001604052806000815250611870565b6000816001111580156112cf575060685482105b80156105ca5750506000908152606c6020526040902054600160e01b900460ff161590565b6000828152606e602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061135b82611554565b9050836001600160a01b031681600001516001600160a01b0316146113925760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113b057506113b0853361046a565b806113cb5750336113c084610662565b6001600160a01b0316145b9050806113eb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661141257604051633a954ecd60e21b815260040160405180910390fd5b61141e600084876112f4565b6001600160a01b038581166000908152606d60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606c90945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166114f25760685482146114f257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60008261154b858461187d565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611584575060685481105b15611662576000818152606c6020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906116605780516001600160a01b0316156115f7579392505050565b50600019016000818152606c6020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561165b579392505050565b6115f7565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116b0903390899088908890600401612111565b602060405180830381600087803b1580156116ca57600080fd5b505af19250505080156116fa575060408051601f3d908101601f191682019092526116f791810190611f87565b60015b611755573d808015611728576040519150601f19603f3d011682016040523d82523d6000602084013e61172d565b606091505b50805161174d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816117975750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117c157806117ab816122be565b91506117ba9050600a8361220d565b915061179b565b6000816001600160401b038111156117db576117db61232f565b6040519080825280601f01601f191660200182016040528015611805576020820181803683370190505b5090505b841561176b5761181a600183612240565b9150611827600a866122d9565b6118329060306121f5565b60f81b81838151811061184757611847612319565b60200101906001600160f81b031916908160001a905350611869600a8661220d565b9450611809565b61072f83838360016118ca565b600081815b84518110156118c2576118ae828683815181106118a1576118a1612319565b6020026020010151611a9a565b9150806118ba816122be565b915050611882565b509392505050565b6068546001600160a01b0385166118f357604051622e076360e81b815260040160405180910390fd5b836119115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385166000818152606d6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452606c90925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156119c257506001600160a01b0387163b15155b15611a4b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a13600088848060010195508861167b565b611a30576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119c8578260685414611a4657600080fd5b611a91565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611a4c575b50606855611537565b6000818310611ab6576000828152602084905260409020611ac5565b60008381526020839052604090205b9392505050565b828054611ad890612283565b90600052602060002090601f016020900481019282611afa5760008555611b40565b82601f10611b1357805160ff1916838001178555611b40565b82800160010185558215611b40579182015b82811115611b40578251825591602001919060010190611b25565b50611b4c929150611b50565b5090565b5b80821115611b4c5760008155600101611b51565b60006001600160401b03831115611b7e57611b7e61232f565b611b91601f8401601f19166020016121a2565b9050828152838383011115611ba557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bd357600080fd5b919050565b600082601f830112611be957600080fd5b81356020611bfe611bf9836121d2565b6121a2565b80838252828201915082860187848660051b8901011115611c1e57600080fd5b60005b85811015611c3d57813584529284019290840190600101611c21565b5090979650505050505050565b80358015158114611bd357600080fd5b600060208284031215611c6c57600080fd5b611ac582611bbc565b60008060408385031215611c8857600080fd5b611c9183611bbc565b9150611c9f60208401611bbc565b90509250929050565b600080600060608486031215611cbd57600080fd5b611cc684611bbc565b9250611cd460208501611bbc565b9150604084013590509250925092565b60008060008060808587031215611cfa57600080fd5b611d0385611bbc565b9350611d1160208601611bbc565b92506040850135915060608501356001600160401b03811115611d3357600080fd5b8501601f81018713611d4457600080fd5b611d5387823560208401611b65565b91505092959194509250565b60008060408385031215611d7257600080fd5b611d7b83611bbc565b915060208301356001600160401b03811115611d9657600080fd5b611da285828601611bd8565b9150509250929050565b60008060408385031215611dbf57600080fd5b611dc883611bbc565b9150611c9f60208401611c4a565b60008060408385031215611de957600080fd5b611df283611bbc565b946020939093013593505050565b60008060408385031215611e1357600080fd5b82356001600160401b0380821115611e2a57600080fd5b818501915085601f830112611e3e57600080fd5b81356020611e4e611bf9836121d2565b8083825282820191508286018a848660051b8901011115611e6e57600080fd5b600096505b84871015611e9857611e8481611bbc565b835260019690960195918301918301611e73565b5096505086013592505080821115611eaf57600080fd5b50611da285828601611bd8565b600080600060408486031215611ed157600080fd5b83356001600160401b0380821115611ee857600080fd5b818601915086601f830112611efc57600080fd5b813581811115611f0b57600080fd5b8760208260051b8501011115611f2057600080fd5b6020928301989097509590910135949350505050565b600060208284031215611f4857600080fd5b611ac582611c4a565b600060208284031215611f6357600080fd5b5035919050565b600060208284031215611f7c57600080fd5b8135611ac581612345565b600060208284031215611f9957600080fd5b8151611ac581612345565b600060208284031215611fb657600080fd5b81356001600160401b03811115611fcc57600080fd5b8201601f81018413611fdd57600080fd5b61176b84823560208401611b65565b60008060408385031215611fff57600080fd5b50508035926020909101359150565b60008151808452612026816020860160208601612257565b601f01601f19169290920160200192915050565b6000815161204c818560208601612257565b9290920192915050565b600080845481600182811c91508083168061207257607f831692505b602080841082141561209257634e487b7160e01b86526022600452602486fd5b8180156120a657600181146120b7576120e4565b60ff198616895284890196506120e4565b60008b81526020902060005b868110156120dc5781548b8201529085019083016120c3565b505084890196505b5050505050506121086120f7828661203a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121449083018461200e565b9695505050505050565b602081526000611ac5602083018461200e565b60208082526003908201526211539160ea1b604082015260600190565b6020808252600a908201526927b7363c9027bbb732b960b11b604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156121ca576121ca61232f565b604052919050565b60006001600160401b038211156121eb576121eb61232f565b5060051b60200190565b60008219821115612208576122086122ed565b500190565b60008261221c5761221c612303565b500490565b600081600019048311821515161561223b5761223b6122ed565b500290565b600082821015612252576122526122ed565b500390565b60005b8381101561227257818101518382015260200161225a565b838111156110ed5750506000910152565b600181811c9082168061229757607f821691505b602082108114156122b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122d2576122d26122ed565b5060010190565b6000826122e8576122e8612303565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f657600080fdfea26469706673582212200e54a548a4523c37ce933128722864caed144a360c5d5dd1118610ce9ad9e1a364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c436869636b656e57696e67730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000943484b4e57494e475300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6361465845463332626d796b4a7563396b73706251357a7a47795152723932474b72726f61654e75654b6d552f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): ChickenWings
Arg [1] : _symbol (string): CHKNWINGS
Arg [2] : _mUri (string): ipfs://QmcaFXEF32bmykJuc9kspbQ5zzGyQRr92GKrroaeNueKmU/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 436869636b656e57696e67730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 43484b4e57494e47530000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d6361465845463332626d796b4a7563396b73706251357a
Arg [9] : 7a47795152723932474b72726f61654e75654b6d552f00000000000000000000


Deployed Bytecode Sourcemap

58303:4526:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61252:251;;;;;;:::i;:::-;;:::i;:::-;;40501:349;;;;;;:::i;:::-;;:::i;:::-;;;10939:14:1;;10932:22;10914:41;;10902:2;10887:18;40501:349:0;;;;;;;;43658:100;;;:::i;:::-;;;;;;;:::i;45161:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9958:32:1;;;9940:51;;9928:2;9913:18;45161:204:0;9794:203:1;44724:371:0;;;;;;:::i;:::-;;:::i;61695:366::-;;;;;;:::i;:::-;;:::i;61511:172::-;;;:::i;39750:303::-;40004:12;;39988:13;;:28;-1:-1:-1;;39988:46:0;39750:303;;;11112:25:1;;;11100:2;11085:18;39750:303:0;10966:177:1;59378:136:0;;;;;;:::i;:::-;;:::i;58649:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;59522:88;;;;;;:::i;:::-;;:::i;46026:170::-;;;;;;:::i;:::-;;:::i;60190:659::-;;;;;;:::i;:::-;;:::i;36941:235::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;10687:32:1;;;10669:51;;10751:2;10736:18;;10729:34;;;;10642:18;36941:235:0;10495:274:1;60857:387:0;;;;;;:::i;:::-;;:::i;58514:31::-;;;;;;46267:185;;;;;;:::i;:::-;;:::i;43466:125::-;;;;;;:::i;:::-;;:::i;59204:166::-;;;;;;:::i;:::-;;:::i;62363:91::-;;;:::i;40914:206::-;;;;;;:::i;:::-;;:::i;62073:282::-;;;;;;:::i;:::-;;:::i;60064:114::-;;;;;;:::i;:::-;;:::i;43827:104::-;;;:::i;45437:287::-;;;;;;:::i;:::-;;:::i;59040:156::-;;;;;;:::i;:::-;;:::i;46523:369::-;;;;;;:::i;:::-;;:::i;62572:254::-;;;;;;:::i;:::-;;:::i;59944:112::-;;;;;;:::i;:::-;;:::i;62462:98::-;;;:::i;45795:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;45916:25:0;;;45892:4;45916:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45795:164;59726:210;;;;;;:::i;:::-;;:::i;61252:251::-;59673:6;;-1:-1:-1;;;;;59673:6:0;59659:10;:20;59651:43;;;;-1:-1:-1;;;59651:43:0;;;;;;;:::i;:::-;;;;;;;;;61326:7:::1;::::0;::::1;;61318:44;;;::::0;-1:-1:-1;;;61318:44:0;;12245:2:1;61318: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;;61318:44:0::1;12043:348:1::0;61318:44:0::1;61406:4;61393:9;61381:11;;:21;;;;:::i;:::-;:29;;61373:44;;;;-1:-1:-1::0;;;61373:44:0::1;;;;;;;:::i;:::-;61428:32;61438:10;61450:9;61428;:32::i;:::-;61486:9;61471:11;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;61252:251:0:o;40501:349::-;40625:4;-1:-1:-1;;;;;;40662:51:0;;-1:-1:-1;;;40662:51:0;;:127;;-1:-1:-1;;;;;;;40730:59:0;;-1:-1:-1;;;40730:59:0;40662:127;:180;;;-1:-1:-1;;;;;;;;;;29282:51:0;;;40806:36;40642:200;40501:349;-1:-1:-1;;40501:349:0:o;43658:100::-;43712:13;43745:5;43738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43658:100;:::o;45161:204::-;45229:7;45254:16;45262:7;45254;:16::i;:::-;45249:64;;45279:34;;-1:-1:-1;;;45279:34:0;;;;;;;;;;;45249:64;-1:-1:-1;45333:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45333:24:0;;45161:204::o;44724:371::-;44797:13;44813:24;44829:7;44813:15;:24::i;:::-;44797:40;;44858:5;-1:-1:-1;;;;;44852:11:0;:2;-1:-1:-1;;;;;44852:11:0;;44848:48;;;44872:24;;-1:-1:-1;;;44872:24:0;;;;;;;;;;;44848:48;25667:10;-1:-1:-1;;;;;44913:21:0;;;;;;:63;;-1:-1:-1;44939:37:0;44956:5;25667:10;45795:164;:::i;44939:37::-;44938:38;44913:63;44909:138;;;45000:35;;-1:-1:-1;;;45000:35:0;;;;;;;;;;;44909:138;45059:28;45068:2;45072:7;45081:5;45059:8;:28::i;:::-;44786:309;44724:371;;:::o;61695:366::-;61811:8;:15;61798:2;:9;:28;61789:76;;;;-1:-1:-1;;;61789:76:0;;15765:2:1;61789:76:0;;;15747:21:1;15804:2;15784:18;;;15777:30;15843:34;15823:18;;;15816:62;-1:-1:-1;;;15894:18:1;;;15887:32;15936:19;;61789:76:0;15563:398:1;61789:76:0;61898:1;61885:2;:9;:14;;61876:57;;;;-1:-1:-1;;;61876:57:0;;13619:2:1;61876:57:0;;;13601:21:1;13658:2;13638:18;;;13631:30;13697:31;13677:18;;;13670:59;13746:18;;61876:57:0;13417:353:1;61876:57:0;61948:6;61944:110;61964:2;:9;61960:1;:13;61944:110;;;61994:48;62011:10;62023:2;62026:1;62023:5;;;;;;;;:::i;:::-;;;;;;;62030:8;62039:1;62030:11;;;;;;;;:::i;:::-;;;;;;;61994:16;:48::i;:::-;61975:3;;;;:::i;:::-;;;;61944:110;;61511:172;59673:6;;-1:-1:-1;;;;;59673:6:0;59659:10;:20;59651:43;;;;-1:-1:-1;;;59651:43:0;;;;;;;:::i;:::-;61587:9:::1;::::0;:48:::1;::::0;61569:12:::1;::::0;-1:-1:-1;;;;;61587:9:0::1;::::0;61609:21:::1;::::0;61569:12;61587:48;61569:12;61587:48;61609:21;61587:9;:48:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61568:67;;;61654:7;61646:29;;;::::0;-1:-1:-1;;;61646:29:0;;14337:2:1;61646:29:0::1;::::0;::::1;14319:21:1::0;14376:1;14356:18;;;14349:29;-1:-1:-1;;;14394:18:1;;;14387:39;14443:18;;61646:29:0::1;14135:332:1::0;61646:29:0::1;61557:126;61511:172::o:0;59378:136::-;59673:6;;-1:-1:-1;;;;;59673:6:0;59659:10;:20;59651:43;;;;-1:-1:-1;;;59651:43:0;;;;;;;:::i;:::-;59454:9:::1;:23:::0;;-1:-1:-1;;;;;;59454:23:0::1;-1:-1:-1::0;;;;;59454:23:0;;;::::1;::::0;;;::::1;::::0;;;59488:11:::1;:18:::0;59378:136::o;59522:88::-;59673:6;;-1:-1:-1;;;;;59673:6:0;59659:10;:20;59651:43;;;;-1:-1:-1;;;59651:43:0;;;;;;;:::i;:::-;59583:11:::1;:19:::0;59522:88::o;46026:170::-;46160:28;46170:4;46176:2;46180:7;46160:9;:28::i;60190:659::-;60290:7;;;;60282:44;;;;-1:-1:-1;;;60282:44:0;;12245:2:1;60282:44:0;;;12227:21:1;12284:2;12264:18;;;12257:30;-1:-1:-1;;;12303:18:1;;;12296:54;12367:18;;60282:44:0;12043:348:1;60282:44:0;60346:9;;;;;;;60345:10;60337:37;;;;-1:-1:-1;;;60337:37:0;;14674:2:1;60337:37:0;;;14656:21:1;14713:2;14693:18;;;14686:30;-1:-1:-1;;;14732:18:1;;;14725:45;14787:18;;60337:37:0;14472:339:1;60337:37:0;60418:4;60405:9;60393:11;;:21;;;;:::i;:::-;:29;;60385:44;;;;-1:-1:-1;;;60385:44:0;;;;;;;:::i;:::-;60455:10;60448:18;;;;:6;:18;;;;;;60480:1;;60448:28;;60467:9;;60448:28;:::i;:::-;:33;;60440:48;;;;-1:-1:-1;;;60440:48:0;;;;;;;:::i;:::-;60528:4;60516:9;60507:8;;:18;;;;:::i;:::-;:25;60499:47;;;;-1:-1:-1;;;60499:47:0;;11574:2:1;60499:47:0;;;11556:21:1;11613:1;11593:18;;;11586:29;-1:-1:-1;;;11631:18:1;;;11624:39;11680:18;;60499:47:0;11372:332:1;60499:47:0;60582:28;;-1:-1:-1;;60599:10:0;8193:2:1;8189:15;8185:53;60582:28:0;;;8173:66:1;60557:12:0;;8255::1;;60582:28:0;;;;;;;;;;;;60572:39;;;;;;60557:54;;60630:50;60649:12;;60630:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;60662:11:0;;;-1:-1:-1;60675:4:0;;-1:-1:-1;60630:18:0;:50::i;:::-;60622:68;;;;-1:-1:-1;;;60622:68:0;;11911:2:1;60622:68:0;;;11893:21:1;11950:1;11930:18;;;11923:29;-1:-1:-1;;;11968:18:1;;;11961:36;12014:18;;60622:68:0;11709:329:1;60622:68:0;60701:32;60711:10;60723:9;60701;:32::i;:::-;60755:9;60744:8;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;60782:10:0;60775:18;;;;:6;:18;;;;;:31;;60797:9;;60775:18;:31;;60797:9;;60775:31;:::i;:::-;;;;;;;;60832:9;60817:11;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;60190:659:0:o;36941:235::-;37127:9;;37147:11;;37062:16;;;;-1:-1:-1;;;;;37127:9:0;;;;37162:5;;37139:19;;:5;:19;:::i;:::-;37138:29;;;;:::i;:::-;37119:49;;;;36941:235;;;;;:::o;60857:387::-;60923:7;;;;60915:28;;;;-1:-1:-1;;;60915:28:0;;12598:2:1;60915:28:0;;;12580:21:1;12637:1;12617:18;;;12610:29;-1:-1:-1;;;12655:18:1;;;12648:38;12703:18;;60915:28:0;12396:331:1;60915:28:0;60962:9;;;;;;;60954:37;;;;-1:-1:-1;;;60954:37:0;;12934:2:1;60954:37:0;;;12916:21:1;12973:2;12953:18;;;12946:30;-1:-1:-1;;;12992:18:1;;;12985:45;13047:18;;60954:37:0;12732:339:1;60954:37:0;61035:4;61022:9;61010:11;;:21;;;;:::i;:::-;:29;;61002:44;;;;-1:-1:-1;;;61002:44:0;;;;;;;:::i;:::-;61072:10;61065:18;;;;:6;:18;;;;;;61097:1;;61065:28;;61084:9;;61065:28;:::i;:::-;:33;;61057:59;;;;-1:-1:-1;;;61057:59:0;;13278:2:1;61057:59:0;;;13260:21:1;13317:2;13297:18;;;13290:30;-1:-1:-1;;;13336:18:1;;;13329:42;13388:18;;61057:59:0;13076:336:1;61057:59:0;61127:32;61137:10;61149:9;61127;:32::i;:::-;61177:10;61170:18;;;;:6;:18;;;;;:31;;61192:9;;61170:18;:31;;61192:9;;61170:31;:::i;:::-;;;;;;;;61227:9;61212:11;;:24;;;;;;;:::i;46267:185::-;46405:39;46422:4;46428:2;46432:7;46405:39;;;;;;;;;;;;:16;:39::i;43466:125::-;43530:7;43557:21;43570:7;43557:12;:21::i;:::-;:26;;43466:125;-1:-1:-1;;43466:125:0:o;59204:166::-;59673:6;;-1:-1:-1;;;;;59673:6:0;59659:10;:20;59651:43;;;;-1:-1:-1;;;59651:43:0;;;;;;;:::i;:::-;59291:9:::1;;;;;;;;;;;59280:20;;:7;:20;;;;59272:63;;;::::0;-1:-1:-1;;;59272:63:0;;13977:2:1;59272:63:0::1;::::0;::::1;13959:21:1::0;14016:2;13996:18;;;13989:30;14055:33;14035:18;;;14028:61;14106:18;;59272:63:0::1;13775:355:1::0;59272:63:0::1;59343:9;:19:::0;;;::::1;;;;-1:-1:-1::0;;59343:19:0;;::::1;::::0;;;::::1;::::0;;59204:166::o;62363:91::-;62405:13;62438:8;62431:15;;;;;:::i;40914:206::-;40978:7;-1:-1:-1;;;;;41002:19:0;;40998:60;;41030:28;;-1:-1:-1;;;41030:28:0;;;;;;;;;;;40998:60;-1:-1:-1;;;;;;41084:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;41084:27:0;;40914:206::o;62073:282::-;62189:1;62170:8;:15;:20;;62161:63;;;;-1:-1:-1;;;62161:63:0;;13619:2:1;62161:63:0;;;13601:21:1;13658:2;13638:18;;;13631:30;13697:31;13677:18;;;13670:59;13746:18;;62161:63:0;13417:353:1;62161:63:0;62239:6;62235:113;62255:8;:15;62251:1;:19;62235:113;;;62291:45;62308:10;62320:2;62324:8;62333:1;62324:11;;;;;;;;:::i;62291:45::-;62272:3;;;;:::i;:::-;;;;62235:113;;60064:114;59673:6;;-1:-1:-1;;;;;59673:6:0;59659:10;:20;59651:43;;;;-1:-1:-1;;;59651:43:0;;;;;;;:::i;:::-;60150:20;;::::1;::::0;:12:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60064:114:::0;:::o;43827:104::-;43883:13;43916:7;43909:14;;;;;:::i;45437:287::-;-1:-1:-1;;;;;45536:24:0;;25667:10;45536:24;45532:54;;;45569:17;;-1:-1:-1;;;45569:17:0;;;;;;;;;;;45532:54;25667:10;45599:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45599:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45599:53:0;;;;;;;;;;45668:48;;10914:41:1;;;45599:42:0;;25667:10;45668:48;;10887:18:1;45668:48:0;;;;;;;45437:287;;:::o;59040:156::-;59673:6;;-1:-1:-1;;;;;59673:6:0;59659:10;:20;59651:43;;;;-1:-1:-1;;;59651:43:0;;;;;;;:::i;:::-;59125:7:::1;::::0;::::1;;59114:18;;::::0;::::1;;;;59106:57;;;::::0;-1:-1:-1;;;59106:57:0;;16498:2:1;59106:57:0::1;::::0;::::1;16480:21:1::0;16537:2;16517:18;;;16510:30;16576:29;16556:18;;;16549:57;16623:18;;59106:57:0::1;16296:351:1::0;59106:57:0::1;59171:7;:17:::0;;-1:-1:-1;;59171:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59040:156::o;46523:369::-;46690:28;46700:4;46706:2;46710:7;46690:9;:28::i;:::-;-1:-1:-1;;;;;46733:13:0;;12852:19;:23;;46733:76;;;;;46753:56;46784:4;46790:2;46794:7;46803:5;46753:30;:56::i;:::-;46752:57;46733:76;46729:156;;;46833:40;;-1:-1:-1;;;46833:40:0;;;;;;;;;;;46729:156;46523:369;;;;:::o;62572:254::-;62637:13;62671:16;62679:7;62671;:16::i;:::-;62663:76;;;;-1:-1:-1;;;62663:76:0;;15018:2:1;62663:76:0;;;15000:21:1;15057:2;15037:18;;;15030:30;15096:34;15076:18;;;15069:62;-1:-1:-1;;;15147:18:1;;;15140:45;15202:19;;62663:76:0;14816:411:1;62663:76:0;62781:8;62790:18;:7;:16;:18::i;:::-;62764:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62750:68;;62572:254;;;:::o;59944:112::-;59673:6;;-1:-1:-1;;;;;59673:6:0;59659:10;:20;59651:43;;;;-1:-1:-1;;;59651:43:0;;;;;;;:::i;:::-;60029:19;;::::1;::::0;:8:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;62462:98::-:0;62508:13;62540:12;62533:19;;;;;:::i;59726:210::-;59673:6;;-1:-1:-1;;;;;59673:6:0;59659:10;:20;59651:43;;;;-1:-1:-1;;;59651:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59817:22:0;::::1;59809:37;;;::::0;-1:-1:-1;;;59809:37:0;;16168:2:1;59809:37:0::1;::::0;::::1;16150:21:1::0;16207:1;16187:18;;;16180:29;-1:-1:-1;;;16225:18:1;;;16218:32;16267:18;;59809:37:0::1;15966:325:1::0;59809:37:0::1;59883:6;::::0;59862:38:::1;::::0;-1:-1:-1;;;;;59862:38:0;;::::1;::::0;59883:6:::1;::::0;59862:38:::1;::::0;59883:6:::1;::::0;59862:38:::1;59911:6;:17:::0;;-1:-1:-1;;;;;;59911:17:0::1;-1:-1:-1::0;;;;;59911:17:0;;;::::1;::::0;;;::::1;::::0;;59726:210::o;47342:104::-;47411:27;47421:2;47425:8;47411:27;;;;;;;;;;;;:9;:27::i;47147:187::-;47204:4;47247:7;39607:1;47228:26;;:53;;;;;47268:13;;47258:7;:23;47228:53;:98;;;;-1:-1:-1;;47299:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;47299:27:0;;;;47298:28;;47147:187::o;55317:196::-;55432:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;55432:29:0;-1:-1:-1;;;;;55432:29:0;;;;;;;;;55477:28;;55432:24;;55477:28;;;;;;;55317:196;;;:::o;50260:2130::-;50375:35;50413:21;50426:7;50413:12;:21::i;:::-;50375:59;;50473:4;-1:-1:-1;;;;;50451:26:0;:13;:18;;;-1:-1:-1;;;;;50451:26:0;;50447:67;;50486:28;;-1:-1:-1;;;50486:28:0;;;;;;;;;;;50447:67;50527:22;25667:10;-1:-1:-1;;;;;50553:20:0;;;;:73;;-1:-1:-1;50590:36:0;50607:4;25667:10;45795:164;:::i;50590:36::-;50553:126;;;-1:-1:-1;25667:10:0;50643:20;50655:7;50643:11;:20::i;:::-;-1:-1:-1;;;;;50643:36:0;;50553:126;50527:153;;50698:17;50693:66;;50724:35;;-1:-1:-1;;;50724:35:0;;;;;;;;;;;50693:66;-1:-1:-1;;;;;50774:16:0;;50770:52;;50799:23;;-1:-1:-1;;;50799:23:0;;;;;;;;;;;50770:52;50943:35;50960:1;50964:7;50973:4;50943:8;:35::i;:::-;-1:-1:-1;;;;;51274:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;51274:31:0;;;-1:-1:-1;;;;;51274:31:0;;;-1:-1:-1;;51274:31:0;;;;;;;51320:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51320:29:0;;;;;;;;;;;51400:20;;;:11;:20;;;;;;51435:18;;-1:-1:-1;;;;;;51468:49:0;;;;-1:-1:-1;;;51501:15:0;51468:49;;;;;;;;;;51791:11;;51851:24;;;;;51894:13;;51400:20;;51851:24;;51894:13;51890:384;;52104:13;;52089:11;:28;52085:174;;52142:20;;52211:28;;;;-1:-1:-1;;;;;52185:54:0;-1:-1:-1;;;52185:54:0;-1:-1:-1;;;;;;52185:54:0;;;-1:-1:-1;;;;;52142:20:0;;52185:54;;;;52085:174;51249:1036;;;52321:7;52317:2;-1:-1:-1;;;;;52302:27:0;52311:4;-1:-1:-1;;;;;52302:27:0;;;;;;;;;;;52340:42;50364:2026;;50260:2130;;;:::o;1253:190::-;1378:4;1431;1402:25;1415:5;1422:4;1402:12;:25::i;:::-;:33;;1253:190;-1:-1:-1;;;;1253:190:0:o;42295:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;42406:7:0;;39607:1;42455:23;;:47;;;;;42489:13;;42482:4;:20;42455:47;42451:886;;;42523:31;42557:17;;;:11;:17;;;;;;;;;42523:51;;;;;;;;;-1:-1:-1;;;;;42523:51:0;;;;-1:-1:-1;;;42523:51:0;;-1:-1:-1;;;;;42523:51:0;;;;;;;;-1:-1:-1;;;42523:51:0;;;;;;;;;;;;;;42593:729;;42643:14;;-1:-1:-1;;;;;42643:28:0;;42639:101;;42707:9;42295:1109;-1:-1:-1;;;42295:1109:0:o;42639:101::-;-1:-1:-1;;;43082:6:0;43127:17;;;;:11;:17;;;;;;;;;43115:29;;;;;;;;;-1:-1:-1;;;;;43115:29:0;;;;;-1:-1:-1;;;43115:29:0;;-1:-1:-1;;;;;43115:29:0;;;;;;;;-1:-1:-1;;;43115:29:0;;;;;;;;;;;;;43175:28;43171:109;;43243:9;42295:1109;-1:-1:-1;;;42295:1109:0:o;43171:109::-;43042:261;;;42504:833;42451:886;43365:31;;-1:-1:-1;;;43365:31:0;;;;;;;;;;;56005:667;56189:72;;-1:-1:-1;;;56189:72:0;;56168:4;;-1:-1:-1;;;;;56189:36:0;;;;;:72;;25667:10;;56240:4;;56246:7;;56255:5;;56189:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56189:72:0;;;;;;;;-1:-1:-1;;56189:72:0;;;;;;;;;;;;:::i;:::-;;;56185:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56423:13:0;;56419:235;;56469:40;;-1:-1:-1;;;56469:40:0;;;;;;;;;;;56419:235;56612:6;56606:13;56597:6;56593:2;56589:15;56582:38;56185:480;-1:-1:-1;;;;;;56308:55:0;-1:-1:-1;;;56308:55:0;;-1:-1:-1;56185:480:0;56005:667;;;;;;:::o;9223:723::-;9279:13;9500:10;9496:53;;-1:-1:-1;;9527:10:0;;;;;;;;;;;;-1:-1:-1;;;9527:10:0;;;;;9223:723::o;9496:53::-;9574:5;9559:12;9615:78;9622:9;;9615:78;;9648:8;;;;:::i;:::-;;-1:-1:-1;9671:10:0;;-1:-1:-1;9679:2:0;9671:10;;:::i;:::-;;;9615:78;;;9703:19;9735:6;-1:-1:-1;;;;;9725:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9725:17:0;;9703:39;;9753:154;9760:10;;9753:154;;9787:11;9797:1;9787:11;;:::i;:::-;;-1:-1:-1;9856:10:0;9864:2;9856:5;:10;:::i;:::-;9843:24;;:2;:24;:::i;:::-;9830:39;;9813:6;9820;9813:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9813:56:0;;;;;;;;-1:-1:-1;9884:11:0;9893:2;9884:11;;:::i;:::-;;;9753:154;;47809:163;47932:32;47938:2;47942:8;47952:5;47959:4;47932:5;:32::i;2120:296::-;2203:7;2246:4;2203:7;2261:118;2285:5;:12;2281:1;:16;2261:118;;;2334:33;2344:12;2358:5;2364:1;2358:8;;;;;;;;:::i;:::-;;;;;;;2334:9;:33::i;:::-;2319:48;-1:-1:-1;2299:3:0;;;;:::i;:::-;;;;2261:118;;;-1:-1:-1;2396:12:0;2120:296;-1:-1:-1;;;2120:296:0:o;48231:1775::-;48393:13;;-1:-1:-1;;;;;48421:16:0;;48417:48;;48446:19;;-1:-1:-1;;;48446:19:0;;;;;;;;;;;48417:48;48480:13;48476:44;;48502:18;;-1:-1:-1;;;48502:18:0;;;;;;;;;;;48476:44;-1:-1:-1;;;;;48871:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;48930:49:0;;-1:-1:-1;;;;;48871:44:0;;;;;;;48930:49;;;;-1:-1:-1;;48871:44:0;;;;;;48930:49;;;;;;;;;;;;;;;;48996:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;49046:66:0;;;;-1:-1:-1;;;49096:15:0;49046:66;;;;;;;;;;48996:25;49193:23;;;49237:4;:23;;;;-1:-1:-1;;;;;;49245:13:0;;12852:19;:23;;49245:15;49233:641;;;49281:314;49312:38;;49337:12;;-1:-1:-1;;;;;49312:38:0;;;49329:1;;49312:38;;49329:1;;49312:38;49378:69;49417:1;49421:2;49425:14;;;;;;49441:5;49378:30;:69::i;:::-;49373:174;;49483:40;;-1:-1:-1;;;49483:40:0;;;;;;;;;;;49373:174;49590:3;49574:12;:19;;49281:314;;49676:12;49659:13;;:29;49655:43;;49690:8;;;49655:43;49233:641;;;49739:120;49770:40;;49795:14;;;;;-1:-1:-1;;;;;49770:40:0;;;49787:1;;49770:40;;49787:1;;49770:40;49854:3;49838:12;:19;;49739:120;;49233:641;-1:-1:-1;49888:13:0;:28;49938:60;46523:369;8327:149;8390:7;8421:1;8417;:5;:51;;8552:13;8646:15;;;8682:4;8675:15;;;8729:4;8713:21;;8417:51;;;8552:13;8646:15;;;8682:4;8675:15;;;8729:4;8713:21;;8425:20;8410:58;8327:149;-1:-1:-1;;;8327: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;17714:1;17707:14;;;17751:4;17738: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;15232:326::-;15434:2;15416:21;;;15473:1;15453:18;;;15446:29;-1:-1:-1;;;15506:2:1;15491:18;;15484:33;15549:2;15534:18;;15232:326::o;16652:334::-;16854:2;16836:21;;;16893:2;16873:18;;;16866:30;-1:-1:-1;;;16927:2:1;16912:18;;16905:40;16977:2;16962:18;;16652:334::o;17173:275::-;17244:2;17238:9;17309:2;17290:13;;-1:-1:-1;;17286:27:1;17274:40;;-1:-1:-1;;;;;17329:34:1;;17365:22;;;17326:62;17323:88;;;17391:18;;:::i;:::-;17427:2;17420:22;17173:275;;-1:-1:-1;17173:275:1:o;17453:183::-;17513:4;-1:-1:-1;;;;;17538:6:1;17535:30;17532:56;;;17568:18;;:::i;:::-;-1:-1:-1;17613:1:1;17609:14;17625:4;17605:25;;17453:183::o;17767:128::-;17807:3;17838:1;17834:6;17831:1;17828:13;17825:39;;;17844:18;;:::i;:::-;-1:-1:-1;17880:9:1;;17767:128::o;17900:120::-;17940:1;17966;17956:35;;17971:18;;:::i;:::-;-1:-1:-1;18005:9:1;;17900:120::o;18025:168::-;18065:7;18131:1;18127;18123:6;18119:14;18116:1;18113:21;18108:1;18101:9;18094:17;18090:45;18087:71;;;18138:18;;:::i;:::-;-1:-1:-1;18178:9:1;;18025:168::o;18198:125::-;18238:4;18266:1;18263;18260:8;18257:34;;;18271:18;;:::i;:::-;-1:-1:-1;18308:9:1;;18198:125::o;18328:258::-;18400:1;18410:113;18424:6;18421:1;18418:13;18410:113;;;18500:11;;;18494:18;18481:11;;;18474:39;18446:2;18439:10;18410:113;;;18541:6;18538:1;18535:13;18532:48;;;-1:-1:-1;;18576:1:1;18558:16;;18551:27;18328:258::o;18591:380::-;18670:1;18666:12;;;;18713;;;18734:61;;18788:4;18780:6;18776:17;18766:27;;18734:61;18841:2;18833:6;18830:14;18810:18;18807:38;18804:161;;;18887:10;18882:3;18878:20;18875:1;18868:31;18922:4;18919:1;18912:15;18950:4;18947:1;18940:15;18804:161;;18591:380;;;:::o;18976:135::-;19015:3;-1:-1:-1;;19036:17:1;;19033:43;;;19056:18;;:::i;:::-;-1:-1:-1;19103:1:1;19092:13;;18976:135::o;19116:112::-;19148:1;19174;19164:35;;19179:18;;:::i;:::-;-1:-1:-1;19213:9:1;;19116:112::o;19233:127::-;19294:10;19289:3;19285:20;19282:1;19275:31;19325:4;19322:1;19315:15;19349:4;19346:1;19339:15;19365:127;19426:10;19421:3;19417:20;19414:1;19407:31;19457:4;19454:1;19447:15;19481:4;19478:1;19471:15;19497:127;19558:10;19553:3;19549:20;19546:1;19539:31;19589:4;19586:1;19579:15;19613:4;19610:1;19603:15;19629:127;19690:10;19685:3;19681:20;19678:1;19671:31;19721:4;19718:1;19711:15;19745:4;19742:1;19735:15;19761:131;-1:-1:-1;;;;;;19835:32:1;;19825:43;;19815:71;;19882:1;19879;19872:12

Swarm Source

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