ETH Price: $3,168.11 (-7.82%)
Gas: 9 Gwei

Token

Yakuza Legacy (YK)
 

Overview

Max Total Supply

777 YK

Holders

220

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 YK
0x4f436080de10ff9a1b275adf85474f4715be20a9
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:
Yakuza_Contract

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-21
*/

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.18;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

// File: contracts/artifacts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;


interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
// File: contracts/artifacts/OperatorFilterer.sol


pragma solidity ^0.8.13;


contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator() virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (!operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
// File: contracts/artifacts/DefaultOperatorFilterer.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;


contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// File: contracts/NebulaGods.sol

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

// File: annunakis.sol

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


// 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: contracts/rose.sol

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



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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 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(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.7;



contract Yakuza_Contract is ERC721A, ERC2981, Ownable, ReentrancyGuard, DefaultOperatorFilterer {
    using Strings for uint256;
    mapping(address => uint256) public publicClaimed;
    mapping(address => uint256) public whitelistClaimed;
    string public baseURI;
    string public hiddenMetadataURI="ipfs://bafybeihffuaetqissj6m3n3jpojr5xtpdzgzxoqnc23mb4c6m4f2hza4tq/1.json";
    bool public revealed;
    bool public paused = true;
    address public ROYALITY__ADDRESS;
    uint96 public ROYALITY__VALUE;
    uint256 public publicPrice = 0.049 ether;
    uint256 public presalePrice = 0.044 ether;
    uint256 public publicMintPerTx = 3;
    uint256 public whitelistMintPerTx = 5;
    uint256 public maxSupply = 777;
    bool public whitelistStatus = true;
    bytes32 public root;

    constructor() ERC721A("Yakuza Legacy", "YK") {
        ROYALITY__ADDRESS = msg.sender;
        ROYALITY__VALUE = 250;
        _setDefaultRoyalty(ROYALITY__ADDRESS, ROYALITY__VALUE);
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    function mint(uint256 quantity, bytes32[] calldata proofs) external payable nonReentrant {
        require(!paused, "The contract is paused!");
        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");
        uint256 freeMint = quantity;
        if(whitelistStatus) {
            require(isValid(proofs), "You're not whitelisted");
            require(whitelistClaimed[msg.sender] + quantity <= whitelistMintPerTx, "You can't mint this amount");
            if (whitelistClaimed[msg.sender] == 0 )
                freeMint--;
            require(msg.value >= presalePrice * freeMint, "Insufficient Funds!");
            whitelistClaimed[msg.sender] += quantity;
        } 
         else {
             require(publicClaimed[msg.sender] + quantity <= publicMintPerTx, "You can't mint this amount");
             require(msg.value >= publicPrice * quantity, "Insufficient Funds!");
             publicClaimed[msg.sender] +=quantity;
        }
        _safeMint(msg.sender, quantity);
    }

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


    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function isValid(bytes32[] calldata _merkleProof) internal view returns (bool){
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, root, leaf), "Address is not whitelisted!");
        return true;
    }
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return hiddenMetadataURI;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }
    function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721A, ERC2981)
    returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId)
            || ERC2981.supportsInterface(interfaceId);
    }
    function setRoot(bytes32 _newRoot) external onlyOwner {
        root = _newRoot;
    }
    function setWhitelistStatus(bool _newState) external onlyOwner {
        whitelistStatus = _newState;
    }
    
    function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner {
        _setDefaultRoyalty(receiver, royaltyFraction);
    }
    function setWhitelistMintPerTx(uint256 _newState) external onlyOwner {
        whitelistMintPerTx = _newState;
    }
    function setPresalePrice(uint256 _newState) external onlyOwner {
        presalePrice = _newState;
    }
    function setCost(uint256 _newPublicCost) external onlyOwner {
        publicPrice = _newPublicCost;
    }
 
    function setMaxPublic(uint256 _newMaxPublic) external onlyOwner {
        publicMintPerTx = _newMaxPublic;
    }
    
    function setMaxSupply(uint256 _amount) external onlyOwner {
        maxSupply = _amount;
    }

    function setPaused(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }
    function setRevealed(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setHiddenMetadataURI(string memory _URI) external onlyOwner {
        hiddenMetadataURI = _URI;
    }

    function airDrop(uint256 quantity, address _address) external onlyOwner {
        _safeMint(_address, quantity);
    }
    

    function airDropBatch(address[] memory _addresses) external onlyOwner {
        for(uint256 i = 0 ; i < _addresses.length; i ++) {
            _safeMint(_addresses[i], 1);
        }
    }

    function withdraw() public onlyOwner {
         // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
        // =============================================================================
    }
      function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ROYALITY__ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALITY__VALUE","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airDropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","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":[],"name":"hiddenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proofs","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setHiddenMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newState","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newState","type":"uint256"}],"name":"setWhitelistMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newState","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260496080818152906200314460a039600f906200002390826200049d565b506010805461ff00191661010017905566ae153d89fe8000601255669c51c4521e0000601355600360145560056015556103096016556017805460ff191660011790553480156200007357600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020016c59616b757a61204c656761637960981b81525060405180604001604052806002815260200161594b60f01b8152508160029081620000dd91906200049d565b506003620000ec82826200049d565b5050600160005550620000ff33620002a1565b6001600b556daaeb6d7670e522a718067333cd4e3b15620002495780156200019757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017857600080fd5b505af11580156200018d573d6000803e3d6000fd5b5050505062000249565b6001600160a01b03821615620001e85760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200015d565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022f57600080fd5b505af115801562000244573d6000803e3d6000fd5b505050505b5050601080546201000033810262010000600160b01b03199092169190911791829055601180546001600160601b03191660fa9081179091556200029b92919091046001600160a01b031690620002f3565b62000569565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620003675760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003bf5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200035e565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200042357607f821691505b6020821081036200044457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200049857600081815260208120601f850160051c81016020861015620004735750805b601f850160051c820191505b8181101562000494578281556001016200047f565b5050505b505050565b81516001600160401b03811115620004b957620004b9620003f8565b620004d181620004ca84546200040e565b846200044a565b602080601f831160018114620005095760008415620004f05750858301515b600019600386901b1c1916600185901b17855562000494565b600085815260208120601f198616915b828110156200053a5788860151825594840194600190910190840162000519565b5085821015620005595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612bcb80620005796000396000f3fe6080604052600436106102ad5760003560e01c8063715018a611610175578063c21b471b116100dc578063e0a8085311610095578063f2fde38b1161006f578063f2fde38b14610856578063f49b472f14610876578063fae1f6e214610896578063fbdb8494146108b657600080fd5b8063e0a8085314610800578063e985e9c514610820578063ebf0c7171461084057600080fd5b8063c21b471b14610747578063c561314c14610767578063c87b56dd1461077d578063d5abeb011461079d578063dab5f340146107b3578063db4bec44146107d357600080fd5b8063a945bf801161012e578063a945bf801461069c578063aed38015146106b2578063b5b1cd7c146106d2578063b88d4fde146106ff578063ba41b0c61461071f578063ba9e12f71461073257600080fd5b8063715018a6146105f45780638da5cb5b1461060957806395d89b41146106275780639a87a46d1461063c5780639ddf7ad314610662578063a22cb4651461067c57600080fd5b80633ccfd60b1161021957806355f804b3116101d257806355f804b3146105405780635c975abb146105605780636352211e1461057f5780636c0360eb1461059f5780636f8b44b0146105b457806370a08231146105d457600080fd5b80633ccfd60b1461049157806342842e0e146104a657806344a0d68a146104c65780634a999118146104e6578063512507c614610506578063518302271461052657600080fd5b806316c38b3c1161026b57806316c38b3c1461039d57806318160ddd146103bd5780631f32975e146103da57806323b872dd146104125780632a55205a146104325780633549345e1461047157600080fd5b80620e7fa8146102b257806301ffc9a7146102db57806306fdde031461030b578063081812fc1461032d578063095ea7b3146103655780630caea53b14610387575b600080fd5b3480156102be57600080fd5b506102c860135481565b6040519081526020015b60405180910390f35b3480156102e757600080fd5b506102fb6102f63660046123ba565b6108d6565b60405190151581526020016102d2565b34801561031757600080fd5b506103206108f6565b6040516102d29190612427565b34801561033957600080fd5b5061034d61034836600461243a565b610988565b6040516001600160a01b0390911681526020016102d2565b34801561037157600080fd5b5061038561038036600461246f565b6109cc565b005b34801561039357600080fd5b506102c860145481565b3480156103a957600080fd5b506103856103b83660046124a7565b610a59565b3480156103c957600080fd5b5060015460005403600019016102c8565b3480156103e657600080fd5b506011546103fa906001600160601b031681565b6040516001600160601b0390911681526020016102d2565b34801561041e57600080fd5b5061038561042d3660046124c4565b610aa6565b34801561043e57600080fd5b5061045261044d366004612500565b610b5a565b604080516001600160a01b0390931683526020830191909152016102d2565b34801561047d57600080fd5b5061038561048c36600461243a565b610c06565b34801561049d57600080fd5b50610385610c35565b3480156104b257600080fd5b506103856104c13660046124c4565b610cd3565b3480156104d257600080fd5b506103856104e136600461243a565b610d87565b3480156104f257600080fd5b506103856105013660046124a7565b610db6565b34801561051257600080fd5b506103856105213660046125bf565b610df3565b34801561053257600080fd5b506010546102fb9060ff1681565b34801561054c57600080fd5b5061038561055b3660046125bf565b610e2d565b34801561056c57600080fd5b506010546102fb90610100900460ff1681565b34801561058b57600080fd5b5061034d61059a36600461243a565b610e63565b3480156105ab57600080fd5b50610320610e75565b3480156105c057600080fd5b506103856105cf36600461243a565b610f03565b3480156105e057600080fd5b506102c86105ef366004612607565b610f32565b34801561060057600080fd5b50610385610f80565b34801561061557600080fd5b50600a546001600160a01b031661034d565b34801561063357600080fd5b50610320610fb6565b34801561064857600080fd5b5060105461034d906201000090046001600160a01b031681565b34801561066e57600080fd5b506017546102fb9060ff1681565b34801561068857600080fd5b50610385610697366004612622565b610fc5565b3480156106a857600080fd5b506102c860125481565b3480156106be57600080fd5b506103856106cd366004612659565b61105a565b3480156106de57600080fd5b506102c86106ed366004612607565b600c6020526000908152604090205481565b34801561070b57600080fd5b5061038561071a366004612685565b61108e565b61038561072d366004612700565b611149565b34801561073e57600080fd5b506103206114c1565b34801561075357600080fd5b5061038561076236600461277e565b6114ce565b34801561077357600080fd5b506102c860155481565b34801561078957600080fd5b5061032061079836600461243a565b611502565b3480156107a957600080fd5b506102c860165481565b3480156107bf57600080fd5b506103856107ce36600461243a565b61166e565b3480156107df57600080fd5b506102c86107ee366004612607565b600d6020526000908152604090205481565b34801561080c57600080fd5b5061038561081b3660046124a7565b61169d565b34801561082c57600080fd5b506102fb61083b3660046127b6565b6116da565b34801561084c57600080fd5b506102c860185481565b34801561086257600080fd5b50610385610871366004612607565b611708565b34801561088257600080fd5b5061038561089136600461243a565b6117a0565b3480156108a257600080fd5b506103856108b13660046127e0565b6117cf565b3480156108c257600080fd5b506103856108d136600461243a565b61183b565b60006108e18261186a565b806108f057506108f0826118ba565b92915050565b6060600280546109059061288c565b80601f01602080910402602001604051908101604052809291908181526020018280546109319061288c565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b6000610993826118df565b6109b0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109d782610e63565b9050806001600160a01b0316836001600160a01b031603610a0b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a2b5750610a2981336116da565b155b15610a49576040516367d9dca160e11b815260040160405180910390fd5b610a54838383611918565b505050565b600a546001600160a01b03163314610a8c5760405162461bcd60e51b8152600401610a83906128c6565b60405180910390fd5b601080549115156101000261ff0019909216919091179055565b6daaeb6d7670e522a718067333cd4e3b15610b4f57604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610b0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3091906128fb565b610b4f57604051633b79c77360e21b8152336004820152602401610a83565b610a54838383611974565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610bcf5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610bee906001600160601b03168761292e565b610bf8919061295b565b915196919550909350505050565b600a546001600160a01b03163314610c305760405162461bcd60e51b8152600401610a83906128c6565b601355565b600a546001600160a01b03163314610c5f5760405162461bcd60e51b8152600401610a83906128c6565b6000610c73600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cbd576040519150601f19603f3d011682016040523d82523d6000602084013e610cc2565b606091505b5050905080610cd057600080fd5b50565b6daaeb6d7670e522a718067333cd4e3b15610d7c57604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d91906128fb565b610d7c57604051633b79c77360e21b8152336004820152602401610a83565b610a5483838361197f565b600a546001600160a01b03163314610db15760405162461bcd60e51b8152600401610a83906128c6565b601255565b600a546001600160a01b03163314610de05760405162461bcd60e51b8152600401610a83906128c6565b6017805460ff1916911515919091179055565b600a546001600160a01b03163314610e1d5760405162461bcd60e51b8152600401610a83906128c6565b600f610e2982826129bd565b5050565b600a546001600160a01b03163314610e575760405162461bcd60e51b8152600401610a83906128c6565b600e610e2982826129bd565b6000610e6e8261199a565b5192915050565b600e8054610e829061288c565b80601f0160208091040260200160405190810160405280929190818152602001828054610eae9061288c565b8015610efb5780601f10610ed057610100808354040283529160200191610efb565b820191906000526020600020905b815481529060010190602001808311610ede57829003601f168201915b505050505081565b600a546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610a83906128c6565b601655565b60006001600160a01b038216610f5b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600a546001600160a01b03163314610faa5760405162461bcd60e51b8152600401610a83906128c6565b610fb46000611ac1565b565b6060600380546109059061288c565b336001600160a01b03831603610fee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146110845760405162461bcd60e51b8152600401610a83906128c6565b610e298183611b13565b6daaeb6d7670e522a718067333cd4e3b1561113757604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af11580156110f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111891906128fb565b61113757604051633b79c77360e21b8152336004820152602401610a83565b61114384848484611b2d565b50505050565b6002600b540361119b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a83565b6002600b55601054610100900460ff16156111f85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a83565b6000831180156112215750601654600154600054859190036000190161121e9190612a7c565b11155b61125f5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610a83565b601754839060ff16156113c8576112768383611b78565b6112bb5760405162461bcd60e51b8152602060048201526016602482015275165bdd49dc99481b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610a83565b601554336000908152600d60205260409020546112d9908690612a7c565b11156113275760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610a83565b336000908152600d6020526040812054900361134b578061134781612a8f565b9150505b80601354611359919061292e565b34101561139e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b6044820152606401610a83565b336000908152600d6020526040812080548692906113bd908490612a7c565b909155506114ac9050565b601454336000908152600c60205260409020546113e6908690612a7c565b11156114345760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610a83565b83601254611442919061292e565b3410156114875760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b6044820152606401610a83565b336000908152600c6020526040812080548692906114a6908490612a7c565b90915550505b6114b63385611b13565b50506001600b555050565b600f8054610e829061288c565b600a546001600160a01b031633146114f85760405162461bcd60e51b8152600401610a83906128c6565b610e298282611c4a565b606061150d826118df565b6115715760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a83565b60105460ff16151560000361161257600f805461158d9061288c565b80601f01602080910402602001604051908101604052809291908181526020018280546115b99061288c565b80156116065780601f106115db57610100808354040283529160200191611606565b820191906000526020600020905b8154815290600101906020018083116115e957829003601f168201915b50505050509050919050565b600061161c611d47565b9050600081511161163c5760405180602001604052806000815250611667565b8061164684611d56565b604051602001611657929190612aa6565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116985760405162461bcd60e51b8152600401610a83906128c6565b601855565b600a546001600160a01b031633146116c75760405162461bcd60e51b8152600401610a83906128c6565b6010805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146117325760405162461bcd60e51b8152600401610a83906128c6565b6001600160a01b0381166117975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a83565b610cd081611ac1565b600a546001600160a01b031633146117ca5760405162461bcd60e51b8152600401610a83906128c6565b601555565b600a546001600160a01b031633146117f95760405162461bcd60e51b8152600401610a83906128c6565b60005b8151811015610e295761182982828151811061181a5761181a612ae5565b60200260200101516001611b13565b8061183381612afb565b9150506117fc565b600a546001600160a01b031633146118655760405162461bcd60e51b8152600401610a83906128c6565b601455565b60006001600160e01b031982166380ac58cd60e01b148061189b57506001600160e01b03198216635b5e139f60e01b145b806108f057506301ffc9a760e01b6001600160e01b03198316146108f0565b60006001600160e01b0319821663152a902d60e11b14806108f057506108f08261186a565b6000816001111580156118f3575060005482105b80156108f0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a54838383611e5e565b610a548383836040518060200160405280600081525061108e565b604080516060810182526000808252602082018190529181019190915281806001111580156119ca575060005481105b15611aa857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611aa65780516001600160a01b031615611a3d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611aa1579392505050565b611a3d565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e2982826040518060200160405280600081525061204c565b611b38848484611e5e565b6001600160a01b0383163b15158015611b5a5750611b5884848484612059565b155b15611143576040516368d2bf6b60e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611bf4848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018549150849050612144565b611c405760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642100000000006044820152606401610a83565b5060019392505050565b6127106001600160601b0382161115611cb85760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a83565b6001600160a01b038216611d0e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a83565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6060600e80546109059061288c565b606081600003611d7d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611da75780611d9181612afb565b9150611da09050600a8361295b565b9150611d81565b6000816001600160401b03811115611dc157611dc1612522565b6040519080825280601f01601f191660200182016040528015611deb576020820181803683370190505b5090505b8415611e5657611e00600183612b14565b9150611e0d600a86612b27565b611e18906030612a7c565b60f81b818381518110611e2d57611e2d612ae5565b60200101906001600160f81b031916908160001a905350611e4f600a8661295b565b9450611def565b949350505050565b6000611e698261199a565b9050836001600160a01b031681600001516001600160a01b031614611ea05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611ebe5750611ebe85336116da565b80611ed9575033611ece84610988565b6001600160a01b0316145b905080611ef957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611f2057604051633a954ecd60e21b815260040160405180910390fd5b611f2c60008487611918565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661200057600054821461200057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a54838383600161215a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061208e903390899088908890600401612b3b565b6020604051808303816000875af19250505080156120c9575060408051601f3d908101601f191682019092526120c691810190612b78565b60015b612127573d8080156120f7576040519150601f19603f3d011682016040523d82523d6000602084013e6120fc565b606091505b50805160000361211f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600082612151858461232b565b14949350505050565b6000546001600160a01b03851661218357604051622e076360e81b815260040160405180910390fd5b836000036121a45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561225557506001600160a01b0387163b15155b156122dd575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122a66000888480600101955088612059565b6122c3576040516368d2bf6b60e11b815260040160405180910390fd5b80820361225b5782600054146122d857600080fd5b612322565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036122de575b50600055612045565b600081815b84518110156123705761235c8286838151811061234f5761234f612ae5565b6020026020010151612378565b91508061236881612afb565b915050612330565b509392505050565b6000818310612394576000828152602084905260409020611667565b5060009182526020526040902090565b6001600160e01b031981168114610cd057600080fd5b6000602082840312156123cc57600080fd5b8135611667816123a4565b60005b838110156123f25781810151838201526020016123da565b50506000910152565b600081518084526124138160208601602086016123d7565b601f01601f19169290920160200192915050565b60208152600061166760208301846123fb565b60006020828403121561244c57600080fd5b5035919050565b80356001600160a01b038116811461246a57600080fd5b919050565b6000806040838503121561248257600080fd5b61248b83612453565b946020939093013593505050565b8015158114610cd057600080fd5b6000602082840312156124b957600080fd5b813561166781612499565b6000806000606084860312156124d957600080fd5b6124e284612453565b92506124f060208501612453565b9150604084013590509250925092565b6000806040838503121561251357600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561256057612560612522565b604052919050565b60006001600160401b0383111561258157612581612522565b612594601f8401601f1916602001612538565b90508281528383830111156125a857600080fd5b828260208301376000602084830101529392505050565b6000602082840312156125d157600080fd5b81356001600160401b038111156125e757600080fd5b8201601f810184136125f857600080fd5b611e5684823560208401612568565b60006020828403121561261957600080fd5b61166782612453565b6000806040838503121561263557600080fd5b61263e83612453565b9150602083013561264e81612499565b809150509250929050565b6000806040838503121561266c57600080fd5b8235915061267c60208401612453565b90509250929050565b6000806000806080858703121561269b57600080fd5b6126a485612453565b93506126b260208601612453565b92506040850135915060608501356001600160401b038111156126d457600080fd5b8501601f810187136126e557600080fd5b6126f487823560208401612568565b91505092959194509250565b60008060006040848603121561271557600080fd5b8335925060208401356001600160401b038082111561273357600080fd5b818601915086601f83011261274757600080fd5b81358181111561275657600080fd5b8760208260051b850101111561276b57600080fd5b6020830194508093505050509250925092565b6000806040838503121561279157600080fd5b61279a83612453565b915060208301356001600160601b038116811461264e57600080fd5b600080604083850312156127c957600080fd5b6127d283612453565b915061267c60208401612453565b600060208083850312156127f357600080fd5b82356001600160401b038082111561280a57600080fd5b818501915085601f83011261281e57600080fd5b81358181111561283057612830612522565b8060051b9150612841848301612538565b818152918301840191848101908884111561285b57600080fd5b938501935b838510156128805761287185612453565b82529385019390850190612860565b98975050505050505050565b600181811c908216806128a057607f821691505b6020821081036128c057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561290d57600080fd5b815161166781612499565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108f0576108f0612918565b634e487b7160e01b600052601260045260246000fd5b60008261296a5761296a612945565b500490565b601f821115610a5457600081815260208120601f850160051c810160208610156129965750805b601f850160051c820191505b818110156129b5578281556001016129a2565b505050505050565b81516001600160401b038111156129d6576129d6612522565b6129ea816129e4845461288c565b8461296f565b602080601f831160018114612a1f5760008415612a075750858301515b600019600386901b1c1916600185901b1785556129b5565b600085815260208120601f198616915b82811015612a4e57888601518255948401946001909101908401612a2f565b5085821015612a6c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156108f0576108f0612918565b600081612a9e57612a9e612918565b506000190190565b60008351612ab88184602088016123d7565b835190830190612acc8183602088016123d7565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b600060018201612b0d57612b0d612918565b5060010190565b818103818111156108f0576108f0612918565b600082612b3657612b36612945565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6e908301846123fb565b9695505050505050565b600060208284031215612b8a57600080fd5b8151611667816123a456fea2646970667358221220c3e3f1ab7df1f1765ed47a9c517feb78205ac6c31f54f279c2be6c48ce3cce0764736f6c63430008120033697066733a2f2f6261667962656968666675616574716973736a366d336e336a706f6a7235787470647a677a786f716e6332336d623463366d346632687a613474712f312e6a736f6e

Deployed Bytecode

0x6080604052600436106102ad5760003560e01c8063715018a611610175578063c21b471b116100dc578063e0a8085311610095578063f2fde38b1161006f578063f2fde38b14610856578063f49b472f14610876578063fae1f6e214610896578063fbdb8494146108b657600080fd5b8063e0a8085314610800578063e985e9c514610820578063ebf0c7171461084057600080fd5b8063c21b471b14610747578063c561314c14610767578063c87b56dd1461077d578063d5abeb011461079d578063dab5f340146107b3578063db4bec44146107d357600080fd5b8063a945bf801161012e578063a945bf801461069c578063aed38015146106b2578063b5b1cd7c146106d2578063b88d4fde146106ff578063ba41b0c61461071f578063ba9e12f71461073257600080fd5b8063715018a6146105f45780638da5cb5b1461060957806395d89b41146106275780639a87a46d1461063c5780639ddf7ad314610662578063a22cb4651461067c57600080fd5b80633ccfd60b1161021957806355f804b3116101d257806355f804b3146105405780635c975abb146105605780636352211e1461057f5780636c0360eb1461059f5780636f8b44b0146105b457806370a08231146105d457600080fd5b80633ccfd60b1461049157806342842e0e146104a657806344a0d68a146104c65780634a999118146104e6578063512507c614610506578063518302271461052657600080fd5b806316c38b3c1161026b57806316c38b3c1461039d57806318160ddd146103bd5780631f32975e146103da57806323b872dd146104125780632a55205a146104325780633549345e1461047157600080fd5b80620e7fa8146102b257806301ffc9a7146102db57806306fdde031461030b578063081812fc1461032d578063095ea7b3146103655780630caea53b14610387575b600080fd5b3480156102be57600080fd5b506102c860135481565b6040519081526020015b60405180910390f35b3480156102e757600080fd5b506102fb6102f63660046123ba565b6108d6565b60405190151581526020016102d2565b34801561031757600080fd5b506103206108f6565b6040516102d29190612427565b34801561033957600080fd5b5061034d61034836600461243a565b610988565b6040516001600160a01b0390911681526020016102d2565b34801561037157600080fd5b5061038561038036600461246f565b6109cc565b005b34801561039357600080fd5b506102c860145481565b3480156103a957600080fd5b506103856103b83660046124a7565b610a59565b3480156103c957600080fd5b5060015460005403600019016102c8565b3480156103e657600080fd5b506011546103fa906001600160601b031681565b6040516001600160601b0390911681526020016102d2565b34801561041e57600080fd5b5061038561042d3660046124c4565b610aa6565b34801561043e57600080fd5b5061045261044d366004612500565b610b5a565b604080516001600160a01b0390931683526020830191909152016102d2565b34801561047d57600080fd5b5061038561048c36600461243a565b610c06565b34801561049d57600080fd5b50610385610c35565b3480156104b257600080fd5b506103856104c13660046124c4565b610cd3565b3480156104d257600080fd5b506103856104e136600461243a565b610d87565b3480156104f257600080fd5b506103856105013660046124a7565b610db6565b34801561051257600080fd5b506103856105213660046125bf565b610df3565b34801561053257600080fd5b506010546102fb9060ff1681565b34801561054c57600080fd5b5061038561055b3660046125bf565b610e2d565b34801561056c57600080fd5b506010546102fb90610100900460ff1681565b34801561058b57600080fd5b5061034d61059a36600461243a565b610e63565b3480156105ab57600080fd5b50610320610e75565b3480156105c057600080fd5b506103856105cf36600461243a565b610f03565b3480156105e057600080fd5b506102c86105ef366004612607565b610f32565b34801561060057600080fd5b50610385610f80565b34801561061557600080fd5b50600a546001600160a01b031661034d565b34801561063357600080fd5b50610320610fb6565b34801561064857600080fd5b5060105461034d906201000090046001600160a01b031681565b34801561066e57600080fd5b506017546102fb9060ff1681565b34801561068857600080fd5b50610385610697366004612622565b610fc5565b3480156106a857600080fd5b506102c860125481565b3480156106be57600080fd5b506103856106cd366004612659565b61105a565b3480156106de57600080fd5b506102c86106ed366004612607565b600c6020526000908152604090205481565b34801561070b57600080fd5b5061038561071a366004612685565b61108e565b61038561072d366004612700565b611149565b34801561073e57600080fd5b506103206114c1565b34801561075357600080fd5b5061038561076236600461277e565b6114ce565b34801561077357600080fd5b506102c860155481565b34801561078957600080fd5b5061032061079836600461243a565b611502565b3480156107a957600080fd5b506102c860165481565b3480156107bf57600080fd5b506103856107ce36600461243a565b61166e565b3480156107df57600080fd5b506102c86107ee366004612607565b600d6020526000908152604090205481565b34801561080c57600080fd5b5061038561081b3660046124a7565b61169d565b34801561082c57600080fd5b506102fb61083b3660046127b6565b6116da565b34801561084c57600080fd5b506102c860185481565b34801561086257600080fd5b50610385610871366004612607565b611708565b34801561088257600080fd5b5061038561089136600461243a565b6117a0565b3480156108a257600080fd5b506103856108b13660046127e0565b6117cf565b3480156108c257600080fd5b506103856108d136600461243a565b61183b565b60006108e18261186a565b806108f057506108f0826118ba565b92915050565b6060600280546109059061288c565b80601f01602080910402602001604051908101604052809291908181526020018280546109319061288c565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b6000610993826118df565b6109b0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109d782610e63565b9050806001600160a01b0316836001600160a01b031603610a0b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a2b5750610a2981336116da565b155b15610a49576040516367d9dca160e11b815260040160405180910390fd5b610a54838383611918565b505050565b600a546001600160a01b03163314610a8c5760405162461bcd60e51b8152600401610a83906128c6565b60405180910390fd5b601080549115156101000261ff0019909216919091179055565b6daaeb6d7670e522a718067333cd4e3b15610b4f57604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610b0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3091906128fb565b610b4f57604051633b79c77360e21b8152336004820152602401610a83565b610a54838383611974565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610bcf5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610bee906001600160601b03168761292e565b610bf8919061295b565b915196919550909350505050565b600a546001600160a01b03163314610c305760405162461bcd60e51b8152600401610a83906128c6565b601355565b600a546001600160a01b03163314610c5f5760405162461bcd60e51b8152600401610a83906128c6565b6000610c73600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cbd576040519150601f19603f3d011682016040523d82523d6000602084013e610cc2565b606091505b5050905080610cd057600080fd5b50565b6daaeb6d7670e522a718067333cd4e3b15610d7c57604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610d39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d91906128fb565b610d7c57604051633b79c77360e21b8152336004820152602401610a83565b610a5483838361197f565b600a546001600160a01b03163314610db15760405162461bcd60e51b8152600401610a83906128c6565b601255565b600a546001600160a01b03163314610de05760405162461bcd60e51b8152600401610a83906128c6565b6017805460ff1916911515919091179055565b600a546001600160a01b03163314610e1d5760405162461bcd60e51b8152600401610a83906128c6565b600f610e2982826129bd565b5050565b600a546001600160a01b03163314610e575760405162461bcd60e51b8152600401610a83906128c6565b600e610e2982826129bd565b6000610e6e8261199a565b5192915050565b600e8054610e829061288c565b80601f0160208091040260200160405190810160405280929190818152602001828054610eae9061288c565b8015610efb5780601f10610ed057610100808354040283529160200191610efb565b820191906000526020600020905b815481529060010190602001808311610ede57829003601f168201915b505050505081565b600a546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610a83906128c6565b601655565b60006001600160a01b038216610f5b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600a546001600160a01b03163314610faa5760405162461bcd60e51b8152600401610a83906128c6565b610fb46000611ac1565b565b6060600380546109059061288c565b336001600160a01b03831603610fee5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146110845760405162461bcd60e51b8152600401610a83906128c6565b610e298183611b13565b6daaeb6d7670e522a718067333cd4e3b1561113757604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af11580156110f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111891906128fb565b61113757604051633b79c77360e21b8152336004820152602401610a83565b61114384848484611b2d565b50505050565b6002600b540361119b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a83565b6002600b55601054610100900460ff16156111f85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a83565b6000831180156112215750601654600154600054859190036000190161121e9190612a7c565b11155b61125f5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610a83565b601754839060ff16156113c8576112768383611b78565b6112bb5760405162461bcd60e51b8152602060048201526016602482015275165bdd49dc99481b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610a83565b601554336000908152600d60205260409020546112d9908690612a7c565b11156113275760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610a83565b336000908152600d6020526040812054900361134b578061134781612a8f565b9150505b80601354611359919061292e565b34101561139e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b6044820152606401610a83565b336000908152600d6020526040812080548692906113bd908490612a7c565b909155506114ac9050565b601454336000908152600c60205260409020546113e6908690612a7c565b11156114345760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610a83565b83601254611442919061292e565b3410156114875760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b6044820152606401610a83565b336000908152600c6020526040812080548692906114a6908490612a7c565b90915550505b6114b63385611b13565b50506001600b555050565b600f8054610e829061288c565b600a546001600160a01b031633146114f85760405162461bcd60e51b8152600401610a83906128c6565b610e298282611c4a565b606061150d826118df565b6115715760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a83565b60105460ff16151560000361161257600f805461158d9061288c565b80601f01602080910402602001604051908101604052809291908181526020018280546115b99061288c565b80156116065780601f106115db57610100808354040283529160200191611606565b820191906000526020600020905b8154815290600101906020018083116115e957829003601f168201915b50505050509050919050565b600061161c611d47565b9050600081511161163c5760405180602001604052806000815250611667565b8061164684611d56565b604051602001611657929190612aa6565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116985760405162461bcd60e51b8152600401610a83906128c6565b601855565b600a546001600160a01b031633146116c75760405162461bcd60e51b8152600401610a83906128c6565b6010805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146117325760405162461bcd60e51b8152600401610a83906128c6565b6001600160a01b0381166117975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a83565b610cd081611ac1565b600a546001600160a01b031633146117ca5760405162461bcd60e51b8152600401610a83906128c6565b601555565b600a546001600160a01b031633146117f95760405162461bcd60e51b8152600401610a83906128c6565b60005b8151811015610e295761182982828151811061181a5761181a612ae5565b60200260200101516001611b13565b8061183381612afb565b9150506117fc565b600a546001600160a01b031633146118655760405162461bcd60e51b8152600401610a83906128c6565b601455565b60006001600160e01b031982166380ac58cd60e01b148061189b57506001600160e01b03198216635b5e139f60e01b145b806108f057506301ffc9a760e01b6001600160e01b03198316146108f0565b60006001600160e01b0319821663152a902d60e11b14806108f057506108f08261186a565b6000816001111580156118f3575060005482105b80156108f0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a54838383611e5e565b610a548383836040518060200160405280600081525061108e565b604080516060810182526000808252602082018190529181019190915281806001111580156119ca575060005481105b15611aa857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611aa65780516001600160a01b031615611a3d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611aa1579392505050565b611a3d565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e2982826040518060200160405280600081525061204c565b611b38848484611e5e565b6001600160a01b0383163b15158015611b5a5750611b5884848484612059565b155b15611143576040516368d2bf6b60e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611bf4848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506018549150849050612144565b611c405760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642100000000006044820152606401610a83565b5060019392505050565b6127106001600160601b0382161115611cb85760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a83565b6001600160a01b038216611d0e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a83565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6060600e80546109059061288c565b606081600003611d7d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611da75780611d9181612afb565b9150611da09050600a8361295b565b9150611d81565b6000816001600160401b03811115611dc157611dc1612522565b6040519080825280601f01601f191660200182016040528015611deb576020820181803683370190505b5090505b8415611e5657611e00600183612b14565b9150611e0d600a86612b27565b611e18906030612a7c565b60f81b818381518110611e2d57611e2d612ae5565b60200101906001600160f81b031916908160001a905350611e4f600a8661295b565b9450611def565b949350505050565b6000611e698261199a565b9050836001600160a01b031681600001516001600160a01b031614611ea05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611ebe5750611ebe85336116da565b80611ed9575033611ece84610988565b6001600160a01b0316145b905080611ef957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611f2057604051633a954ecd60e21b815260040160405180910390fd5b611f2c60008487611918565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661200057600054821461200057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a54838383600161215a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061208e903390899088908890600401612b3b565b6020604051808303816000875af19250505080156120c9575060408051601f3d908101601f191682019092526120c691810190612b78565b60015b612127573d8080156120f7576040519150601f19603f3d011682016040523d82523d6000602084013e6120fc565b606091505b50805160000361211f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600082612151858461232b565b14949350505050565b6000546001600160a01b03851661218357604051622e076360e81b815260040160405180910390fd5b836000036121a45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561225557506001600160a01b0387163b15155b156122dd575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122a66000888480600101955088612059565b6122c3576040516368d2bf6b60e11b815260040160405180910390fd5b80820361225b5782600054146122d857600080fd5b612322565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036122de575b50600055612045565b600081815b84518110156123705761235c8286838151811061234f5761234f612ae5565b6020026020010151612378565b91508061236881612afb565b915050612330565b509392505050565b6000818310612394576000828152602084905260409020611667565b5060009182526020526040902090565b6001600160e01b031981168114610cd057600080fd5b6000602082840312156123cc57600080fd5b8135611667816123a4565b60005b838110156123f25781810151838201526020016123da565b50506000910152565b600081518084526124138160208601602086016123d7565b601f01601f19169290920160200192915050565b60208152600061166760208301846123fb565b60006020828403121561244c57600080fd5b5035919050565b80356001600160a01b038116811461246a57600080fd5b919050565b6000806040838503121561248257600080fd5b61248b83612453565b946020939093013593505050565b8015158114610cd057600080fd5b6000602082840312156124b957600080fd5b813561166781612499565b6000806000606084860312156124d957600080fd5b6124e284612453565b92506124f060208501612453565b9150604084013590509250925092565b6000806040838503121561251357600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561256057612560612522565b604052919050565b60006001600160401b0383111561258157612581612522565b612594601f8401601f1916602001612538565b90508281528383830111156125a857600080fd5b828260208301376000602084830101529392505050565b6000602082840312156125d157600080fd5b81356001600160401b038111156125e757600080fd5b8201601f810184136125f857600080fd5b611e5684823560208401612568565b60006020828403121561261957600080fd5b61166782612453565b6000806040838503121561263557600080fd5b61263e83612453565b9150602083013561264e81612499565b809150509250929050565b6000806040838503121561266c57600080fd5b8235915061267c60208401612453565b90509250929050565b6000806000806080858703121561269b57600080fd5b6126a485612453565b93506126b260208601612453565b92506040850135915060608501356001600160401b038111156126d457600080fd5b8501601f810187136126e557600080fd5b6126f487823560208401612568565b91505092959194509250565b60008060006040848603121561271557600080fd5b8335925060208401356001600160401b038082111561273357600080fd5b818601915086601f83011261274757600080fd5b81358181111561275657600080fd5b8760208260051b850101111561276b57600080fd5b6020830194508093505050509250925092565b6000806040838503121561279157600080fd5b61279a83612453565b915060208301356001600160601b038116811461264e57600080fd5b600080604083850312156127c957600080fd5b6127d283612453565b915061267c60208401612453565b600060208083850312156127f357600080fd5b82356001600160401b038082111561280a57600080fd5b818501915085601f83011261281e57600080fd5b81358181111561283057612830612522565b8060051b9150612841848301612538565b818152918301840191848101908884111561285b57600080fd5b938501935b838510156128805761287185612453565b82529385019390850190612860565b98975050505050505050565b600181811c908216806128a057607f821691505b6020821081036128c057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561290d57600080fd5b815161166781612499565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108f0576108f0612918565b634e487b7160e01b600052601260045260246000fd5b60008261296a5761296a612945565b500490565b601f821115610a5457600081815260208120601f850160051c810160208610156129965750805b601f850160051c820191505b818110156129b5578281556001016129a2565b505050505050565b81516001600160401b038111156129d6576129d6612522565b6129ea816129e4845461288c565b8461296f565b602080601f831160018114612a1f5760008415612a075750858301515b600019600386901b1c1916600185901b1785556129b5565b600085815260208120601f198616915b82811015612a4e57888601518255948401946001909101908401612a2f565b5085821015612a6c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156108f0576108f0612918565b600081612a9e57612a9e612918565b506000190190565b60008351612ab88184602088016123d7565b835190830190612acc8183602088016123d7565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b600060018201612b0d57612b0d612918565b5060010190565b818103818111156108f0576108f0612918565b600082612b3657612b36612945565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6e908301846123fb565b9695505050505050565b600060208284031215612b8a57600080fd5b8151611667816123a456fea2646970667358221220c3e3f1ab7df1f1765ed47a9c517feb78205ac6c31f54f279c2be6c48ce3cce0764736f6c63430008120033

Deployed Bytecode Sourcemap

80437:6249:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81008:41;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;81008:41:0;;;;;;;;83733:258;;;;;;;;;;-1:-1:-1;83733:258:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;83733:258:0;582:187:1;65772:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;67275:204::-;;;;;;;;;;-1:-1:-1;67275:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;67275:204:0;1715:203:1;66838:371:0;;;;;;;;;;-1:-1:-1;66838:371:0;;;;;:::i;:::-;;:::i;:::-;;81056:34;;;;;;;;;;;;;;;;84947:85;;;;;;;;;;-1:-1:-1;84947:85:0;;;;;:::i;:::-;;:::i;61908:303::-;;;;;;;;;;-1:-1:-1;61765:1:0;62162:12;61952:7;62146:13;:28;-1:-1:-1;;62146:46:0;61908:303;;80925:29;;;;;;;;;;-1:-1:-1;80925:29:0;;;;-1:-1:-1;;;;;80925:29:0;;;;;;-1:-1:-1;;;;;2891:39:1;;;2873:58;;2861:2;2846:18;80925:29:0;2729:208:1;86123:157:0;;;;;;;;;;-1:-1:-1;86123:157:0;;;;;:::i;:::-;;:::i;22113:442::-;;;;;;;;;;-1:-1:-1;22113:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3720:32:1;;;3702:51;;3784:2;3769:18;;3762:34;;;;3675:18;22113:442:0;3528:274:1;84489:106:0;;;;;;;;;;-1:-1:-1;84489:106:0;;;;;:::i;:::-;;:::i;85702:413::-;;;;;;;;;;;;;:::i;86288:165::-;;;;;;;;;;-1:-1:-1;86288:165:0;;;;;:::i;:::-;;:::i;84601:107::-;;;;;;;;;;-1:-1:-1;84601:107:0;;;;;:::i;:::-;;:::i;84091:109::-;;;;;;;;;;-1:-1:-1;84091:109:0;;;;;:::i;:::-;;:::i;85249:112::-;;;;;;;;;;-1:-1:-1;85249:112:0;;;;;:::i;:::-;;:::i;80827:20::-;;;;;;;;;;-1:-1:-1;80827:20:0;;;;;;;;85040:106;;;;;;;;;;-1:-1:-1;85040:106:0;;;;;:::i;:::-;;:::i;80854:25::-;;;;;;;;;;-1:-1:-1;80854:25:0;;;;;;;;;;;65580:125;;;;;;;;;;-1:-1:-1;65580:125:0;;;;;:::i;:::-;;:::i;80685:21::-;;;;;;;;;;;;;:::i;84843:96::-;;;;;;;;;;-1:-1:-1;84843:96:0;;;;;:::i;:::-;;:::i;63028:206::-;;;;;;;;;;-1:-1:-1;63028:206:0;;;;;:::i;:::-;;:::i;41125:103::-;;;;;;;;;;;;;:::i;40474:87::-;;;;;;;;;;-1:-1:-1;40547:6:0;;-1:-1:-1;;;;;40547:6:0;40474:87;;65941:104;;;;;;;;;;;;;:::i;80886:32::-;;;;;;;;;;-1:-1:-1;80886:32:0;;;;;;;-1:-1:-1;;;;;80886:32:0;;;81178:34;;;;;;;;;;-1:-1:-1;81178:34:0;;;;;;;;67551:287;;;;;;;;;;-1:-1:-1;67551:287:0;;;;;:::i;:::-;;:::i;80961:40::-;;;;;;;;;;;;;;;;85369:120;;;;;;;;;;-1:-1:-1;85369:120:0;;;;;:::i;:::-;;:::i;80572:48::-;;;;;;;;;;-1:-1:-1;80572:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;86461:222;;;;;;;;;;-1:-1:-1;86461:222:0;;;;;:::i;:::-;;:::i;81509:1039::-;;;;;;:::i;:::-;;:::i;80713:107::-;;;;;;;;;;;;;:::i;84212:147::-;;;;;;;;;;-1:-1:-1;84212:147:0;;;;;:::i;:::-;;:::i;81097:37::-;;;;;;;;;;;;;;;;83009:718;;;;;;;;;;-1:-1:-1;83009:718:0;;;;;:::i;:::-;;:::i;81141:30::-;;;;;;;;;;;;;;;;83997:88;;;;;;;;;;-1:-1:-1;83997:88:0;;;;;:::i;:::-;;:::i;80627:51::-;;;;;;;;;;-1:-1:-1;80627:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;85152:89;;;;;;;;;;-1:-1:-1;85152:89:0;;;;;:::i;:::-;;:::i;67909:164::-;;;;;;;;;;-1:-1:-1;67909:164:0;;;;;:::i;:::-;;:::i;81219:19::-;;;;;;;;;;;;;;;;41383:201;;;;;;;;;;-1:-1:-1;41383:201:0;;;;;:::i;:::-;;:::i;84365:118::-;;;;;;;;;;-1:-1:-1;84365:118:0;;;;;:::i;:::-;;:::i;85503:191::-;;;;;;;;;;-1:-1:-1;85503:191:0;;;;;:::i;:::-;;:::i;84717:114::-;;;;;;;;;;-1:-1:-1;84717:114:0;;;;;:::i;:::-;;:::i;83733:258::-;83848:4;83890:38;83916:11;83890:25;:38::i;:::-;:93;;;;83945:38;83971:11;83945:25;:38::i;:::-;83870:113;83733:258;-1:-1:-1;;83733:258:0:o;65772:100::-;65826:13;65859:5;65852:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65772:100;:::o;67275:204::-;67343:7;67368:16;67376:7;67368;:16::i;:::-;67363:64;;67393:34;;-1:-1:-1;;;67393:34:0;;;;;;;;;;;67363:64;-1:-1:-1;67447:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;67447:24:0;;67275:204::o;66838:371::-;66911:13;66927:24;66943:7;66927:15;:24::i;:::-;66911:40;;66972:5;-1:-1:-1;;;;;66966:11:0;:2;-1:-1:-1;;;;;66966:11:0;;66962:48;;66986:24;;-1:-1:-1;;;66986:24:0;;;;;;;;;;;66962:48;39278:10;-1:-1:-1;;;;;67027:21:0;;;;;;:63;;-1:-1:-1;67053:37:0;67070:5;39278:10;67909:164;:::i;67053:37::-;67052:38;67027:63;67023:138;;;67114:35;;-1:-1:-1;;;67114:35:0;;;;;;;;;;;67023:138;67173:28;67182:2;67186:7;67195:5;67173:8;:28::i;:::-;66900:309;66838:371;;:::o;84947:85::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;;;;;;;;;85009:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;85009:15:0;;::::1;::::0;;;::::1;::::0;;84947:85::o;86123:157::-;15782:42;16910:43;:47;16906:225;;16979:67;;-1:-1:-1;;;16979:67:0;;17028:4;16979:67;;;10135:34:1;17035:10:0;10185:18:1;;;10178:43;15782:42:0;;16979:40;;10070:18:1;;16979:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16974:146;;17074:30;;-1:-1:-1;;;17074:30:0;;17093:10;17074:30;;;1861:51:1;1834:18;;17074:30:0;1715:203:1;16974:146:0;86235:37:::1;86254:4;86260:2;86264:7;86235:18;:37::i;22113:442::-:0;22210:7;22268:27;;;:17;:27;;;;;;;;22239:56;;;;;;;;;-1:-1:-1;;;;;22239:56:0;;;;;-1:-1:-1;;;22239:56:0;;;-1:-1:-1;;;;;22239:56:0;;;;;;;;22210:7;;22308:92;;-1:-1:-1;22359:29:0;;;;;;;;;22369:19;22359:29;-1:-1:-1;;;;;22359:29:0;;;;-1:-1:-1;;;22359:29:0;;-1:-1:-1;;;;;22359:29:0;;;;;22308:92;22450:23;;;;22412:21;;22921:5;;22437:36;;-1:-1:-1;;;;;22437:36:0;:10;:36;:::i;:::-;22436:58;;;;:::i;:::-;22515:16;;;;;-1:-1:-1;22113:442:0;;-1:-1:-1;;;;22113:442:0:o;84489:106::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;84563:12:::1;:24:::0;84489:106::o;85702:413::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;85927:7:::1;85948;40547:6:::0;;-1:-1:-1;;;;;40547:6:0;;40474:87;85948:7:::1;-1:-1:-1::0;;;;;85940:21:0::1;85969;85940:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85926:69;;;86014:2;86006:11;;;::::0;::::1;;85739:376;85702:413::o:0;86288:165::-;15782:42;16910:43;:47;16906:225;;16979:67;;-1:-1:-1;;;16979:67:0;;17028:4;16979:67;;;10135:34:1;17035:10:0;10185:18:1;;;10178:43;15782:42:0;;16979:40;;10070:18:1;;16979:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16974:146;;17074:30;;-1:-1:-1;;;17074:30:0;;17093:10;17074:30;;;1861:51:1;1834:18;;17074:30:0;1715:203:1;16974:146:0;86404:41:::1;86427:4;86433:2;86437:7;86404:22;:41::i;84601:107::-:0;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;84672:11:::1;:28:::0;84601:107::o;84091:109::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;84165:15:::1;:27:::0;;-1:-1:-1;;84165:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;84091:109::o;85249:112::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;85329:17:::1;:24;85349:4:::0;85329:17;:24:::1;:::i;:::-;;85249:112:::0;:::o;85040:106::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;85117:7:::1;:21;85127:11:::0;85117:7;:21:::1;:::i;65580:125::-:0;65644:7;65671:21;65684:7;65671:12;:21::i;:::-;:26;;65580:125;-1:-1:-1;;65580:125:0:o;80685:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;84843:96::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;84912:9:::1;:19:::0;84843:96::o;63028:206::-;63092:7;-1:-1:-1;;;;;63116:19:0;;63112:60;;63144:28;;-1:-1:-1;;;63144:28:0;;;;;;;;;;;63112:60;-1:-1:-1;;;;;;63198:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;63198:27:0;;63028:206::o;41125:103::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;41190:30:::1;41217:1;41190:18;:30::i;:::-;41125:103::o:0;65941:104::-;65997:13;66030:7;66023:14;;;;;:::i;67551:287::-;39278:10;-1:-1:-1;;;;;67650:24:0;;;67646:54;;67683:17;;-1:-1:-1;;;67683:17:0;;;;;;;;;;;67646:54;39278:10;67713:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;67713:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;67713:53:0;;;;;;;;;;67782:48;;722:41:1;;;67713:42:0;;39278:10;67782:48;;695:18:1;67782:48:0;;;;;;;67551:287;;:::o;85369:120::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;85452:29:::1;85462:8;85472;85452:9;:29::i;86461:222::-:0;15782:42;16910:43;:47;16906:225;;16979:67;;-1:-1:-1;;;16979:67:0;;17028:4;16979:67;;;10135:34:1;17035:10:0;10185:18:1;;;10178:43;15782:42:0;;16979:40;;10070:18:1;;16979:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16974:146;;17074:30;;-1:-1:-1;;;17074:30:0;;17093:10;17074:30;;;1861:51:1;1834:18;;17074:30:0;1715:203:1;16974:146:0;86628:47:::1;86651:4;86657:2;86661:7;86670:4;86628:22;:47::i;:::-;86461:222:::0;;;;:::o;81509:1039::-;35287:1;35885:7;;:19;35877:63;;;;-1:-1:-1;;;35877:63:0;;13660:2:1;35877:63:0;;;13642:21:1;13699:2;13679:18;;;13672:30;13738:33;13718:18;;;13711:61;13789:18;;35877:63:0;13458:355:1;35877:63:0;35287:1;36018:7;:18;81618:6:::1;::::0;::::1;::::0;::::1;;;81617:7;81609:43;;;::::0;-1:-1:-1;;;81609:43:0;;14020:2:1;81609:43:0::1;::::0;::::1;14002:21:1::0;14059:2;14039:18;;;14032:30;14098:25;14078:18;;;14071:53;14141:18;;81609:43:0::1;13818:347:1::0;81609:43:0::1;81682:1;81671:8;:12;:53;;;;-1:-1:-1::0;81715:9:0::1;::::0;61765:1;62162:12;61952:7;62146:13;81703:8;;62146:28;;-1:-1:-1;;62146:46:0;81687:24:::1;;;;:::i;:::-;:37;;81671:53;81663:81;;;::::0;-1:-1:-1;;;81663:81:0;;14502:2:1;81663:81:0::1;::::0;::::1;14484:21:1::0;14541:2;14521:18;;;14514:30;-1:-1:-1;;;14560:18:1;;;14553:45;14615:18;;81663:81:0::1;14300:339:1::0;81663:81:0::1;81796:15;::::0;81774:8;;81796:15:::1;;81793:706;;;81836:15;81844:6;;81836:7;:15::i;:::-;81828:50;;;::::0;-1:-1:-1;;;81828:50:0;;14846:2:1;81828:50:0::1;::::0;::::1;14828:21:1::0;14885:2;14865:18;;;14858:30;-1:-1:-1;;;14904:18:1;;;14897:52;14966:18;;81828:50:0::1;14644:346:1::0;81828:50:0::1;81944:18;::::0;81918:10:::1;81901:28;::::0;;;:16:::1;:28;::::0;;;;;:39:::1;::::0;81932:8;;81901:39:::1;:::i;:::-;:61;;81893:100;;;::::0;-1:-1:-1;;;81893:100:0;;15197:2:1;81893:100:0::1;::::0;::::1;15179:21:1::0;15236:2;15216:18;;;15209:30;15275:28;15255:18;;;15248:56;15321:18;;81893:100:0::1;14995:350:1::0;81893:100:0::1;82029:10;82012:28;::::0;;;:16:::1;:28;::::0;;;;;:33;;82008:67:::1;;82065:10:::0;::::1;::::0;::::1;:::i;:::-;;;;82008:67;82126:8;82111:12;;:23;;;;:::i;:::-;82098:9;:36;;82090:68;;;::::0;-1:-1:-1;;;82090:68:0;;15693:2:1;82090:68:0::1;::::0;::::1;15675:21:1::0;15732:2;15712:18;;;15705:30;-1:-1:-1;;;15751:18:1;;;15744:49;15810:18;;82090:68:0::1;15491:343:1::0;82090:68:0::1;82190:10;82173:28;::::0;;;:16:::1;:28;::::0;;;;:40;;82205:8;;82173:28;:40:::1;::::0;82205:8;;82173:40:::1;:::i;:::-;::::0;;;-1:-1:-1;81793:706:0::1;::::0;-1:-1:-1;81793:706:0::1;;82306:15;::::0;82280:10:::1;82266:25;::::0;;;:13:::1;:25;::::0;;;;;:36:::1;::::0;82294:8;;82266:36:::1;:::i;:::-;:55;;82258:94;;;::::0;-1:-1:-1;;;82258:94:0;;15197:2:1;82258:94:0::1;::::0;::::1;15179:21:1::0;15236:2;15216:18;;;15209:30;15275:28;15255:18;;;15248:56;15321:18;;82258:94:0::1;14995:350:1::0;82258:94:0::1;82403:8;82389:11;;:22;;;;:::i;:::-;82376:9;:35;;82368:67;;;::::0;-1:-1:-1;;;82368:67:0;;15693:2:1;82368:67:0::1;::::0;::::1;15675:21:1::0;15732:2;15712:18;;;15705:30;-1:-1:-1;;;15751:18:1;;;15744:49;15810:18;;82368:67:0::1;15491:343:1::0;82368:67:0::1;82465:10;82451:25;::::0;;;:13:::1;:25;::::0;;;;:36;;82479:8;;82451:25;:36:::1;::::0;82479:8;;82451:36:::1;:::i;:::-;::::0;;;-1:-1:-1;;81793:706:0::1;82509:31;82519:10;82531:8;82509:9;:31::i;:::-;-1:-1:-1::0;;35243:1:0;36197:7;:22;-1:-1:-1;;81509:1039:0:o;80713:107::-;;;;;;;:::i;84212:147::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;84306:45:::1;84325:8;84335:15;84306:18;:45::i;83009:718::-:0;83127:13;83180:16;83188:7;83180;:16::i;:::-;83158:113;;;;-1:-1:-1;;;83158:113:0;;16041:2:1;83158:113:0;;;16023:21:1;16080:2;16060:18;;;16053:30;16119:34;16099:18;;;16092:62;-1:-1:-1;;;16170:18:1;;;16163:45;16225:19;;83158:113:0;15839:411:1;83158:113:0;83286:8;;;;:17;;:8;:17;83282:74;;83327:17;83320:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83009:718;;;:::o;83282:74::-;83366:28;83397:10;:8;:10::i;:::-;83366:41;;83469:1;83444:14;83438:28;:32;:281;;;;;;;;;;;;;;;;;83562:14;83603:18;:7;:16;:18::i;:::-;83519:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83438:281;83418:301;83009:718;-1:-1:-1;;;83009:718:0:o;83997:88::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;84062:4:::1;:15:::0;83997:88::o;85152:89::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;85216:8:::1;:17:::0;;-1:-1:-1;;85216:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;85152:89::o;67909:164::-;-1:-1:-1;;;;;68030:25:0;;;68006:4;68030:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;67909:164::o;41383:201::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41472:22:0;::::1;41464:73;;;::::0;-1:-1:-1;;;41464:73:0;;17125:2:1;41464:73:0::1;::::0;::::1;17107:21:1::0;17164:2;17144:18;;;17137:30;17203:34;17183:18;;;17176:62;-1:-1:-1;;;17254:18:1;;;17247:36;17300:19;;41464:73:0::1;16923:402:1::0;41464:73:0::1;41548:28;41567:8;41548:18;:28::i;84365:118::-:0;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;84445:18:::1;:30:::0;84365:118::o;85503:191::-;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;85588:9:::1;85584:103;85608:10;:17;85604:1;:21;85584:103;;;85648:27;85658:10;85669:1;85658:13;;;;;;;;:::i;:::-;;;;;;;85673:1;85648:9;:27::i;:::-;85627:4:::0;::::1;::::0;::::1;:::i;:::-;;;;85584:103;;84717:114:::0;40547:6;;-1:-1:-1;;;;;40547:6:0;39278:10;40694:23;40686:68;;;;-1:-1:-1;;;40686:68:0;;;;;;;:::i;:::-;84792:15:::1;:31:::0;84717:114::o;62659:305::-;62761:4;-1:-1:-1;;;;;;62798:40:0;;-1:-1:-1;;;62798:40:0;;:105;;-1:-1:-1;;;;;;;62855:48:0;;-1:-1:-1;;;62855:48:0;62798:105;:158;;;-1:-1:-1;;;;;;;;;;19504:40:0;;;62920:36;19395:157;21843:215;21945:4;-1:-1:-1;;;;;;21969:41:0;;-1:-1:-1;;;21969:41:0;;:81;;;22014:36;22038:11;22014:23;:36::i;69261:174::-;69318:4;69361:7;61765:1;69342:26;;:53;;;;;69382:13;;69372:7;:23;69342:53;:85;;;;-1:-1:-1;;69400:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;69400:27:0;;;;69399:28;;69261:174::o;77418:196::-;77533:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;77533:29:0;-1:-1:-1;;;;;77533:29:0;;;;;;;;;77578:28;;77533:24;;77578:28;;;;;;;77418:196;;;:::o;68140:170::-;68274:28;68284:4;68290:2;68294:7;68274:9;:28::i;68381:185::-;68519:39;68536:4;68542:2;68546:7;68519:39;;;;;;;;;;;;:16;:39::i;64409:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;64520:7:0;;61765:1;64569:23;;:47;;;;;64603:13;;64596:4;:20;64569:47;64565:886;;;64637:31;64671:17;;;:11;:17;;;;;;;;;64637:51;;;;;;;;;-1:-1:-1;;;;;64637:51:0;;;;-1:-1:-1;;;64637:51:0;;-1:-1:-1;;;;;64637:51:0;;;;;;;;-1:-1:-1;;;64637:51:0;;;;;;;;;;;;;;64707:729;;64757:14;;-1:-1:-1;;;;;64757:28:0;;64753:101;;64821:9;64409:1109;-1:-1:-1;;;64409:1109:0:o;64753:101::-;-1:-1:-1;;;65196:6:0;65241:17;;;;:11;:17;;;;;;;;;65229:29;;;;;;;;;-1:-1:-1;;;;;65229:29:0;;;;;-1:-1:-1;;;65229:29:0;;-1:-1:-1;;;;;65229:29:0;;;;;;;;-1:-1:-1;;;65229:29:0;;;;;;;;;;;;;65289:28;65285:109;;65357:9;64409:1109;-1:-1:-1;;;64409:1109:0:o;65285:109::-;65156:261;;;64618:833;64565:886;65479:31;;-1:-1:-1;;;65479:31:0;;;;;;;;;;;41744:191;41837:6;;;-1:-1:-1;;;;;41854:17:0;;;-1:-1:-1;;;;;;41854:17:0;;;;;;;41887:40;;41837:6;;;41854:17;41837:6;;41887:40;;41818:16;;41887:40;41807:128;41744:191;:::o;69443:104::-;69512:27;69522:2;69526:8;69512:27;;;;;;;;;;;;:9;:27::i;68637:369::-;68804:28;68814:4;68820:2;68824:7;68804:9;:28::i;:::-;-1:-1:-1;;;;;68847:13:0;;43470:19;:23;;68847:76;;;;;68867:56;68898:4;68904:2;68908:7;68917:5;68867:30;:56::i;:::-;68866:57;68847:76;68843:156;;;68947:40;;-1:-1:-1;;;68947:40:0;;;;;;;;;;;82735:268;82849:28;;-1:-1:-1;;82866:10:0;17751:2:1;17747:15;17743:53;82849:28:0;;;17731:66:1;82808:4:0;;;;17813:12:1;;82849:28:0;;;;;;;;;;;;82839:39;;;;;;82824:54;;82897:44;82916:12;;82897:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;82930:4:0;;;-1:-1:-1;82936:4:0;;-1:-1:-1;82897:18:0;:44::i;:::-;82889:84;;;;-1:-1:-1;;;82889:84:0;;18038:2:1;82889:84:0;;;18020:21:1;18077:2;18057:18;;;18050:30;18116:29;18096:18;;;18089:57;18163:18;;82889:84:0;17836:351:1;82889:84:0;-1:-1:-1;82991:4:0;;82735:268;-1:-1:-1;;;82735:268:0:o;23205:332::-;22921:5;-1:-1:-1;;;;;23308:33:0;;;;23300:88;;;;-1:-1:-1;;;23300:88:0;;18394:2:1;23300:88:0;;;18376:21:1;18433:2;18413:18;;;18406:30;18472:34;18452:18;;;18445:62;-1:-1:-1;;;18523:18:1;;;18516:40;18573:19;;23300:88:0;18192:406:1;23300:88:0;-1:-1:-1;;;;;23407:22:0;;23399:60;;;;-1:-1:-1;;;23399:60:0;;18805:2:1;23399:60:0;;;18787:21:1;18844:2;18824:18;;;18817:30;18883:27;18863:18;;;18856:55;18928:18;;23399:60:0;18603:349:1;23399:60:0;23494:35;;;;;;;;;-1:-1:-1;;;;;23494:35:0;;;;;;-1:-1:-1;;;;;23494:35:0;;;;;;;;;;-1:-1:-1;;;23472:57:0;;;;:19;:57;23205:332::o;82556:108::-;82616:13;82649:7;82642:14;;;;;:::i;36760:723::-;36816:13;37037:5;37046:1;37037:10;37033:53;;-1:-1:-1;;37064:10:0;;;;;;;;;;;;-1:-1:-1;;;37064:10:0;;;;;36760:723::o;37033:53::-;37111:5;37096:12;37152:78;37159:9;;37152:78;;37185:8;;;;:::i;:::-;;-1:-1:-1;37208:10:0;;-1:-1:-1;37216:2:0;37208:10;;:::i;:::-;;;37152:78;;;37240:19;37272:6;-1:-1:-1;;;;;37262:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37262:17:0;;37240:39;;37290:154;37297:10;;37290:154;;37324:11;37334:1;37324:11;;:::i;:::-;;-1:-1:-1;37393:10:0;37401:2;37393:5;:10;:::i;:::-;37380:24;;:2;:24;:::i;:::-;37367:39;;37350:6;37357;37350:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;37350:56:0;;;;;;;;-1:-1:-1;37421:11:0;37430:2;37421:11;;:::i;:::-;;;37290:154;;;37468:6;36760:723;-1:-1:-1;;;;36760:723:0:o;72361:2130::-;72476:35;72514:21;72527:7;72514:12;:21::i;:::-;72476:59;;72574:4;-1:-1:-1;;;;;72552:26:0;:13;:18;;;-1:-1:-1;;;;;72552:26:0;;72548:67;;72587:28;;-1:-1:-1;;;72587:28:0;;;;;;;;;;;72548:67;72628:22;39278:10;-1:-1:-1;;;;;72654:20:0;;;;:73;;-1:-1:-1;72691:36:0;72708:4;39278:10;67909:164;:::i;72691:36::-;72654:126;;;-1:-1:-1;39278:10:0;72744:20;72756:7;72744:11;:20::i;:::-;-1:-1:-1;;;;;72744:36:0;;72654:126;72628:153;;72799:17;72794:66;;72825:35;;-1:-1:-1;;;72825:35:0;;;;;;;;;;;72794:66;-1:-1:-1;;;;;72875:16:0;;72871:52;;72900:23;;-1:-1:-1;;;72900:23:0;;;;;;;;;;;72871:52;73044:35;73061:1;73065:7;73074:4;73044:8;:35::i;:::-;-1:-1:-1;;;;;73375:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;73375:31:0;;;-1:-1:-1;;;;;73375:31:0;;;-1:-1:-1;;73375:31:0;;;;;;;73421:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;73421:29:0;;;;;;;;;;;73501:20;;;:11;:20;;;;;;73536:18;;-1:-1:-1;;;;;;73569:49:0;;;;-1:-1:-1;;;73602:15:0;73569:49;;;;;;;;;;73892:11;;73952:24;;;;;73995:13;;73501:20;;73952:24;;73995:13;73991:384;;74205:13;;74190:11;:28;74186:174;;74243:20;;74312:28;;;;-1:-1:-1;;;;;74286:54:0;-1:-1:-1;;;74286:54:0;-1:-1:-1;;;;;;74286:54:0;;;-1:-1:-1;;;;;74243:20:0;;74286:54;;;;74186:174;73350:1036;;;74422:7;74418:2;-1:-1:-1;;;;;74403:27:0;74412:4;-1:-1:-1;;;;;74403:27:0;;;;;;;;;;;74441:42;72465:2026;;72361:2130;;;:::o;69910:163::-;70033:32;70039:2;70043:8;70053:5;70060:4;70033:5;:32::i;78106:667::-;78290:72;;-1:-1:-1;;;78290:72:0;;78269:4;;-1:-1:-1;;;;;78290:36:0;;;;;:72;;39278:10;;78341:4;;78347:7;;78356:5;;78290:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78290:72:0;;;;;;;;-1:-1:-1;;78290:72:0;;;;;;;;;;;;:::i;:::-;;;78286:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78524:6;:13;78541:1;78524:18;78520:235;;78570:40;;-1:-1:-1;;;78570:40:0;;;;;;;;;;;78520:235;78713:6;78707:13;78698:6;78694:2;78690:15;78683:38;78286:480;-1:-1:-1;;;;;;78409:55:0;-1:-1:-1;;;78409:55:0;;-1:-1:-1;78106:667:0;;;;;;:::o;25928:190::-;26053:4;26106;26077:25;26090:5;26097:4;26077:12;:25::i;:::-;:33;;25928:190;-1:-1:-1;;;;25928:190:0:o;70332:1775::-;70471:20;70494:13;-1:-1:-1;;;;;70522:16:0;;70518:48;;70547:19;;-1:-1:-1;;;70547:19:0;;;;;;;;;;;70518:48;70581:8;70593:1;70581:13;70577:44;;70603:18;;-1:-1:-1;;;70603:18:0;;;;;;;;;;;70577:44;-1:-1:-1;;;;;70972:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;71031:49:0;;-1:-1:-1;;;;;70972:44:0;;;;;;;71031:49;;;;-1:-1:-1;;70972:44:0;;;;;;71031:49;;;;;;;;;;;;;;;;71097:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;71147:66:0;;;;-1:-1:-1;;;71197:15:0;71147:66;;;;;;;;;;71097:25;71294:23;;;71338:4;:23;;;;-1:-1:-1;;;;;;71346:13:0;;43470:19;:23;;71346:15;71334:641;;;71382:314;71413:38;;71438:12;;-1:-1:-1;;;;;71413:38:0;;;71430:1;;71413:38;;71430:1;;71413:38;71479:69;71518:1;71522:2;71526:14;;;;;;71542:5;71479:30;:69::i;:::-;71474:174;;71584:40;;-1:-1:-1;;;71584:40:0;;;;;;;;;;;71474:174;71691:3;71675:12;:19;71382:314;;71777:12;71760:13;;:29;71756:43;;71791:8;;;71756:43;71334:641;;;71840:120;71871:40;;71896:14;;;;;-1:-1:-1;;;;;71871:40:0;;;71888:1;;71871:40;;71888:1;;71871:40;71955:3;71939:12;:19;71840:120;;71334:641;-1:-1:-1;71989:13:0;:28;72039:60;86461:222;26795:296;26878:7;26921:4;26878:7;26936:118;26960:5;:12;26956:1;:16;26936:118;;;27009:33;27019:12;27033:5;27039:1;27033:8;;;;;;;;:::i;:::-;;;;;;;27009:9;:33::i;:::-;26994:48;-1:-1:-1;26974:3:0;;;;:::i;:::-;;;;26936:118;;;-1:-1:-1;27071:12:0;26795:296;-1:-1:-1;;;26795:296:0:o;33002:149::-;33065:7;33096:1;33092;:5;:51;;33227:13;33321:15;;;33357:4;33350:15;;;33404:4;33388:21;;33092:51;;;-1:-1:-1;33227:13:0;33321:15;;;33357:4;33350:15;33404:4;33388:21;;;33002:149::o;196:131:1:-;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:1;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:1;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:1:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:173::-;1991:20;;-1:-1:-1;;;;;2040:31:1;;2030:42;;2020:70;;2086:1;2083;2076:12;2020:70;1923:173;;;:::o;2101:254::-;2169:6;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2269:29;2288:9;2269:29;:::i;:::-;2259:39;2345:2;2330:18;;;;2317:32;;-1:-1:-1;;;2101:254:1:o;2360:118::-;2446:5;2439:13;2432:21;2425:5;2422:32;2412:60;;2468:1;2465;2458:12;2483:241;2539:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:52;;;2608:1;2605;2598:12;2560:52;2647:9;2634:23;2666:28;2688:5;2666:28;:::i;2942:328::-;3019:6;3027;3035;3088:2;3076:9;3067:7;3063:23;3059:32;3056:52;;;3104:1;3101;3094:12;3056:52;3127:29;3146:9;3127:29;:::i;:::-;3117:39;;3175:38;3209:2;3198:9;3194:18;3175:38;:::i;:::-;3165:48;;3260:2;3249:9;3245:18;3232:32;3222:42;;2942:328;;;;;:::o;3275:248::-;3343:6;3351;3404:2;3392:9;3383:7;3379:23;3375:32;3372:52;;;3420:1;3417;3410:12;3372:52;-1:-1:-1;;3443:23:1;;;3513:2;3498:18;;;3485:32;;-1:-1:-1;3275:248:1:o;3807:127::-;3868:10;3863:3;3859:20;3856:1;3849:31;3899:4;3896:1;3889:15;3923:4;3920:1;3913:15;3939:275;4010:2;4004:9;4075:2;4056:13;;-1:-1:-1;;4052:27:1;4040:40;;-1:-1:-1;;;;;4095:34:1;;4131:22;;;4092:62;4089:88;;;4157:18;;:::i;:::-;4193:2;4186:22;3939:275;;-1:-1:-1;3939:275:1:o;4219:407::-;4284:5;-1:-1:-1;;;;;4310:6:1;4307:30;4304:56;;;4340:18;;:::i;:::-;4378:57;4423:2;4402:15;;-1:-1:-1;;4398:29:1;4429:4;4394:40;4378:57;:::i;:::-;4369:66;;4458:6;4451:5;4444:21;4498:3;4489:6;4484:3;4480:16;4477:25;4474:45;;;4515:1;4512;4505:12;4474:45;4564:6;4559:3;4552:4;4545:5;4541:16;4528:43;4618:1;4611:4;4602:6;4595:5;4591:18;4587:29;4580:40;4219:407;;;;;:::o;4631:451::-;4700:6;4753:2;4741:9;4732:7;4728:23;4724:32;4721:52;;;4769:1;4766;4759:12;4721:52;4809:9;4796:23;-1:-1:-1;;;;;4834:6:1;4831:30;4828:50;;;4874:1;4871;4864:12;4828:50;4897:22;;4950:4;4942:13;;4938:27;-1:-1:-1;4928:55:1;;4979:1;4976;4969:12;4928:55;5002:74;5068:7;5063:2;5050:16;5045:2;5041;5037:11;5002:74;:::i;5087:186::-;5146:6;5199:2;5187:9;5178:7;5174:23;5170:32;5167:52;;;5215:1;5212;5205:12;5167:52;5238:29;5257:9;5238:29;:::i;5278:315::-;5343:6;5351;5404:2;5392:9;5383:7;5379:23;5375:32;5372:52;;;5420:1;5417;5410:12;5372:52;5443:29;5462:9;5443:29;:::i;:::-;5433:39;;5522:2;5511:9;5507:18;5494:32;5535:28;5557:5;5535:28;:::i;:::-;5582:5;5572:15;;;5278:315;;;;;:::o;5598:254::-;5666:6;5674;5727:2;5715:9;5706:7;5702:23;5698:32;5695:52;;;5743:1;5740;5733:12;5695:52;5779:9;5766:23;5756:33;;5808:38;5842:2;5831:9;5827:18;5808:38;:::i;:::-;5798:48;;5598:254;;;;;:::o;5857:667::-;5952:6;5960;5968;5976;6029:3;6017:9;6008:7;6004:23;6000:33;5997:53;;;6046:1;6043;6036:12;5997:53;6069:29;6088:9;6069:29;:::i;:::-;6059:39;;6117:38;6151:2;6140:9;6136:18;6117:38;:::i;:::-;6107:48;;6202:2;6191:9;6187:18;6174:32;6164:42;;6257:2;6246:9;6242:18;6229:32;-1:-1:-1;;;;;6276:6:1;6273:30;6270:50;;;6316:1;6313;6306:12;6270:50;6339:22;;6392:4;6384:13;;6380:27;-1:-1:-1;6370:55:1;;6421:1;6418;6411:12;6370:55;6444:74;6510:7;6505:2;6492:16;6487:2;6483;6479:11;6444:74;:::i;:::-;6434:84;;;5857:667;;;;;;;:::o;6529:683::-;6624:6;6632;6640;6693:2;6681:9;6672:7;6668:23;6664:32;6661:52;;;6709:1;6706;6699:12;6661:52;6745:9;6732:23;6722:33;;6806:2;6795:9;6791:18;6778:32;-1:-1:-1;;;;;6870:2:1;6862:6;6859:14;6856:34;;;6886:1;6883;6876:12;6856:34;6924:6;6913:9;6909:22;6899:32;;6969:7;6962:4;6958:2;6954:13;6950:27;6940:55;;6991:1;6988;6981:12;6940:55;7031:2;7018:16;7057:2;7049:6;7046:14;7043:34;;;7073:1;7070;7063:12;7043:34;7126:7;7121:2;7111:6;7108:1;7104:14;7100:2;7096:23;7092:32;7089:45;7086:65;;;7147:1;7144;7137:12;7086:65;7178:2;7174;7170:11;7160:21;;7200:6;7190:16;;;;;6529:683;;;;;:::o;7217:366::-;7284:6;7292;7345:2;7333:9;7324:7;7320:23;7316:32;7313:52;;;7361:1;7358;7351:12;7313:52;7384:29;7403:9;7384:29;:::i;:::-;7374:39;;7463:2;7452:9;7448:18;7435:32;-1:-1:-1;;;;;7500:5:1;7496:38;7489:5;7486:49;7476:77;;7549:1;7546;7539:12;7773:260;7841:6;7849;7902:2;7890:9;7881:7;7877:23;7873:32;7870:52;;;7918:1;7915;7908:12;7870:52;7941:29;7960:9;7941:29;:::i;:::-;7931:39;;7989:38;8023:2;8012:9;8008:18;7989:38;:::i;8220:952::-;8304:6;8335:2;8378;8366:9;8357:7;8353:23;8349:32;8346:52;;;8394:1;8391;8384:12;8346:52;8434:9;8421:23;-1:-1:-1;;;;;8504:2:1;8496:6;8493:14;8490:34;;;8520:1;8517;8510:12;8490:34;8558:6;8547:9;8543:22;8533:32;;8603:7;8596:4;8592:2;8588:13;8584:27;8574:55;;8625:1;8622;8615:12;8574:55;8661:2;8648:16;8683:2;8679;8676:10;8673:36;;;8689:18;;:::i;:::-;8735:2;8732:1;8728:10;8718:20;;8758:28;8782:2;8778;8774:11;8758:28;:::i;:::-;8820:15;;;8890:11;;;8886:20;;;8851:12;;;;8918:19;;;8915:39;;;8950:1;8947;8940:12;8915:39;8974:11;;;;8994:148;9010:6;9005:3;9002:15;8994:148;;;9076:23;9095:3;9076:23;:::i;:::-;9064:36;;9027:12;;;;9120;;;;8994:148;;;9161:5;8220:952;-1:-1:-1;;;;;;;;8220:952:1:o;9177:380::-;9256:1;9252:12;;;;9299;;;9320:61;;9374:4;9366:6;9362:17;9352:27;;9320:61;9427:2;9419:6;9416:14;9396:18;9393:38;9390:161;;9473:10;9468:3;9464:20;9461:1;9454:31;9508:4;9505:1;9498:15;9536:4;9533:1;9526:15;9390:161;;9177:380;;;:::o;9562:356::-;9764:2;9746:21;;;9783:18;;;9776:30;9842:34;9837:2;9822:18;;9815:62;9909:2;9894:18;;9562:356::o;10232:245::-;10299:6;10352:2;10340:9;10331:7;10327:23;10323:32;10320:52;;;10368:1;10365;10358:12;10320:52;10400:9;10394:16;10419:28;10441:5;10419:28;:::i;10482:127::-;10543:10;10538:3;10534:20;10531:1;10524:31;10574:4;10571:1;10564:15;10598:4;10595:1;10588:15;10614:168;10687:9;;;10718;;10735:15;;;10729:22;;10715:37;10705:71;;10756:18;;:::i;10787:127::-;10848:10;10843:3;10839:20;10836:1;10829:31;10879:4;10876:1;10869:15;10903:4;10900:1;10893:15;10919:120;10959:1;10985;10975:35;;10990:18;;:::i;:::-;-1:-1:-1;11024:9:1;;10919:120::o;11380:545::-;11482:2;11477:3;11474:11;11471:448;;;11518:1;11543:5;11539:2;11532:17;11588:4;11584:2;11574:19;11658:2;11646:10;11642:19;11639:1;11635:27;11629:4;11625:38;11694:4;11682:10;11679:20;11676:47;;;-1:-1:-1;11717:4:1;11676:47;11772:2;11767:3;11763:12;11760:1;11756:20;11750:4;11746:31;11736:41;;11827:82;11845:2;11838:5;11835:13;11827:82;;;11890:17;;;11871:1;11860:13;11827:82;;;11831:3;;;11380:545;;;:::o;12101:1352::-;12227:3;12221:10;-1:-1:-1;;;;;12246:6:1;12243:30;12240:56;;;12276:18;;:::i;:::-;12305:97;12395:6;12355:38;12387:4;12381:11;12355:38;:::i;:::-;12349:4;12305:97;:::i;:::-;12457:4;;12521:2;12510:14;;12538:1;12533:663;;;;13240:1;13257:6;13254:89;;;-1:-1:-1;13309:19:1;;;13303:26;13254:89;-1:-1:-1;;12058:1:1;12054:11;;;12050:24;12046:29;12036:40;12082:1;12078:11;;;12033:57;13356:81;;12503:944;;12533:663;11327:1;11320:14;;;11364:4;11351:18;;-1:-1:-1;;12569:20:1;;;12687:236;12701:7;12698:1;12695:14;12687:236;;;12790:19;;;12784:26;12769:42;;12882:27;;;;12850:1;12838:14;;;;12717:19;;12687:236;;;12691:3;12951:6;12942:7;12939:19;12936:201;;;13012:19;;;13006:26;-1:-1:-1;;13095:1:1;13091:14;;;13107:3;13087:24;13083:37;13079:42;13064:58;13049:74;;12936:201;-1:-1:-1;;;;;13183:1:1;13167:14;;;13163:22;13150:36;;-1:-1:-1;12101:1352:1:o;14170:125::-;14235:9;;;14256:10;;;14253:36;;;14269:18;;:::i;15350:136::-;15389:3;15417:5;15407:39;;15426:18;;:::i;:::-;-1:-1:-1;;;15462:18:1;;15350:136::o;16255:663::-;16535:3;16573:6;16567:13;16589:66;16648:6;16643:3;16636:4;16628:6;16624:17;16589:66;:::i;:::-;16718:13;;16677:16;;;;16740:70;16718:13;16677:16;16787:4;16775:17;;16740:70;:::i;:::-;-1:-1:-1;;;16832:20:1;;16861:22;;;16910:1;16899:13;;16255:663;-1:-1:-1;;;;16255:663:1:o;17330:127::-;17391:10;17386:3;17382:20;17379:1;17372:31;17422:4;17419:1;17412:15;17446:4;17443:1;17436:15;17462:135;17501:3;17522:17;;;17519:43;;17542:18;;:::i;:::-;-1:-1:-1;17589:1:1;17578:13;;17462:135::o;18957:128::-;19024:9;;;19045:11;;;19042:37;;;19059:18;;:::i;19090:112::-;19122:1;19148;19138:35;;19153:18;;:::i;:::-;-1:-1:-1;19187:9:1;;19090:112::o;19207:489::-;-1:-1:-1;;;;;19476:15:1;;;19458:34;;19528:15;;19523:2;19508:18;;19501:43;19575:2;19560:18;;19553:34;;;19623:3;19618:2;19603:18;;19596:31;;;19401:4;;19644:46;;19670:19;;19662:6;19644:46;:::i;:::-;19636:54;19207:489;-1:-1:-1;;;;;;19207:489:1:o;19701:249::-;19770:6;19823:2;19811:9;19802:7;19798:23;19794:32;19791:52;;;19839:1;19836;19829:12;19791:52;19871:9;19865:16;19890:30;19914:5;19890:30;:::i

Swarm Source

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