ETH Price: $3,292.46 (+1.31%)
Gas: 2 Gwei

Token

HardWorkers (HWS)
 

Overview

Max Total Supply

523 HWS

Holders

360

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
knightnah.eth
Balance
1 HWS
0x47bA2d564d75677485638acfFe54A5CAB90807Fa
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:
HardWorkers

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-26
*/

// 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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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: operator-filter-registry/src/lib/Constants.sol


pragma solidity ^0.8.17;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    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(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// 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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

    /**
     * @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 payable;

    /**
     * @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);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 {}

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/contracts2/HardWorkers.sol

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.18;






contract HardWorkers is ERC721A, ERC2981, DefaultOperatorFilterer, Ownable {

    address private constant TEAM_ADDRESS = 0x838a81d00D7353b80cDDe7a8E9396A51F0265982;
    address private constant DEV_ADDRESS = 0x757CD3448AcAa7801BC629F7740A4C91f3d11f10;

    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public wlSupply = 3000;
    uint256 public publicSupply = 2555;
    uint256 public constant MAX_PER_WALLET = 6;
    uint256 public constant PRICE = 0.003 ether;

    bytes32 private merkleRoot;
    mapping(address => uint256) mints_per_wallet;
    uint256 wlMinted = 0;
    uint256 publicMinted = 0;

    bool public wlSale = false;
    bool public publicSale = false;
    string public baseUri = "ipfs://bafybeibbpf7tx46op345kset44fawtkyihsgvogpvwr6iaxwneeedt2cdi/";

    constructor() ERC721A("HardWorkers", "HWS") {
        setDefaultRoyalty(TEAM_ADDRESS, 500);
        _mint(msg.sender, 1);
    }

    function wlMint(uint amount, bytes32[] calldata _proof) external payable {
        require(wlSale, "WL mint not active");
        require(mints_per_wallet[msg.sender] + amount <= MAX_PER_WALLET, "Exceeds max per wallet");
        require(_totalMinted() + amount <= MAX_SUPPLY, "SOLD OUT");
        require(wlMinted + amount <= wlSupply, "WL supply exceeded");

        if (mints_per_wallet[msg.sender] == 0) {
            require(PRICE * (amount - 1) <= msg.value,"Insufficient funds sent");
        } else {
            require(PRICE * amount <= msg.value,"Insufficient funds sent");
        }

        require(isWhiteListed(msg.sender, _proof), "Not whitelisted");

        wlMinted += amount;
        mints_per_wallet[msg.sender] += amount;
        _mint(msg.sender, amount);
    }

    function mint(uint256 amount) public payable {
        require(publicSale, "Public mint not active");
        require(mints_per_wallet[msg.sender] + amount <= MAX_PER_WALLET, "Exceeds max per wallet");
        require(_totalMinted() + amount <= MAX_SUPPLY, "SOLD OUT");
        require(publicMinted + amount <= publicSupply, "Public supply exceeded");
        require(msg.sender == tx.origin, "No contracts allowed");

        if (mints_per_wallet[msg.sender] == 0) {
            require(PRICE * (amount - 1) <= msg.value,"Insufficient funds sent");
        } else {
            require(PRICE * amount <= msg.value,"Insufficient funds sent");
        }

        publicMinted += amount;
        mints_per_wallet[msg.sender] += amount;
        _mint(msg.sender, amount);
    }

    function ownerMint(address adress, uint256 amount) external payable onlyOwner {
        require(_totalMinted() + amount <= MAX_SUPPLY, "SOLD OUT");
        _mint(adress, amount);
    }

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

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

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance / 10000;
        payable(DEV_ADDRESS).transfer(balance * 1800);
        payable(TEAM_ADDRESS).transfer(balance * 8200);
    }

    function setSupply(uint256 _wlSupply, uint256 _publicSupply) external onlyOwner {
        wlSupply = _wlSupply;
        publicSupply = _publicSupply;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function isWhiteListed(address walletAddress, bytes32[] calldata _proof) internal view returns(bool) {
        return verifyWL(leaf(walletAddress), _proof);
    }

    function verifyWL(bytes32 _leaf, bytes32[] memory _proof) internal view returns(bool) {
        return MerkleProof.verify(_proof, merkleRoot, _leaf);
    }
    
    function leaf(address walletAddress) internal pure returns(bytes32) {
        return keccak256(abi.encodePacked(walletAddress));
    }

    function setBaseUri(string memory newURI) external onlyOwner {
        baseUri = newURI;
    }

    function flipPublicMint(bool _publicSale) external onlyOwner {
        publicSale = _publicSale;
    }

    function flipWLMint(bool _wlSale) external onlyOwner {
        wlSale = _wlSale;
    }

    function openSale() external onlyOwner {
        publicSale = true;
        wlSale = true;
    }

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

    function deleteDefaultRoyalty() public onlyOwner {
        _deleteDefaultRoyalty();
    }

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

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

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

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

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) {
        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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","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":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"flipPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wlSale","type":"bool"}],"name":"flipWLMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"newURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlSupply","type":"uint256"},{"internalType":"uint256","name":"_publicSupply","type":"uint256"}],"name":"setSupply","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052610bb8600b556109fb600c556000600f5560006010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506040518060800160405280604381526020016200522460439139601290816200007a919062000be6565b503480156200008857600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f48617264576f726b6572730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f485753000000000000000000000000000000000000000000000000000000000081525081600290816200011d919062000be6565b5080600390816200012f919062000be6565b5062000140620003a060201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200033d57801562000203576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001c992919062000d12565b600060405180830381600087803b158015620001e457600080fd5b505af1158015620001f9573d6000803e3d6000fd5b505050506200033c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002bd576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200028392919062000d12565b600060405180830381600087803b1580156200029e57600080fd5b505af1158015620002b3573d6000803e3d6000fd5b505050506200033b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000306919062000d3f565b600060405180830381600087803b1580156200032157600080fd5b505af115801562000336573d6000803e3d6000fd5b505050505b5b5b50506200035f62000353620003a960201b60201c565b620003b160201b60201c565b6200038773838a81d00d7353b80cdde7a8e9396a51f02659826101f46200047760201b60201c565b6200039a3360016200049d60201b60201c565b62000ee9565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004876200068460201b60201c565b6200049982826200071560201b60201c565b5050565b60008054905060008203620004de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004f36000848385620008b860201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200058283620005646000866000620008be60201b60201c565b6200057585620008ee60201b60201c565b17620008fe60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200062557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620005e8565b506000820362000661576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200067f60008483856200092960201b60201c565b505050565b62000694620003a960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006ba6200092f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000713576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070a9062000dbd565b60405180910390fd5b565b620007256200095960201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077d9062000e55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ef9062000ec7565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b50505050565b60008060e883901c905060e8620008dd8686846200096360201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612710905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009ee57607f821691505b60208210810362000a045762000a03620009a6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a6e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a2f565b62000a7a868362000a2f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ac762000ac162000abb8462000a92565b62000a9c565b62000a92565b9050919050565b6000819050919050565b62000ae38362000aa6565b62000afb62000af28262000ace565b84845462000a3c565b825550505050565b600090565b62000b1262000b03565b62000b1f81848462000ad8565b505050565b5b8181101562000b475762000b3b60008262000b08565b60018101905062000b25565b5050565b601f82111562000b965762000b608162000a0a565b62000b6b8462000a1f565b8101602085101562000b7b578190505b62000b9362000b8a8562000a1f565b83018262000b24565b50505b505050565b600082821c905092915050565b600062000bbb6000198460080262000b9b565b1980831691505092915050565b600062000bd6838362000ba8565b9150826002028217905092915050565b62000bf1826200096c565b67ffffffffffffffff81111562000c0d5762000c0c62000977565b5b62000c198254620009d5565b62000c2682828562000b4b565b600060209050601f83116001811462000c5e576000841562000c49578287015190505b62000c55858262000bc8565b86555062000cc5565b601f19841662000c6e8662000a0a565b60005b8281101562000c985784890151825560018201915060208501945060208101905062000c71565b8683101562000cb8578489015162000cb4601f89168262000ba8565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cfa8262000ccd565b9050919050565b62000d0c8162000ced565b82525050565b600060408201905062000d29600083018562000d01565b62000d38602083018462000d01565b9392505050565b600060208201905062000d56600083018462000d01565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000da560208362000d5c565b915062000db28262000d6d565b602082019050919050565b6000602082019050818103600083015262000dd88162000d96565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000e3d602a8362000d5c565b915062000e4a8262000ddf565b604082019050919050565b6000602082019050818103600083015262000e708162000e2e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000eaf60198362000d5c565b915062000ebc8262000e77565b602082019050919050565b6000602082019050818103600083015262000ee28162000ea0565b9050919050565b61432b8062000ef96000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063a0bcfc7f116100ab578063c87b56dd1161006f578063c87b56dd14610781578063d1d4a1bc146107be578063e985e9c5146107e9578063f2fde38b14610826578063fc784d491461084f57610230565b8063a0bcfc7f146106d3578063a22cb465146106fc578063aa1b103f14610725578063b88d4fde1461073c578063c1ac5ae01461075857610230565b80638d859f3e116100f25780638d859f3e1461060b5780638da5cb5b1461063657806395d89b41146106615780639abc83201461068c578063a0712d68146106b757610230565b80636352211e1461052857806370a0823114610565578063715018a6146105a257806372a57475146105b95780637cb64759146105e257610230565b806323b872dd116101bc5780633ef0d36d116101805780633ef0d36d1461047e57806341f434341461049a57806342842e0e146104c5578063484b973c146104e15780635e84d723146104fd57610230565b806323b872dd146103b75780632a55205a146103d357806332cb6b0c1461041157806333bc1c5c1461043c5780633ccfd60b1461046757610230565b8063095ea7b311610203578063095ea7b3146103035780630f2cdd6c1461031f5780630fe8418b1461034a578063167ff46f1461037557806318160ddd1461038c57610230565b806301ffc9a71461023557806304634d8d1461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612da9565b610878565b6040516102699190612df1565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190612eae565b61089a565b005b3480156102a757600080fd5b506102b06108b0565b6040516102bd9190612f7e565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190612fd6565b610942565b6040516102fa9190613012565b60405180910390f35b61031d6004803603810190610318919061302d565b6109c1565b005b34801561032b57600080fd5b506103346109da565b604051610341919061307c565b60405180910390f35b34801561035657600080fd5b5061035f6109df565b60405161036c919061307c565b60405180910390f35b34801561038157600080fd5b5061038a6109e5565b005b34801561039857600080fd5b506103a1610a25565b6040516103ae919061307c565b60405180910390f35b6103d160048036038101906103cc9190613097565b610a3c565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906130ea565b610a8b565b60405161040892919061312a565b60405180910390f35b34801561041d57600080fd5b50610426610c75565b604051610433919061307c565b60405180910390f35b34801561044857600080fd5b50610451610c7b565b60405161045e9190612df1565b60405180910390f35b34801561047357600080fd5b5061047c610c8e565b005b610498600480360381019061049391906131b8565b610d7b565b005b3480156104a657600080fd5b506104af6110cc565b6040516104bc9190613277565b60405180910390f35b6104df60048036038101906104da9190613097565b6110de565b005b6104fb60048036038101906104f6919061302d565b61112d565b005b34801561050957600080fd5b5061051261119a565b60405161051f919061307c565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612fd6565b6111a0565b60405161055c9190613012565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613292565b6111b2565b604051610599919061307c565b60405180910390f35b3480156105ae57600080fd5b506105b761126a565b005b3480156105c557600080fd5b506105e060048036038101906105db91906132eb565b61127e565b005b3480156105ee57600080fd5b506106096004803603810190610604919061334e565b6112a3565b005b34801561061757600080fd5b506106206112b5565b60405161062d919061307c565b60405180910390f35b34801561064257600080fd5b5061064b6112c0565b6040516106589190613012565b60405180910390f35b34801561066d57600080fd5b506106766112ea565b6040516106839190612f7e565b60405180910390f35b34801561069857600080fd5b506106a161137c565b6040516106ae9190612f7e565b60405180910390f35b6106d160048036038101906106cc9190612fd6565b61140a565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906134ab565b61177d565b005b34801561070857600080fd5b50610723600480360381019061071e91906134f4565b611798565b005b34801561073157600080fd5b5061073a6117b1565b005b610756600480360381019061075191906135d5565b6117c3565b005b34801561076457600080fd5b5061077f600480360381019061077a91906132eb565b611814565b005b34801561078d57600080fd5b506107a860048036038101906107a39190612fd6565b611839565b6040516107b59190612f7e565b60405180910390f35b3480156107ca57600080fd5b506107d36118d7565b6040516107e09190612df1565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190613658565b6118ea565b60405161081d9190612df1565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613292565b61197e565b005b34801561085b57600080fd5b50610876600480360381019061087191906130ea565b611a01565b005b600061088382611a1b565b80610893575061089282611aad565b5b9050919050565b6108a2611b27565b6108ac8282611ba5565b5050565b6060600280546108bf906136c7565b80601f01602080910402602001604051908101604052809291908181526020018280546108eb906136c7565b80156109385780601f1061090d57610100808354040283529160200191610938565b820191906000526020600020905b81548152906001019060200180831161091b57829003601f168201915b5050505050905090565b600061094d82611d3a565b610983576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816109cb81611d99565b6109d58383611e96565b505050565b600681565b600b5481565b6109ed611b27565b6001601160016101000a81548160ff0219169083151502179055506001601160006101000a81548160ff021916908315150217905550565b6000610a2f611fda565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a7a57610a7933611d99565b5b610a85848484611fe3565b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610c205760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c2a612305565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610c569190613727565b610c609190613798565b90508160000151819350935050509250929050565b6115b381565b601160019054906101000a900460ff1681565b610c96611b27565b600061271047610ca69190613798565b905073757cd3448acaa7801bc629f7740a4c91f3d11f1073ffffffffffffffffffffffffffffffffffffffff166108fc61070883610ce49190613727565b9081150290604051600060405180830381858888f19350505050158015610d0f573d6000803e3d6000fd5b5073838a81d00d7353b80cdde7a8e9396a51f026598273ffffffffffffffffffffffffffffffffffffffff166108fc61200883610d4c9190613727565b9081150290604051600060405180830381858888f19350505050158015610d77573d6000803e3d6000fd5b5050565b601160009054906101000a900460ff16610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613815565b60405180910390fd5b600683600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e179190613835565b1115610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f906138b5565b60405180910390fd5b6115b383610e6461230f565b610e6e9190613835565b1115610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613921565b60405180910390fd5b600b5483600f54610ec09190613835565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef89061398d565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610fae5734600184610f5691906139ad565b660aa87bee538000610f689190613727565b1115610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090613a2d565b60405180910390fd5b611004565b3483660aa87bee538000610fc29190613727565b1115611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613a2d565b60405180910390fd5b5b61100f338383612322565b61104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613a99565b60405180910390fd5b82600f60008282546110609190613835565b9250508190555082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110b69190613835565b925050819055506110c73384612380565b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461111c5761111b33611d99565b5b61112784848461253b565b50505050565b611135611b27565b6115b38161114161230f565b61114b9190613835565b111561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390613921565b60405180910390fd5b6111968282612380565b5050565b600c5481565b60006111ab8261255b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611219576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611272611b27565b61127c6000612627565b565b611286611b27565b80601160006101000a81548160ff02191690831515021790555050565b6112ab611b27565b80600d8190555050565b660aa87bee53800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112f9906136c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611325906136c7565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b5050505050905090565b60128054611389906136c7565b80601f01602080910402602001604051908101604052809291908181526020018280546113b5906136c7565b80156114025780601f106113d757610100808354040283529160200191611402565b820191906000526020600020905b8154815290600101906020018083116113e557829003601f168201915b505050505081565b601160019054906101000a900460ff16611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613b05565b60405180910390fd5b600681600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69190613835565b11156114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de906138b5565b60405180910390fd5b6115b3816114f361230f565b6114fd9190613835565b111561153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590613921565b60405180910390fd5b600c548160105461154f9190613835565b1115611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790613b71565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590613bdd565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036116ab573460018261165391906139ad565b660aa87bee5380006116659190613727565b11156116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613a2d565b60405180910390fd5b611701565b3481660aa87bee5380006116bf9190613727565b1115611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613a2d565b60405180910390fd5b5b80601060008282546117139190613835565b9250508190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117699190613835565b9250508190555061177a3382612380565b50565b611785611b27565b80601290816117949190613d9f565b5050565b816117a281611d99565b6117ac83836126ed565b505050565b6117b9611b27565b6117c16127f8565b565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118015761180033611d99565b5b61180d85858585612845565b5050505050565b61181c611b27565b80601160016101000a81548160ff02191690831515021790555050565b606061184482611d3a565b61187a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118846128b8565b905060008151036118a457604051806020016040528060008152506118cf565b806118ae8461294a565b6040516020016118bf929190613ead565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611986611b27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90613f43565b60405180910390fd5b6119fe81612627565b50565b611a09611b27565b81600b8190555080600c819055505050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a7657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aa65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b205750611b1f8261299a565b5b9050919050565b611b2f612a04565b73ffffffffffffffffffffffffffffffffffffffff16611b4d6112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613faf565b60405180910390fd5b565b611bad612305565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290614041565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c71906140ad565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611d45611fda565b11158015611d54575060005482105b8015611d92575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e93576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e109291906140cd565b602060405180830381865afa158015611e2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e51919061410b565b611e9257806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e899190613012565b60405180910390fd5b5b50565b6000611ea1826111a0565b90508073ffffffffffffffffffffffffffffffffffffffff16611ec2612a0c565b73ffffffffffffffffffffffffffffffffffffffff1614611f2557611eee81611ee9612a0c565b6118ea565b611f24576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fee8261255b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612055576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061206184612a14565b915091506120778187612072612a0c565b612a3b565b6120c35761208c86612087612a0c565b6118ea565b6120c2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612129576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121368686866001612a7f565b801561214157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061220f856121eb888887612a85565b7c020000000000000000000000000000000000000000000000000000000017612aad565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036122955760006001850190506000600460008381526020019081526020016000205403612293576000548114612292578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122fd8686866001612ad8565b505050505050565b6000612710905090565b6000612319611fda565b60005403905090565b600061237761233085612ade565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612b0e565b90509392505050565b600080549050600082036123c0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123cd6000848385612a7f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612444836124356000866000612a85565b61243e85612b25565b17612aad565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124e557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124aa565b5060008203612520576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125366000848385612ad8565b505050565b612556838383604051806020016040528060008152506117c3565b505050565b6000808290508061256a611fda565b116125f0576000548110156125ef5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036125ed575b600081036125e35760046000836001900393508381526020019081526020016000205490506125b9565b8092505050612622565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006126fa612a0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166127a7612a0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127ec9190612df1565b60405180910390a35050565b6008600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b612850848484610a3c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128b25761287b84848484612b35565b6128b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060601280546128c7906136c7565b80601f01602080910402602001604051908101604052809291908181526020018280546128f3906136c7565b80156129405780601f1061291557610100808354040283529160200191612940565b820191906000526020600020905b81548152906001019060200180831161292357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561298557600184039350600a81066030018453600a8104905080612963575b50828103602084039350808452505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612a9c868684612c85565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081604051602001612af19190614180565b604051602081830303815290604052805190602001209050919050565b6000612b1d82600d5485612c8e565b905092915050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b5b612a0c565b8786866040518563ffffffff1660e01b8152600401612b7d94939291906141f0565b6020604051808303816000875af1925050508015612bb957506040513d601f19601f82011682018060405250810190612bb69190614251565b60015b612c32573d8060008114612be9576040519150601f19603f3d011682016040523d82523d6000602084013e612bee565b606091505b506000815103612c2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600082612c9b8584612ca5565b1490509392505050565b60008082905060005b8451811015612cf057612cdb82868381518110612cce57612ccd61427e565b5b6020026020010151612cfb565b91508080612ce8906142ad565b915050612cae565b508091505092915050565b6000818310612d1357612d0e8284612d26565b612d1e565b612d1d8383612d26565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d8681612d51565b8114612d9157600080fd5b50565b600081359050612da381612d7d565b92915050565b600060208284031215612dbf57612dbe612d47565b5b6000612dcd84828501612d94565b91505092915050565b60008115159050919050565b612deb81612dd6565b82525050565b6000602082019050612e066000830184612de2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e3782612e0c565b9050919050565b612e4781612e2c565b8114612e5257600080fd5b50565b600081359050612e6481612e3e565b92915050565b60006bffffffffffffffffffffffff82169050919050565b612e8b81612e6a565b8114612e9657600080fd5b50565b600081359050612ea881612e82565b92915050565b60008060408385031215612ec557612ec4612d47565b5b6000612ed385828601612e55565b9250506020612ee485828601612e99565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f28578082015181840152602081019050612f0d565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f5082612eee565b612f5a8185612ef9565b9350612f6a818560208601612f0a565b612f7381612f34565b840191505092915050565b60006020820190508181036000830152612f988184612f45565b905092915050565b6000819050919050565b612fb381612fa0565b8114612fbe57600080fd5b50565b600081359050612fd081612faa565b92915050565b600060208284031215612fec57612feb612d47565b5b6000612ffa84828501612fc1565b91505092915050565b61300c81612e2c565b82525050565b60006020820190506130276000830184613003565b92915050565b6000806040838503121561304457613043612d47565b5b600061305285828601612e55565b925050602061306385828601612fc1565b9150509250929050565b61307681612fa0565b82525050565b6000602082019050613091600083018461306d565b92915050565b6000806000606084860312156130b0576130af612d47565b5b60006130be86828701612e55565b93505060206130cf86828701612e55565b92505060406130e086828701612fc1565b9150509250925092565b6000806040838503121561310157613100612d47565b5b600061310f85828601612fc1565b925050602061312085828601612fc1565b9150509250929050565b600060408201905061313f6000830185613003565b61314c602083018461306d565b9392505050565b600080fd5b600080fd5b600080fd5b60008083601f84011261317857613177613153565b5b8235905067ffffffffffffffff81111561319557613194613158565b5b6020830191508360208202830111156131b1576131b061315d565b5b9250929050565b6000806000604084860312156131d1576131d0612d47565b5b60006131df86828701612fc1565b935050602084013567ffffffffffffffff811115613200576131ff612d4c565b5b61320c86828701613162565b92509250509250925092565b6000819050919050565b600061323d61323861323384612e0c565b613218565b612e0c565b9050919050565b600061324f82613222565b9050919050565b600061326182613244565b9050919050565b61327181613256565b82525050565b600060208201905061328c6000830184613268565b92915050565b6000602082840312156132a8576132a7612d47565b5b60006132b684828501612e55565b91505092915050565b6132c881612dd6565b81146132d357600080fd5b50565b6000813590506132e5816132bf565b92915050565b60006020828403121561330157613300612d47565b5b600061330f848285016132d6565b91505092915050565b6000819050919050565b61332b81613318565b811461333657600080fd5b50565b60008135905061334881613322565b92915050565b60006020828403121561336457613363612d47565b5b600061337284828501613339565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133b882612f34565b810181811067ffffffffffffffff821117156133d7576133d6613380565b5b80604052505050565b60006133ea612d3d565b90506133f682826133af565b919050565b600067ffffffffffffffff82111561341657613415613380565b5b61341f82612f34565b9050602081019050919050565b82818337600083830152505050565b600061344e613449846133fb565b6133e0565b90508281526020810184848401111561346a5761346961337b565b5b61347584828561342c565b509392505050565b600082601f83011261349257613491613153565b5b81356134a284826020860161343b565b91505092915050565b6000602082840312156134c1576134c0612d47565b5b600082013567ffffffffffffffff8111156134df576134de612d4c565b5b6134eb8482850161347d565b91505092915050565b6000806040838503121561350b5761350a612d47565b5b600061351985828601612e55565b925050602061352a858286016132d6565b9150509250929050565b600067ffffffffffffffff82111561354f5761354e613380565b5b61355882612f34565b9050602081019050919050565b600061357861357384613534565b6133e0565b9050828152602081018484840111156135945761359361337b565b5b61359f84828561342c565b509392505050565b600082601f8301126135bc576135bb613153565b5b81356135cc848260208601613565565b91505092915050565b600080600080608085870312156135ef576135ee612d47565b5b60006135fd87828801612e55565b945050602061360e87828801612e55565b935050604061361f87828801612fc1565b925050606085013567ffffffffffffffff8111156136405761363f612d4c565b5b61364c878288016135a7565b91505092959194509250565b6000806040838503121561366f5761366e612d47565b5b600061367d85828601612e55565b925050602061368e85828601612e55565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136df57607f821691505b6020821081036136f2576136f1613698565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061373282612fa0565b915061373d83612fa0565b925082820261374b81612fa0565b91508282048414831517613762576137616136f8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137a382612fa0565b91506137ae83612fa0565b9250826137be576137bd613769565b5b828204905092915050565b7f574c206d696e74206e6f74206163746976650000000000000000000000000000600082015250565b60006137ff601283612ef9565b915061380a826137c9565b602082019050919050565b6000602082019050818103600083015261382e816137f2565b9050919050565b600061384082612fa0565b915061384b83612fa0565b9250828201905080821115613863576138626136f8565b5b92915050565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b600061389f601683612ef9565b91506138aa82613869565b602082019050919050565b600060208201905081810360008301526138ce81613892565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b600061390b600883612ef9565b9150613916826138d5565b602082019050919050565b6000602082019050818103600083015261393a816138fe565b9050919050565b7f574c20737570706c792065786365656465640000000000000000000000000000600082015250565b6000613977601283612ef9565b915061398282613941565b602082019050919050565b600060208201905081810360008301526139a68161396a565b9050919050565b60006139b882612fa0565b91506139c383612fa0565b92508282039050818111156139db576139da6136f8565b5b92915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b6000613a17601783612ef9565b9150613a22826139e1565b602082019050919050565b60006020820190508181036000830152613a4681613a0a565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000613a83600f83612ef9565b9150613a8e82613a4d565b602082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f5075626c6963206d696e74206e6f742061637469766500000000000000000000600082015250565b6000613aef601683612ef9565b9150613afa82613ab9565b602082019050919050565b60006020820190508181036000830152613b1e81613ae2565b9050919050565b7f5075626c696320737570706c7920657863656564656400000000000000000000600082015250565b6000613b5b601683612ef9565b9150613b6682613b25565b602082019050919050565b60006020820190508181036000830152613b8a81613b4e565b9050919050565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b6000613bc7601483612ef9565b9150613bd282613b91565b602082019050919050565b60006020820190508181036000830152613bf681613bba565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613c5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c22565b613c698683613c22565b95508019841693508086168417925050509392505050565b6000613c9c613c97613c9284612fa0565b613218565b612fa0565b9050919050565b6000819050919050565b613cb683613c81565b613cca613cc282613ca3565b848454613c2f565b825550505050565b600090565b613cdf613cd2565b613cea818484613cad565b505050565b5b81811015613d0e57613d03600082613cd7565b600181019050613cf0565b5050565b601f821115613d5357613d2481613bfd565b613d2d84613c12565b81016020851015613d3c578190505b613d50613d4885613c12565b830182613cef565b50505b505050565b600082821c905092915050565b6000613d7660001984600802613d58565b1980831691505092915050565b6000613d8f8383613d65565b9150826002028217905092915050565b613da882612eee565b67ffffffffffffffff811115613dc157613dc0613380565b5b613dcb82546136c7565b613dd6828285613d12565b600060209050601f831160018114613e095760008415613df7578287015190505b613e018582613d83565b865550613e69565b601f198416613e1786613bfd565b60005b82811015613e3f57848901518255600182019150602085019450602081019050613e1a565b86831015613e5c5784890151613e58601f891682613d65565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000613e8782612eee565b613e918185613e71565b9350613ea1818560208601612f0a565b80840191505092915050565b6000613eb98285613e7c565b9150613ec58284613e7c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f2d602683612ef9565b9150613f3882613ed1565b604082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f99602083612ef9565b9150613fa482613f63565b602082019050919050565b60006020820190508181036000830152613fc881613f8c565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061402b602a83612ef9565b915061403682613fcf565b604082019050919050565b6000602082019050818103600083015261405a8161401e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614097601983612ef9565b91506140a282614061565b602082019050919050565b600060208201905081810360008301526140c68161408a565b9050919050565b60006040820190506140e26000830185613003565b6140ef6020830184613003565b9392505050565b600081519050614105816132bf565b92915050565b60006020828403121561412157614120612d47565b5b600061412f848285016140f6565b91505092915050565b60008160601b9050919050565b600061415082614138565b9050919050565b600061416282614145565b9050919050565b61417a61417582612e2c565b614157565b82525050565b600061418c8284614169565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b60006141c28261419b565b6141cc81856141a6565b93506141dc818560208601612f0a565b6141e581612f34565b840191505092915050565b60006080820190506142056000830187613003565b6142126020830186613003565b61421f604083018561306d565b818103606083015261423181846141b7565b905095945050505050565b60008151905061424b81612d7d565b92915050565b60006020828403121561426757614266612d47565b5b60006142758482850161423c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006142b882612fa0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142ea576142e96136f8565b5b60018201905091905056fea264697066735822122072355c6cbaa7c86ec6c7e9b673af8be40d1e503a364a18c574bff78811eda73064736f6c63430008120033697066733a2f2f626166796265696262706637747834366f703334356b7365743434666177746b7969687367766f677076777236696178776e6565656474326364692f

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063a0bcfc7f116100ab578063c87b56dd1161006f578063c87b56dd14610781578063d1d4a1bc146107be578063e985e9c5146107e9578063f2fde38b14610826578063fc784d491461084f57610230565b8063a0bcfc7f146106d3578063a22cb465146106fc578063aa1b103f14610725578063b88d4fde1461073c578063c1ac5ae01461075857610230565b80638d859f3e116100f25780638d859f3e1461060b5780638da5cb5b1461063657806395d89b41146106615780639abc83201461068c578063a0712d68146106b757610230565b80636352211e1461052857806370a0823114610565578063715018a6146105a257806372a57475146105b95780637cb64759146105e257610230565b806323b872dd116101bc5780633ef0d36d116101805780633ef0d36d1461047e57806341f434341461049a57806342842e0e146104c5578063484b973c146104e15780635e84d723146104fd57610230565b806323b872dd146103b75780632a55205a146103d357806332cb6b0c1461041157806333bc1c5c1461043c5780633ccfd60b1461046757610230565b8063095ea7b311610203578063095ea7b3146103035780630f2cdd6c1461031f5780630fe8418b1461034a578063167ff46f1461037557806318160ddd1461038c57610230565b806301ffc9a71461023557806304634d8d1461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612da9565b610878565b6040516102699190612df1565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190612eae565b61089a565b005b3480156102a757600080fd5b506102b06108b0565b6040516102bd9190612f7e565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190612fd6565b610942565b6040516102fa9190613012565b60405180910390f35b61031d6004803603810190610318919061302d565b6109c1565b005b34801561032b57600080fd5b506103346109da565b604051610341919061307c565b60405180910390f35b34801561035657600080fd5b5061035f6109df565b60405161036c919061307c565b60405180910390f35b34801561038157600080fd5b5061038a6109e5565b005b34801561039857600080fd5b506103a1610a25565b6040516103ae919061307c565b60405180910390f35b6103d160048036038101906103cc9190613097565b610a3c565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906130ea565b610a8b565b60405161040892919061312a565b60405180910390f35b34801561041d57600080fd5b50610426610c75565b604051610433919061307c565b60405180910390f35b34801561044857600080fd5b50610451610c7b565b60405161045e9190612df1565b60405180910390f35b34801561047357600080fd5b5061047c610c8e565b005b610498600480360381019061049391906131b8565b610d7b565b005b3480156104a657600080fd5b506104af6110cc565b6040516104bc9190613277565b60405180910390f35b6104df60048036038101906104da9190613097565b6110de565b005b6104fb60048036038101906104f6919061302d565b61112d565b005b34801561050957600080fd5b5061051261119a565b60405161051f919061307c565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612fd6565b6111a0565b60405161055c9190613012565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613292565b6111b2565b604051610599919061307c565b60405180910390f35b3480156105ae57600080fd5b506105b761126a565b005b3480156105c557600080fd5b506105e060048036038101906105db91906132eb565b61127e565b005b3480156105ee57600080fd5b506106096004803603810190610604919061334e565b6112a3565b005b34801561061757600080fd5b506106206112b5565b60405161062d919061307c565b60405180910390f35b34801561064257600080fd5b5061064b6112c0565b6040516106589190613012565b60405180910390f35b34801561066d57600080fd5b506106766112ea565b6040516106839190612f7e565b60405180910390f35b34801561069857600080fd5b506106a161137c565b6040516106ae9190612f7e565b60405180910390f35b6106d160048036038101906106cc9190612fd6565b61140a565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906134ab565b61177d565b005b34801561070857600080fd5b50610723600480360381019061071e91906134f4565b611798565b005b34801561073157600080fd5b5061073a6117b1565b005b610756600480360381019061075191906135d5565b6117c3565b005b34801561076457600080fd5b5061077f600480360381019061077a91906132eb565b611814565b005b34801561078d57600080fd5b506107a860048036038101906107a39190612fd6565b611839565b6040516107b59190612f7e565b60405180910390f35b3480156107ca57600080fd5b506107d36118d7565b6040516107e09190612df1565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190613658565b6118ea565b60405161081d9190612df1565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613292565b61197e565b005b34801561085b57600080fd5b50610876600480360381019061087191906130ea565b611a01565b005b600061088382611a1b565b80610893575061089282611aad565b5b9050919050565b6108a2611b27565b6108ac8282611ba5565b5050565b6060600280546108bf906136c7565b80601f01602080910402602001604051908101604052809291908181526020018280546108eb906136c7565b80156109385780601f1061090d57610100808354040283529160200191610938565b820191906000526020600020905b81548152906001019060200180831161091b57829003601f168201915b5050505050905090565b600061094d82611d3a565b610983576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816109cb81611d99565b6109d58383611e96565b505050565b600681565b600b5481565b6109ed611b27565b6001601160016101000a81548160ff0219169083151502179055506001601160006101000a81548160ff021916908315150217905550565b6000610a2f611fda565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a7a57610a7933611d99565b5b610a85848484611fe3565b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610c205760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c2a612305565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610c569190613727565b610c609190613798565b90508160000151819350935050509250929050565b6115b381565b601160019054906101000a900460ff1681565b610c96611b27565b600061271047610ca69190613798565b905073757cd3448acaa7801bc629f7740a4c91f3d11f1073ffffffffffffffffffffffffffffffffffffffff166108fc61070883610ce49190613727565b9081150290604051600060405180830381858888f19350505050158015610d0f573d6000803e3d6000fd5b5073838a81d00d7353b80cdde7a8e9396a51f026598273ffffffffffffffffffffffffffffffffffffffff166108fc61200883610d4c9190613727565b9081150290604051600060405180830381858888f19350505050158015610d77573d6000803e3d6000fd5b5050565b601160009054906101000a900460ff16610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613815565b60405180910390fd5b600683600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e179190613835565b1115610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f906138b5565b60405180910390fd5b6115b383610e6461230f565b610e6e9190613835565b1115610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613921565b60405180910390fd5b600b5483600f54610ec09190613835565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef89061398d565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610fae5734600184610f5691906139ad565b660aa87bee538000610f689190613727565b1115610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090613a2d565b60405180910390fd5b611004565b3483660aa87bee538000610fc29190613727565b1115611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613a2d565b60405180910390fd5b5b61100f338383612322565b61104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613a99565b60405180910390fd5b82600f60008282546110609190613835565b9250508190555082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110b69190613835565b925050819055506110c73384612380565b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461111c5761111b33611d99565b5b61112784848461253b565b50505050565b611135611b27565b6115b38161114161230f565b61114b9190613835565b111561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390613921565b60405180910390fd5b6111968282612380565b5050565b600c5481565b60006111ab8261255b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611219576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611272611b27565b61127c6000612627565b565b611286611b27565b80601160006101000a81548160ff02191690831515021790555050565b6112ab611b27565b80600d8190555050565b660aa87bee53800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112f9906136c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611325906136c7565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b5050505050905090565b60128054611389906136c7565b80601f01602080910402602001604051908101604052809291908181526020018280546113b5906136c7565b80156114025780601f106113d757610100808354040283529160200191611402565b820191906000526020600020905b8154815290600101906020018083116113e557829003601f168201915b505050505081565b601160019054906101000a900460ff16611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090613b05565b60405180910390fd5b600681600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69190613835565b11156114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de906138b5565b60405180910390fd5b6115b3816114f361230f565b6114fd9190613835565b111561153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590613921565b60405180910390fd5b600c548160105461154f9190613835565b1115611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790613b71565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590613bdd565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054036116ab573460018261165391906139ad565b660aa87bee5380006116659190613727565b11156116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613a2d565b60405180910390fd5b611701565b3481660aa87bee5380006116bf9190613727565b1115611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613a2d565b60405180910390fd5b5b80601060008282546117139190613835565b9250508190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117699190613835565b9250508190555061177a3382612380565b50565b611785611b27565b80601290816117949190613d9f565b5050565b816117a281611d99565b6117ac83836126ed565b505050565b6117b9611b27565b6117c16127f8565b565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118015761180033611d99565b5b61180d85858585612845565b5050505050565b61181c611b27565b80601160016101000a81548160ff02191690831515021790555050565b606061184482611d3a565b61187a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118846128b8565b905060008151036118a457604051806020016040528060008152506118cf565b806118ae8461294a565b6040516020016118bf929190613ead565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611986611b27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90613f43565b60405180910390fd5b6119fe81612627565b50565b611a09611b27565b81600b8190555080600c819055505050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a7657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aa65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b205750611b1f8261299a565b5b9050919050565b611b2f612a04565b73ffffffffffffffffffffffffffffffffffffffff16611b4d6112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613faf565b60405180910390fd5b565b611bad612305565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290614041565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c71906140ad565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611d45611fda565b11158015611d54575060005482105b8015611d92575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e93576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e109291906140cd565b602060405180830381865afa158015611e2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e51919061410b565b611e9257806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e899190613012565b60405180910390fd5b5b50565b6000611ea1826111a0565b90508073ffffffffffffffffffffffffffffffffffffffff16611ec2612a0c565b73ffffffffffffffffffffffffffffffffffffffff1614611f2557611eee81611ee9612a0c565b6118ea565b611f24576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fee8261255b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612055576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061206184612a14565b915091506120778187612072612a0c565b612a3b565b6120c35761208c86612087612a0c565b6118ea565b6120c2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612129576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121368686866001612a7f565b801561214157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061220f856121eb888887612a85565b7c020000000000000000000000000000000000000000000000000000000017612aad565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036122955760006001850190506000600460008381526020019081526020016000205403612293576000548114612292578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122fd8686866001612ad8565b505050505050565b6000612710905090565b6000612319611fda565b60005403905090565b600061237761233085612ade565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612b0e565b90509392505050565b600080549050600082036123c0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123cd6000848385612a7f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612444836124356000866000612a85565b61243e85612b25565b17612aad565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124e557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124aa565b5060008203612520576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125366000848385612ad8565b505050565b612556838383604051806020016040528060008152506117c3565b505050565b6000808290508061256a611fda565b116125f0576000548110156125ef5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036125ed575b600081036125e35760046000836001900393508381526020019081526020016000205490506125b9565b8092505050612622565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006126fa612a0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166127a7612a0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127ec9190612df1565b60405180910390a35050565b6008600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b612850848484610a3c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128b25761287b84848484612b35565b6128b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060601280546128c7906136c7565b80601f01602080910402602001604051908101604052809291908181526020018280546128f3906136c7565b80156129405780601f1061291557610100808354040283529160200191612940565b820191906000526020600020905b81548152906001019060200180831161292357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561298557600184039350600a81066030018453600a8104905080612963575b50828103602084039350808452505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612a9c868684612c85565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081604051602001612af19190614180565b604051602081830303815290604052805190602001209050919050565b6000612b1d82600d5485612c8e565b905092915050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b5b612a0c565b8786866040518563ffffffff1660e01b8152600401612b7d94939291906141f0565b6020604051808303816000875af1925050508015612bb957506040513d601f19601f82011682018060405250810190612bb69190614251565b60015b612c32573d8060008114612be9576040519150601f19603f3d011682016040523d82523d6000602084013e612bee565b606091505b506000815103612c2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600082612c9b8584612ca5565b1490509392505050565b60008082905060005b8451811015612cf057612cdb82868381518110612cce57612ccd61427e565b5b6020026020010151612cfb565b91508080612ce8906142ad565b915050612cae565b508091505092915050565b6000818310612d1357612d0e8284612d26565b612d1e565b612d1d8383612d26565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d8681612d51565b8114612d9157600080fd5b50565b600081359050612da381612d7d565b92915050565b600060208284031215612dbf57612dbe612d47565b5b6000612dcd84828501612d94565b91505092915050565b60008115159050919050565b612deb81612dd6565b82525050565b6000602082019050612e066000830184612de2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e3782612e0c565b9050919050565b612e4781612e2c565b8114612e5257600080fd5b50565b600081359050612e6481612e3e565b92915050565b60006bffffffffffffffffffffffff82169050919050565b612e8b81612e6a565b8114612e9657600080fd5b50565b600081359050612ea881612e82565b92915050565b60008060408385031215612ec557612ec4612d47565b5b6000612ed385828601612e55565b9250506020612ee485828601612e99565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f28578082015181840152602081019050612f0d565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f5082612eee565b612f5a8185612ef9565b9350612f6a818560208601612f0a565b612f7381612f34565b840191505092915050565b60006020820190508181036000830152612f988184612f45565b905092915050565b6000819050919050565b612fb381612fa0565b8114612fbe57600080fd5b50565b600081359050612fd081612faa565b92915050565b600060208284031215612fec57612feb612d47565b5b6000612ffa84828501612fc1565b91505092915050565b61300c81612e2c565b82525050565b60006020820190506130276000830184613003565b92915050565b6000806040838503121561304457613043612d47565b5b600061305285828601612e55565b925050602061306385828601612fc1565b9150509250929050565b61307681612fa0565b82525050565b6000602082019050613091600083018461306d565b92915050565b6000806000606084860312156130b0576130af612d47565b5b60006130be86828701612e55565b93505060206130cf86828701612e55565b92505060406130e086828701612fc1565b9150509250925092565b6000806040838503121561310157613100612d47565b5b600061310f85828601612fc1565b925050602061312085828601612fc1565b9150509250929050565b600060408201905061313f6000830185613003565b61314c602083018461306d565b9392505050565b600080fd5b600080fd5b600080fd5b60008083601f84011261317857613177613153565b5b8235905067ffffffffffffffff81111561319557613194613158565b5b6020830191508360208202830111156131b1576131b061315d565b5b9250929050565b6000806000604084860312156131d1576131d0612d47565b5b60006131df86828701612fc1565b935050602084013567ffffffffffffffff811115613200576131ff612d4c565b5b61320c86828701613162565b92509250509250925092565b6000819050919050565b600061323d61323861323384612e0c565b613218565b612e0c565b9050919050565b600061324f82613222565b9050919050565b600061326182613244565b9050919050565b61327181613256565b82525050565b600060208201905061328c6000830184613268565b92915050565b6000602082840312156132a8576132a7612d47565b5b60006132b684828501612e55565b91505092915050565b6132c881612dd6565b81146132d357600080fd5b50565b6000813590506132e5816132bf565b92915050565b60006020828403121561330157613300612d47565b5b600061330f848285016132d6565b91505092915050565b6000819050919050565b61332b81613318565b811461333657600080fd5b50565b60008135905061334881613322565b92915050565b60006020828403121561336457613363612d47565b5b600061337284828501613339565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133b882612f34565b810181811067ffffffffffffffff821117156133d7576133d6613380565b5b80604052505050565b60006133ea612d3d565b90506133f682826133af565b919050565b600067ffffffffffffffff82111561341657613415613380565b5b61341f82612f34565b9050602081019050919050565b82818337600083830152505050565b600061344e613449846133fb565b6133e0565b90508281526020810184848401111561346a5761346961337b565b5b61347584828561342c565b509392505050565b600082601f83011261349257613491613153565b5b81356134a284826020860161343b565b91505092915050565b6000602082840312156134c1576134c0612d47565b5b600082013567ffffffffffffffff8111156134df576134de612d4c565b5b6134eb8482850161347d565b91505092915050565b6000806040838503121561350b5761350a612d47565b5b600061351985828601612e55565b925050602061352a858286016132d6565b9150509250929050565b600067ffffffffffffffff82111561354f5761354e613380565b5b61355882612f34565b9050602081019050919050565b600061357861357384613534565b6133e0565b9050828152602081018484840111156135945761359361337b565b5b61359f84828561342c565b509392505050565b600082601f8301126135bc576135bb613153565b5b81356135cc848260208601613565565b91505092915050565b600080600080608085870312156135ef576135ee612d47565b5b60006135fd87828801612e55565b945050602061360e87828801612e55565b935050604061361f87828801612fc1565b925050606085013567ffffffffffffffff8111156136405761363f612d4c565b5b61364c878288016135a7565b91505092959194509250565b6000806040838503121561366f5761366e612d47565b5b600061367d85828601612e55565b925050602061368e85828601612e55565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136df57607f821691505b6020821081036136f2576136f1613698565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061373282612fa0565b915061373d83612fa0565b925082820261374b81612fa0565b91508282048414831517613762576137616136f8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137a382612fa0565b91506137ae83612fa0565b9250826137be576137bd613769565b5b828204905092915050565b7f574c206d696e74206e6f74206163746976650000000000000000000000000000600082015250565b60006137ff601283612ef9565b915061380a826137c9565b602082019050919050565b6000602082019050818103600083015261382e816137f2565b9050919050565b600061384082612fa0565b915061384b83612fa0565b9250828201905080821115613863576138626136f8565b5b92915050565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b600061389f601683612ef9565b91506138aa82613869565b602082019050919050565b600060208201905081810360008301526138ce81613892565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b600061390b600883612ef9565b9150613916826138d5565b602082019050919050565b6000602082019050818103600083015261393a816138fe565b9050919050565b7f574c20737570706c792065786365656465640000000000000000000000000000600082015250565b6000613977601283612ef9565b915061398282613941565b602082019050919050565b600060208201905081810360008301526139a68161396a565b9050919050565b60006139b882612fa0565b91506139c383612fa0565b92508282039050818111156139db576139da6136f8565b5b92915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b6000613a17601783612ef9565b9150613a22826139e1565b602082019050919050565b60006020820190508181036000830152613a4681613a0a565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000613a83600f83612ef9565b9150613a8e82613a4d565b602082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f5075626c6963206d696e74206e6f742061637469766500000000000000000000600082015250565b6000613aef601683612ef9565b9150613afa82613ab9565b602082019050919050565b60006020820190508181036000830152613b1e81613ae2565b9050919050565b7f5075626c696320737570706c7920657863656564656400000000000000000000600082015250565b6000613b5b601683612ef9565b9150613b6682613b25565b602082019050919050565b60006020820190508181036000830152613b8a81613b4e565b9050919050565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b6000613bc7601483612ef9565b9150613bd282613b91565b602082019050919050565b60006020820190508181036000830152613bf681613bba565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613c5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c22565b613c698683613c22565b95508019841693508086168417925050509392505050565b6000613c9c613c97613c9284612fa0565b613218565b612fa0565b9050919050565b6000819050919050565b613cb683613c81565b613cca613cc282613ca3565b848454613c2f565b825550505050565b600090565b613cdf613cd2565b613cea818484613cad565b505050565b5b81811015613d0e57613d03600082613cd7565b600181019050613cf0565b5050565b601f821115613d5357613d2481613bfd565b613d2d84613c12565b81016020851015613d3c578190505b613d50613d4885613c12565b830182613cef565b50505b505050565b600082821c905092915050565b6000613d7660001984600802613d58565b1980831691505092915050565b6000613d8f8383613d65565b9150826002028217905092915050565b613da882612eee565b67ffffffffffffffff811115613dc157613dc0613380565b5b613dcb82546136c7565b613dd6828285613d12565b600060209050601f831160018114613e095760008415613df7578287015190505b613e018582613d83565b865550613e69565b601f198416613e1786613bfd565b60005b82811015613e3f57848901518255600182019150602085019450602081019050613e1a565b86831015613e5c5784890151613e58601f891682613d65565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000613e8782612eee565b613e918185613e71565b9350613ea1818560208601612f0a565b80840191505092915050565b6000613eb98285613e7c565b9150613ec58284613e7c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f2d602683612ef9565b9150613f3882613ed1565b604082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f99602083612ef9565b9150613fa482613f63565b602082019050919050565b60006020820190508181036000830152613fc881613f8c565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061402b602a83612ef9565b915061403682613fcf565b604082019050919050565b6000602082019050818103600083015261405a8161401e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614097601983612ef9565b91506140a282614061565b602082019050919050565b600060208201905081810360008301526140c68161408a565b9050919050565b60006040820190506140e26000830185613003565b6140ef6020830184613003565b9392505050565b600081519050614105816132bf565b92915050565b60006020828403121561412157614120612d47565b5b600061412f848285016140f6565b91505092915050565b60008160601b9050919050565b600061415082614138565b9050919050565b600061416282614145565b9050919050565b61417a61417582612e2c565b614157565b82525050565b600061418c8284614169565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b60006141c28261419b565b6141cc81856141a6565b93506141dc818560208601612f0a565b6141e581612f34565b840191505092915050565b60006080820190506142056000830187613003565b6142126020830186613003565b61421f604083018561306d565b818103606083015261423181846141b7565b905095945050505050565b60008151905061424b81612d7d565b92915050565b60006020828403121561426757614266612d47565b5b60006142758482850161423c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006142b882612fa0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142ea576142e96136f8565b5b60018201905091905056fea264697066735822122072355c6cbaa7c86ec6c7e9b673af8be40d1e503a364a18c574bff78811eda73064736f6c63430008120033

Deployed Bytecode Sourcemap

82799:5774:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87421:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87170:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50545:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57036:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87827:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83188:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83110:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87063:99;;;;;;;;;;;;;:::i;:::-;;46296:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88000:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4500:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;83062:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83466:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85762:216;;;;;;;;;;;;;:::i;:::-;;83743:801;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24293:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88179:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85350:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83147:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51938:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47480:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30422:103;;;;;;;;;;;;;:::i;:::-;;86967:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86152:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83237:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29774:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50721:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83503:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84552:790;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86751:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87643:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87322:91;;;;;;;;;;;;;:::i;:::-;;88366:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86855:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50931:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83433:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57985:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30680:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85986:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87421:214;87524:4;87547:38;87573:11;87547:25;:38::i;:::-;:80;;;;87589:38;87615:11;87589:25;:38::i;:::-;87547:80;87540:87;;87421:214;;;:::o;87170:144::-;29660:13;:11;:13::i;:::-;87264:42:::1;87283:8;87293:12;87264:18;:42::i;:::-;87170:144:::0;;:::o;50545:100::-;50599:13;50632:5;50625:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50545:100;:::o;57036:218::-;57112:7;57137:16;57145:7;57137;:16::i;:::-;57132:64;;57162:34;;;;;;;;;;;;;;57132:64;57216:15;:24;57232:7;57216:24;;;;;;;;;;;:30;;;;;;;;;;;;57209:37;;57036:218;;;:::o;87827:165::-;87931:8;26075:30;26096:8;26075:20;:30::i;:::-;87952:32:::1;87966:8;87976:7;87952:13;:32::i;:::-;87827:165:::0;;;:::o;83188:42::-;83229:1;83188:42;:::o;83110:30::-;;;;:::o;87063:99::-;29660:13;:11;:13::i;:::-;87126:4:::1;87113:10;;:17;;;;;;;;;;;;;;;;;;87150:4;87141:6;;:13;;;;;;;;;;;;;;;;;;87063:99::o:0;46296:323::-;46357:7;46585:15;:13;:15::i;:::-;46570:12;;46554:13;;:28;:46;46547:53;;46296:323;:::o;88000:171::-;88109:4;25809:10;25801:18;;:4;:18;;;25797:83;;25836:32;25857:10;25836:20;:32::i;:::-;25797:83;88126:37:::1;88145:4;88151:2;88155:7;88126:18;:37::i;:::-;88000:171:::0;;;;:::o;4500:442::-;4597:7;4606;4626:26;4655:17;:27;4673:8;4655:27;;;;;;;;;;;4626:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4727:1;4699:30;;:7;:16;;;:30;;;4695:92;;4756:19;4746:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4695:92;4799:21;4864:17;:15;:17::i;:::-;4823:58;;4837:7;:23;;;4824:36;;:10;:36;;;;:::i;:::-;4823:58;;;;:::i;:::-;4799:82;;4902:7;:16;;;4920:13;4894:40;;;;;;4500:442;;;;;:::o;83062:41::-;83099:4;83062:41;:::o;83466:30::-;;;;;;;;;;;;;:::o;85762:216::-;29660:13;:11;:13::i;:::-;85810:15:::1;85852:5;85828:21;:29;;;;:::i;:::-;85810:47;;83011:42;85868:29;;:45;85908:4;85898:7;:14;;;;:::i;:::-;85868:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;82923:42;85924:30;;:46;85965:4;85955:7;:14;;;;:::i;:::-;85924:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;85799:179;85762:216::o:0;83743:801::-;83835:6;;;;;;;;;;;83827:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;83229:1;83914:6;83883:16;:28;83900:10;83883:28;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:55;;83875:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;83099:4;84001:6;83984:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;83976:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;84074:8;;84064:6;84053:8;;:17;;;;:::i;:::-;:29;;84045:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;84154:1;84122:16;:28;84139:10;84122:28;;;;;;;;;;;;;;;;:33;84118:229;;84204:9;84198:1;84189:6;:10;;;;:::i;:::-;83269:11;84180:20;;;;:::i;:::-;:33;;84172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;84118:229;;;84299:9;84289:6;83269:11;84281:14;;;;:::i;:::-;:27;;84273:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;84118:229;84367:33;84381:10;84393:6;;84367:13;:33::i;:::-;84359:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;84445:6;84433:8;;:18;;;;;;;:::i;:::-;;;;;;;;84494:6;84462:16;:28;84479:10;84462:28;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;84511:25;84517:10;84529:6;84511:5;:25::i;:::-;83743:801;;;:::o;24293:143::-;16709:42;24293:143;:::o;88179:179::-;88292:4;25809:10;25801:18;;:4;:18;;;25797:83;;25836:32;25857:10;25836:20;:32::i;:::-;25797:83;88309:41:::1;88332:4;88338:2;88342:7;88309:22;:41::i;:::-;88179:179:::0;;;;:::o;85350:187::-;29660:13;:11;:13::i;:::-;83099:4:::1;85464:6;85447:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;85439:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;85508:21;85514:6;85522;85508:5;:21::i;:::-;85350:187:::0;;:::o;83147:34::-;;;;:::o;51938:152::-;52010:7;52053:27;52072:7;52053:18;:27::i;:::-;52030:52;;51938:152;;;:::o;47480:233::-;47552:7;47593:1;47576:19;;:5;:19;;;47572:60;;47604:28;;;;;;;;;;;;;;47572:60;41639:13;47650:18;:25;47669:5;47650:25;;;;;;;;;;;;;;;;:55;47643:62;;47480:233;;;:::o;30422:103::-;29660:13;:11;:13::i;:::-;30487:30:::1;30514:1;30487:18;:30::i;:::-;30422:103::o:0;86967:88::-;29660:13;:11;:13::i;:::-;87040:7:::1;87031:6;;:16;;;;;;;;;;;;;;;;;;86967:88:::0;:::o;86152:106::-;29660:13;:11;:13::i;:::-;86239:11:::1;86226:10;:24;;;;86152:106:::0;:::o;83237:43::-;83269:11;83237:43;:::o;29774:87::-;29820:7;29847:6;;;;;;;;;;;29840:13;;29774:87;:::o;50721:104::-;50777:13;50810:7;50803:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50721:104;:::o;83503:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;84552:790::-;84616:10;;;;;;;;;;;84608:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;83229:1;84703:6;84672:16;:28;84689:10;84672:28;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:55;;84664:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;83099:4;84790:6;84773:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;84765:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;84867:12;;84857:6;84842:12;;:21;;;;:::i;:::-;:37;;84834:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;84939:9;84925:23;;:10;:23;;;84917:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;85022:1;84990:16;:28;85007:10;84990:28;;;;;;;;;;;;;;;;:33;84986:229;;85072:9;85066:1;85057:6;:10;;;;:::i;:::-;83269:11;85048:20;;;;:::i;:::-;:33;;85040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;84986:229;;;85167:9;85157:6;83269:11;85149:14;;;;:::i;:::-;:27;;85141:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;84986:229;85243:6;85227:12;;:22;;;;;;;:::i;:::-;;;;;;;;85292:6;85260:16;:28;85277:10;85260:28;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;85309:25;85315:10;85327:6;85309:5;:25::i;:::-;84552:790;:::o;86751:96::-;29660:13;:11;:13::i;:::-;86833:6:::1;86823:7;:16;;;;;;:::i;:::-;;86751:96:::0;:::o;87643:176::-;87747:8;26075:30;26096:8;26075:20;:30::i;:::-;87768:43:::1;87792:8;87802;87768:23;:43::i;:::-;87643:176:::0;;;:::o;87322:91::-;29660:13;:11;:13::i;:::-;87382:23:::1;:21;:23::i;:::-;87322:91::o:0;88366:204::-;88498:4;25809:10;25801:18;;:4;:18;;;25797:83;;25836:32;25857:10;25836:20;:32::i;:::-;25797:83;88515:47:::1;88538:4;88544:2;88548:7;88557:4;88515:22;:47::i;:::-;88366:204:::0;;;;;:::o;86855:104::-;29660:13;:11;:13::i;:::-;86940:11:::1;86927:10;;:24;;;;;;;;;;;;;;;;;;86855:104:::0;:::o;50931:318::-;51004:13;51035:16;51043:7;51035;:16::i;:::-;51030:59;;51060:29;;;;;;;;;;;;;;51030:59;51102:21;51126:10;:8;:10::i;:::-;51102:34;;51179:1;51160:7;51154:21;:26;:87;;;;;;;;;;;;;;;;;51207:7;51216:18;51226:7;51216:9;:18::i;:::-;51190:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51154:87;51147:94;;;50931:318;;;:::o;83433:26::-;;;;;;;;;;;;;:::o;57985:164::-;58082:4;58106:18;:25;58125:5;58106:25;;;;;;;;;;;;;;;:35;58132:8;58106:35;;;;;;;;;;;;;;;;;;;;;;;;;58099:42;;57985:164;;;;:::o;30680:201::-;29660:13;:11;:13::i;:::-;30789:1:::1;30769:22;;:8;:22;;::::0;30761:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30845:28;30864:8;30845:18;:28::i;:::-;30680:201:::0;:::o;85986:158::-;29660:13;:11;:13::i;:::-;86088:9:::1;86077:8;:20;;;;86123:13;86108:12;:28;;;;85986:158:::0;;:::o;49643:639::-;49728:4;50067:10;50052:25;;:11;:25;;;;:102;;;;50144:10;50129:25;;:11;:25;;;;50052:102;:179;;;;50221:10;50206:25;;:11;:25;;;;50052:179;50032:199;;49643:639;;;:::o;4230:215::-;4332:4;4371:26;4356:41;;;:11;:41;;;;:81;;;;4401:36;4425:11;4401:23;:36::i;:::-;4356:81;4349:88;;4230:215;;;:::o;29939:132::-;30014:12;:10;:12::i;:::-;30003:23;;:7;:5;:7::i;:::-;:23;;;29995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29939:132::o;5592:332::-;5711:17;:15;:17::i;:::-;5695:33;;:12;:33;;;;5687:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;5814:1;5794:22;;:8;:22;;;5786:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5881:35;;;;;;;;5893:8;5881:35;;;;;;5903:12;5881:35;;;;;5859:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5592:332;;:::o;58407:282::-;58472:4;58528:7;58509:15;:13;:15::i;:::-;:26;;:66;;;;;58562:13;;58552:7;:23;58509:66;:153;;;;;58661:1;42415:8;58613:17;:26;58631:7;58613:26;;;;;;;;;;;;:44;:49;58509:153;58489:173;;58407:282;;;:::o;26218:647::-;26457:1;16709:42;26409:45;;;:49;26405:453;;;16709:42;26708;;;26759:4;26766:8;26708:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26703:144;;26822:8;26803:28;;;;;;;;;;;:::i;:::-;;;;;;;;26703:144;26405:453;26218:647;:::o;56469:408::-;56558:13;56574:16;56582:7;56574;:16::i;:::-;56558:32;;56630:5;56607:28;;:19;:17;:19::i;:::-;:28;;;56603:175;;56655:44;56672:5;56679:19;:17;:19::i;:::-;56655:16;:44::i;:::-;56650:128;;56727:35;;;;;;;;;;;;;;56650:128;56603:175;56823:2;56790:15;:24;56806:7;56790:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56861:7;56857:2;56841:28;;56850:5;56841:28;;;;;;;;;;;;56547:330;56469:408;;:::o;85545:101::-;85610:7;85637:1;85630:8;;85545:101;:::o;60675:2825::-;60817:27;60847;60866:7;60847:18;:27::i;:::-;60817:57;;60932:4;60891:45;;60907:19;60891:45;;;60887:86;;60945:28;;;;;;;;;;;;;;60887:86;60987:27;61016:23;61043:35;61070:7;61043:26;:35::i;:::-;60986:92;;;;61178:68;61203:15;61220:4;61226:19;:17;:19::i;:::-;61178:24;:68::i;:::-;61173:180;;61266:43;61283:4;61289:19;:17;:19::i;:::-;61266:16;:43::i;:::-;61261:92;;61318:35;;;;;;;;;;;;;;61261:92;61173:180;61384:1;61370:16;;:2;:16;;;61366:52;;61395:23;;;;;;;;;;;;;;61366:52;61431:43;61453:4;61459:2;61463:7;61472:1;61431:21;:43::i;:::-;61567:15;61564:160;;;61707:1;61686:19;61679:30;61564:160;62104:18;:24;62123:4;62104:24;;;;;;;;;;;;;;;;62102:26;;;;;;;;;;;;62173:18;:22;62192:2;62173:22;;;;;;;;;;;;;;;;62171:24;;;;;;;;;;;62495:146;62532:2;62581:45;62596:4;62602:2;62606:19;62581:14;:45::i;:::-;42695:8;62553:73;62495:18;:146::i;:::-;62466:17;:26;62484:7;62466:26;;;;;;;;;;;:175;;;;62812:1;42695:8;62761:19;:47;:52;62757:627;;62834:19;62866:1;62856:7;:11;62834:33;;63023:1;62989:17;:30;63007:11;62989:30;;;;;;;;;;;;:35;62985:384;;63127:13;;63112:11;:28;63108:242;;63307:19;63274:17;:30;63292:11;63274:30;;;;;;;;;;;:52;;;;63108:242;62985:384;62815:569;62757:627;63431:7;63427:2;63412:27;;63421:4;63412:27;;;;;;;;;;;;63450:42;63471:4;63477:2;63481:7;63490:1;63450:20;:42::i;:::-;60806:2694;;;60675:2825;;;:::o;5224:97::-;5282:6;5308:5;5301:12;;5224:97;:::o;46717:296::-;46772:7;46979:15;:13;:15::i;:::-;46963:13;;:31;46956:38;;46717:296;:::o;86266:164::-;86361:4;86385:37;86394:19;86399:13;86394:4;:19::i;:::-;86415:6;;86385:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:8;:37::i;:::-;86378:44;;86266:164;;;;;:::o;68056:2966::-;68129:20;68152:13;;68129:36;;68192:1;68180:8;:13;68176:44;;68202:18;;;;;;;;;;;;;;68176:44;68233:61;68263:1;68267:2;68271:12;68285:8;68233:21;:61::i;:::-;68777:1;41777:2;68747:1;:26;;68746:32;68734:8;:45;68708:18;:22;68727:2;68708:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;69056:139;69093:2;69147:33;69170:1;69174:2;69178:1;69147:14;:33::i;:::-;69114:30;69135:8;69114:20;:30::i;:::-;:66;69056:18;:139::i;:::-;69022:17;:31;69040:12;69022:31;;;;;;;;;;;:173;;;;69212:16;69243:11;69272:8;69257:12;:23;69243:37;;69793:16;69789:2;69785:25;69773:37;;70165:12;70125:8;70084:1;70022:25;69963:1;69902;69875:335;70536:1;70522:12;70518:20;70476:346;70577:3;70568:7;70565:16;70476:346;;70795:7;70785:8;70782:1;70755:25;70752:1;70749;70744:59;70630:1;70621:7;70617:15;70606:26;;70476:346;;;70480:77;70867:1;70855:8;:13;70851:45;;70877:19;;;;;;;;;;;;;;70851:45;70929:3;70913:13;:19;;;;68482:2462;;70954:60;70983:1;70987:2;70991:12;71005:8;70954:20;:60::i;:::-;68118:2904;68056:2966;;:::o;63596:193::-;63742:39;63759:4;63765:2;63769:7;63742:39;;;;;;;;;;;;:16;:39::i;:::-;63596:193;;;:::o;53093:1275::-;53160:7;53180:12;53195:7;53180:22;;53263:4;53244:15;:13;:15::i;:::-;:23;53240:1061;;53297:13;;53290:4;:20;53286:1015;;;53335:14;53352:17;:23;53370:4;53352:23;;;;;;;;;;;;53335:40;;53469:1;42415:8;53441:6;:24;:29;53437:845;;54106:113;54123:1;54113:6;:11;54106:113;;54166:17;:25;54184:6;;;;;;;54166:25;;;;;;;;;;;;54157:34;;54106:113;;;54252:6;54245:13;;;;;;53437:845;53312:989;53286:1015;53240:1061;54329:31;;;;;;;;;;;;;;53093:1275;;;;:::o;31041:191::-;31115:16;31134:6;;;;;;;;;;;31115:25;;31160:8;31151:6;;:17;;;;;;;;;;;;;;;;;;31215:8;31184:40;;31205:8;31184:40;;;;;;;;;;;;31104:128;31041:191;:::o;57594:234::-;57741:8;57689:18;:39;57708:19;:17;:19::i;:::-;57689:39;;;;;;;;;;;;;;;:49;57729:8;57689:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;57801:8;57765:55;;57780:19;:17;:19::i;:::-;57765:55;;;57811:8;57765:55;;;;;;:::i;:::-;;;;;;;;57594:234;;:::o;6000:95::-;6068:19;;6061:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000:95::o;64387:407::-;64562:31;64575:4;64581:2;64585:7;64562:12;:31::i;:::-;64626:1;64608:2;:14;;;:19;64604:183;;64647:56;64678:4;64684:2;64688:7;64697:5;64647:30;:56::i;:::-;64642:145;;64731:40;;;;;;;;;;;;;;64642:145;64604:183;64387:407;;;;:::o;85654:100::-;85706:13;85739:7;85732:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85654:100;:::o;80922:1745::-;80987:17;81421:4;81414;81408:11;81404:22;81513:1;81507:4;81500:15;81588:4;81585:1;81581:12;81574:19;;81670:1;81665:3;81658:14;81774:3;82013:5;81995:428;82021:1;81995:428;;;82061:1;82056:3;82052:11;82045:18;;82232:2;82226:4;82222:13;82218:2;82214:22;82209:3;82201:36;82326:2;82320:4;82316:13;82308:21;;82393:4;81995:428;82383:25;81995:428;81999:21;82462:3;82457;82453:13;82577:4;82572:3;82568:14;82561:21;;82642:6;82637:3;82630:19;81026:1634;;;80922:1745;;;:::o;1782:157::-;1867:4;1906:25;1891:40;;;:11;:40;;;;1884:47;;1782:157;;;:::o;28325:98::-;28378:7;28405:10;28398:17;;28325:98;:::o;80715:105::-;80775:7;80802:10;80795:17;;80715:105;:::o;59570:485::-;59672:27;59701:23;59742:38;59783:15;:24;59799:7;59783:24;;;;;;;;;;;59742:65;;59960:18;59937:41;;60017:19;60011:26;59992:45;;59922:126;59570:485;;;:::o;58798:659::-;58947:11;59112:16;59105:5;59101:28;59092:37;;59272:16;59261:9;59257:32;59244:45;;59422:15;59411:9;59408:30;59400:5;59389:9;59386:20;59383:56;59373:66;;58798:659;;;;;:::o;65456:159::-;;;;;:::o;80024:311::-;80159:7;80179:16;42819:3;80205:19;:41;;80179:68;;42819:3;80273:31;80284:4;80290:2;80294:9;80273:10;:31::i;:::-;80265:40;;:62;;80258:69;;;80024:311;;;;;:::o;54916:450::-;54996:14;55164:16;55157:5;55153:28;55144:37;;55341:5;55327:11;55302:23;55298:41;55295:52;55288:5;55285:63;55275:73;;54916:450;;;;:::o;66280:158::-;;;;;:::o;86607:136::-;86666:7;86720:13;86703:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;86693:42;;;;;;86686:49;;86607:136;;;:::o;86438:157::-;86518:4;86542:45;86561:6;86569:10;;86581:5;86542:18;:45::i;:::-;86535:52;;86438:157;;;;:::o;55468:324::-;55538:14;55771:1;55761:8;55758:15;55732:24;55728:46;55718:56;;55468:324;;;:::o;66878:716::-;67041:4;67087:2;67062:45;;;67108:19;:17;:19::i;:::-;67129:4;67135:7;67144:5;67062:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67058:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67362:1;67345:6;:13;:18;67341:235;;67391:40;;;;;;;;;;;;;;67341:235;67534:6;67528:13;67519:6;67515:2;67511:15;67504:38;67058:529;67231:54;;;67221:64;;;:6;:64;;;;67214:71;;;66878:716;;;;;;:::o;79725:147::-;79862:6;79725:147;;;;;:::o;8219:190::-;8344:4;8397;8368:25;8381:5;8388:4;8368:12;:25::i;:::-;:33;8361:40;;8219:190;;;;;:::o;9086:296::-;9169:7;9189:20;9212:4;9189:27;;9232:9;9227:118;9251:5;:12;9247:1;:16;9227:118;;;9300:33;9310:12;9324:5;9330:1;9324:8;;;;;;;;:::i;:::-;;;;;;;;9300:9;:33::i;:::-;9285:48;;9265:3;;;;;:::i;:::-;;;;9227:118;;;;9362:12;9355:19;;;9086:296;;;;:::o;16126:149::-;16189:7;16220:1;16216;:5;:51;;16247:20;16262:1;16265;16247:14;:20::i;:::-;16216:51;;;16224:20;16239:1;16242;16224:14;:20::i;:::-;16216:51;16209:58;;16126:149;;;;:::o;16283:268::-;16351:13;16458:1;16452:4;16445:15;16487:1;16481:4;16474:15;16528:4;16522;16512:21;16503:30;;16283:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:246::-;3248:1;3258:113;3272:6;3269:1;3266:13;3258:113;;;3357:1;3352:3;3348:11;3342:18;3338:1;3333:3;3329:11;3322:39;3294:2;3291:1;3287:10;3282:15;;3258:113;;;3405:1;3396:6;3391:3;3387:16;3380:27;3229:184;3167:246;;;:::o;3419:102::-;3460:6;3511:2;3507:7;3502:2;3495:5;3491:14;3487:28;3477:38;;3419:102;;;:::o;3527:377::-;3615:3;3643:39;3676:5;3643:39;:::i;:::-;3698:71;3762:6;3757:3;3698:71;:::i;:::-;3691:78;;3778:65;3836:6;3831:3;3824:4;3817:5;3813:16;3778:65;:::i;:::-;3868:29;3890:6;3868:29;:::i;:::-;3863:3;3859:39;3852:46;;3619:285;3527:377;;;;:::o;3910:313::-;4023:4;4061:2;4050:9;4046:18;4038:26;;4110:9;4104:4;4100:20;4096:1;4085:9;4081:17;4074:47;4138:78;4211:4;4202:6;4138:78;:::i;:::-;4130:86;;3910:313;;;;:::o;4229:77::-;4266:7;4295:5;4284:16;;4229:77;;;:::o;4312:122::-;4385:24;4403:5;4385:24;:::i;:::-;4378:5;4375:35;4365:63;;4424:1;4421;4414:12;4365:63;4312:122;:::o;4440:139::-;4486:5;4524:6;4511:20;4502:29;;4540:33;4567:5;4540:33;:::i;:::-;4440:139;;;;:::o;4585:329::-;4644:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:119;;;4699:79;;:::i;:::-;4661:119;4819:1;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4790:117;4585:329;;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:222::-;5137:4;5175:2;5164:9;5160:18;5152:26;;5188:71;5256:1;5245:9;5241:17;5232:6;5188:71;:::i;:::-;5044:222;;;;:::o;5272:474::-;5340:6;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5650:2;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5621:118;5272:474;;;;;:::o;5752:118::-;5839:24;5857:5;5839:24;:::i;:::-;5834:3;5827:37;5752:118;;:::o;5876:222::-;5969:4;6007:2;5996:9;5992:18;5984:26;;6020:71;6088:1;6077:9;6073:17;6064:6;6020:71;:::i;:::-;5876:222;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:117::-;7656:1;7653;7646:12;7670:117;7779:1;7776;7769:12;7793:117;7902:1;7899;7892:12;7933:568;8006:8;8016:6;8066:3;8059:4;8051:6;8047:17;8043:27;8033:122;;8074:79;;:::i;:::-;8033:122;8187:6;8174:20;8164:30;;8217:18;8209:6;8206:30;8203:117;;;8239:79;;:::i;:::-;8203:117;8353:4;8345:6;8341:17;8329:29;;8407:3;8399:4;8391:6;8387:17;8377:8;8373:32;8370:41;8367:128;;;8414:79;;:::i;:::-;8367:128;7933:568;;;;;:::o;8507:704::-;8602:6;8610;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8948:2;8937:9;8933:18;8920:32;8979:18;8971:6;8968:30;8965:117;;;9001:79;;:::i;:::-;8965:117;9114:80;9186:7;9177:6;9166:9;9162:22;9114:80;:::i;:::-;9096:98;;;;8891:313;8507:704;;;;;:::o;9217:60::-;9245:3;9266:5;9259:12;;9217:60;;;:::o;9283:142::-;9333:9;9366:53;9384:34;9393:24;9411:5;9393:24;:::i;:::-;9384:34;:::i;:::-;9366:53;:::i;:::-;9353:66;;9283:142;;;:::o;9431:126::-;9481:9;9514:37;9545:5;9514:37;:::i;:::-;9501:50;;9431:126;;;:::o;9563:157::-;9644:9;9677:37;9708:5;9677:37;:::i;:::-;9664:50;;9563:157;;;:::o;9726:193::-;9844:68;9906:5;9844:68;:::i;:::-;9839:3;9832:81;9726:193;;:::o;9925:284::-;10049:4;10087:2;10076:9;10072:18;10064:26;;10100:102;10199:1;10188:9;10184:17;10175:6;10100:102;:::i;:::-;9925:284;;;;:::o;10215:329::-;10274:6;10323:2;10311:9;10302:7;10298:23;10294:32;10291:119;;;10329:79;;:::i;:::-;10291:119;10449:1;10474:53;10519:7;10510:6;10499:9;10495:22;10474:53;:::i;:::-;10464:63;;10420:117;10215:329;;;;:::o;10550:116::-;10620:21;10635:5;10620:21;:::i;:::-;10613:5;10610:32;10600:60;;10656:1;10653;10646:12;10600:60;10550:116;:::o;10672:133::-;10715:5;10753:6;10740:20;10731:29;;10769:30;10793:5;10769:30;:::i;:::-;10672:133;;;;:::o;10811:323::-;10867:6;10916:2;10904:9;10895:7;10891:23;10887:32;10884:119;;;10922:79;;:::i;:::-;10884:119;11042:1;11067:50;11109:7;11100:6;11089:9;11085:22;11067:50;:::i;:::-;11057:60;;11013:114;10811:323;;;;:::o;11140:77::-;11177:7;11206:5;11195:16;;11140:77;;;:::o;11223:122::-;11296:24;11314:5;11296:24;:::i;:::-;11289:5;11286:35;11276:63;;11335:1;11332;11325:12;11276:63;11223:122;:::o;11351:139::-;11397:5;11435:6;11422:20;11413:29;;11451:33;11478:5;11451:33;:::i;:::-;11351:139;;;;:::o;11496:329::-;11555:6;11604:2;11592:9;11583:7;11579:23;11575:32;11572:119;;;11610:79;;:::i;:::-;11572:119;11730:1;11755:53;11800:7;11791:6;11780:9;11776:22;11755:53;:::i;:::-;11745:63;;11701:117;11496:329;;;;:::o;11831:117::-;11940:1;11937;11930:12;11954:180;12002:77;11999:1;11992:88;12099:4;12096:1;12089:15;12123:4;12120:1;12113:15;12140:281;12223:27;12245:4;12223:27;:::i;:::-;12215:6;12211:40;12353:6;12341:10;12338:22;12317:18;12305:10;12302:34;12299:62;12296:88;;;12364:18;;:::i;:::-;12296:88;12404:10;12400:2;12393:22;12183:238;12140:281;;:::o;12427:129::-;12461:6;12488:20;;:::i;:::-;12478:30;;12517:33;12545:4;12537:6;12517:33;:::i;:::-;12427:129;;;:::o;12562:308::-;12624:4;12714:18;12706:6;12703:30;12700:56;;;12736:18;;:::i;:::-;12700:56;12774:29;12796:6;12774:29;:::i;:::-;12766:37;;12858:4;12852;12848:15;12840:23;;12562:308;;;:::o;12876:146::-;12973:6;12968:3;12963;12950:30;13014:1;13005:6;13000:3;12996:16;12989:27;12876:146;;;:::o;13028:425::-;13106:5;13131:66;13147:49;13189:6;13147:49;:::i;:::-;13131:66;:::i;:::-;13122:75;;13220:6;13213:5;13206:21;13258:4;13251:5;13247:16;13296:3;13287:6;13282:3;13278:16;13275:25;13272:112;;;13303:79;;:::i;:::-;13272:112;13393:54;13440:6;13435:3;13430;13393:54;:::i;:::-;13112:341;13028:425;;;;;:::o;13473:340::-;13529:5;13578:3;13571:4;13563:6;13559:17;13555:27;13545:122;;13586:79;;:::i;:::-;13545:122;13703:6;13690:20;13728:79;13803:3;13795:6;13788:4;13780:6;13776:17;13728:79;:::i;:::-;13719:88;;13535:278;13473:340;;;;:::o;13819:509::-;13888:6;13937:2;13925:9;13916:7;13912:23;13908:32;13905:119;;;13943:79;;:::i;:::-;13905:119;14091:1;14080:9;14076:17;14063:31;14121:18;14113:6;14110:30;14107:117;;;14143:79;;:::i;:::-;14107:117;14248:63;14303:7;14294:6;14283:9;14279:22;14248:63;:::i;:::-;14238:73;;14034:287;13819:509;;;;:::o;14334:468::-;14399:6;14407;14456:2;14444:9;14435:7;14431:23;14427:32;14424:119;;;14462:79;;:::i;:::-;14424:119;14582:1;14607:53;14652:7;14643:6;14632:9;14628:22;14607:53;:::i;:::-;14597:63;;14553:117;14709:2;14735:50;14777:7;14768:6;14757:9;14753:22;14735:50;:::i;:::-;14725:60;;14680:115;14334:468;;;;;:::o;14808:307::-;14869:4;14959:18;14951:6;14948:30;14945:56;;;14981:18;;:::i;:::-;14945:56;15019:29;15041:6;15019:29;:::i;:::-;15011:37;;15103:4;15097;15093:15;15085:23;;14808:307;;;:::o;15121:423::-;15198:5;15223:65;15239:48;15280:6;15239:48;:::i;:::-;15223:65;:::i;:::-;15214:74;;15311:6;15304:5;15297:21;15349:4;15342:5;15338:16;15387:3;15378:6;15373:3;15369:16;15366:25;15363:112;;;15394:79;;:::i;:::-;15363:112;15484:54;15531:6;15526:3;15521;15484:54;:::i;:::-;15204:340;15121:423;;;;;:::o;15563:338::-;15618:5;15667:3;15660:4;15652:6;15648:17;15644:27;15634:122;;15675:79;;:::i;:::-;15634:122;15792:6;15779:20;15817:78;15891:3;15883:6;15876:4;15868:6;15864:17;15817:78;:::i;:::-;15808:87;;15624:277;15563:338;;;;:::o;15907:943::-;16002:6;16010;16018;16026;16075:3;16063:9;16054:7;16050:23;16046:33;16043:120;;;16082:79;;:::i;:::-;16043:120;16202:1;16227:53;16272:7;16263:6;16252:9;16248:22;16227:53;:::i;:::-;16217:63;;16173:117;16329:2;16355:53;16400:7;16391:6;16380:9;16376:22;16355:53;:::i;:::-;16345:63;;16300:118;16457:2;16483:53;16528:7;16519:6;16508:9;16504:22;16483:53;:::i;:::-;16473:63;;16428:118;16613:2;16602:9;16598:18;16585:32;16644:18;16636:6;16633:30;16630:117;;;16666:79;;:::i;:::-;16630:117;16771:62;16825:7;16816:6;16805:9;16801:22;16771:62;:::i;:::-;16761:72;;16556:287;15907:943;;;;;;;:::o;16856:474::-;16924:6;16932;16981:2;16969:9;16960:7;16956:23;16952:32;16949:119;;;16987:79;;:::i;:::-;16949:119;17107:1;17132:53;17177:7;17168:6;17157:9;17153:22;17132:53;:::i;:::-;17122:63;;17078:117;17234:2;17260:53;17305:7;17296:6;17285:9;17281:22;17260:53;:::i;:::-;17250:63;;17205:118;16856:474;;;;;:::o;17336:180::-;17384:77;17381:1;17374:88;17481:4;17478:1;17471:15;17505:4;17502:1;17495:15;17522:320;17566:6;17603:1;17597:4;17593:12;17583:22;;17650:1;17644:4;17640:12;17671:18;17661:81;;17727:4;17719:6;17715:17;17705:27;;17661:81;17789:2;17781:6;17778:14;17758:18;17755:38;17752:84;;17808:18;;:::i;:::-;17752:84;17573:269;17522:320;;;:::o;17848:180::-;17896:77;17893:1;17886:88;17993:4;17990:1;17983:15;18017:4;18014:1;18007:15;18034:410;18074:7;18097:20;18115:1;18097:20;:::i;:::-;18092:25;;18131:20;18149:1;18131:20;:::i;:::-;18126:25;;18186:1;18183;18179:9;18208:30;18226:11;18208:30;:::i;:::-;18197:41;;18387:1;18378:7;18374:15;18371:1;18368:22;18348:1;18341:9;18321:83;18298:139;;18417:18;;:::i;:::-;18298:139;18082:362;18034:410;;;;:::o;18450:180::-;18498:77;18495:1;18488:88;18595:4;18592:1;18585:15;18619:4;18616:1;18609:15;18636:185;18676:1;18693:20;18711:1;18693:20;:::i;:::-;18688:25;;18727:20;18745:1;18727:20;:::i;:::-;18722:25;;18766:1;18756:35;;18771:18;;:::i;:::-;18756:35;18813:1;18810;18806:9;18801:14;;18636:185;;;;:::o;18827:168::-;18967:20;18963:1;18955:6;18951:14;18944:44;18827:168;:::o;19001:366::-;19143:3;19164:67;19228:2;19223:3;19164:67;:::i;:::-;19157:74;;19240:93;19329:3;19240:93;:::i;:::-;19358:2;19353:3;19349:12;19342:19;;19001:366;;;:::o;19373:419::-;19539:4;19577:2;19566:9;19562:18;19554:26;;19626:9;19620:4;19616:20;19612:1;19601:9;19597:17;19590:47;19654:131;19780:4;19654:131;:::i;:::-;19646:139;;19373:419;;;:::o;19798:191::-;19838:3;19857:20;19875:1;19857:20;:::i;:::-;19852:25;;19891:20;19909:1;19891:20;:::i;:::-;19886:25;;19934:1;19931;19927:9;19920:16;;19955:3;19952:1;19949:10;19946:36;;;19962:18;;:::i;:::-;19946:36;19798:191;;;;:::o;19995:172::-;20135:24;20131:1;20123:6;20119:14;20112:48;19995:172;:::o;20173:366::-;20315:3;20336:67;20400:2;20395:3;20336:67;:::i;:::-;20329:74;;20412:93;20501:3;20412:93;:::i;:::-;20530:2;20525:3;20521:12;20514:19;;20173:366;;;:::o;20545:419::-;20711:4;20749:2;20738:9;20734:18;20726:26;;20798:9;20792:4;20788:20;20784:1;20773:9;20769:17;20762:47;20826:131;20952:4;20826:131;:::i;:::-;20818:139;;20545:419;;;:::o;20970:158::-;21110:10;21106:1;21098:6;21094:14;21087:34;20970:158;:::o;21134:365::-;21276:3;21297:66;21361:1;21356:3;21297:66;:::i;:::-;21290:73;;21372:93;21461:3;21372:93;:::i;:::-;21490:2;21485:3;21481:12;21474:19;;21134:365;;;:::o;21505:419::-;21671:4;21709:2;21698:9;21694:18;21686:26;;21758:9;21752:4;21748:20;21744:1;21733:9;21729:17;21722:47;21786:131;21912:4;21786:131;:::i;:::-;21778:139;;21505:419;;;:::o;21930:168::-;22070:20;22066:1;22058:6;22054:14;22047:44;21930:168;:::o;22104:366::-;22246:3;22267:67;22331:2;22326:3;22267:67;:::i;:::-;22260:74;;22343:93;22432:3;22343:93;:::i;:::-;22461:2;22456:3;22452:12;22445:19;;22104:366;;;:::o;22476:419::-;22642:4;22680:2;22669:9;22665:18;22657:26;;22729:9;22723:4;22719:20;22715:1;22704:9;22700:17;22693:47;22757:131;22883:4;22757:131;:::i;:::-;22749:139;;22476:419;;;:::o;22901:194::-;22941:4;22961:20;22979:1;22961:20;:::i;:::-;22956:25;;22995:20;23013:1;22995:20;:::i;:::-;22990:25;;23039:1;23036;23032:9;23024:17;;23063:1;23057:4;23054:11;23051:37;;;23068:18;;:::i;:::-;23051:37;22901:194;;;;:::o;23101:173::-;23241:25;23237:1;23229:6;23225:14;23218:49;23101:173;:::o;23280:366::-;23422:3;23443:67;23507:2;23502:3;23443:67;:::i;:::-;23436:74;;23519:93;23608:3;23519:93;:::i;:::-;23637:2;23632:3;23628:12;23621:19;;23280:366;;;:::o;23652:419::-;23818:4;23856:2;23845:9;23841:18;23833:26;;23905:9;23899:4;23895:20;23891:1;23880:9;23876:17;23869:47;23933:131;24059:4;23933:131;:::i;:::-;23925:139;;23652:419;;;:::o;24077:165::-;24217:17;24213:1;24205:6;24201:14;24194:41;24077:165;:::o;24248:366::-;24390:3;24411:67;24475:2;24470:3;24411:67;:::i;:::-;24404:74;;24487:93;24576:3;24487:93;:::i;:::-;24605:2;24600:3;24596:12;24589:19;;24248:366;;;:::o;24620:419::-;24786:4;24824:2;24813:9;24809:18;24801:26;;24873:9;24867:4;24863:20;24859:1;24848:9;24844:17;24837:47;24901:131;25027:4;24901:131;:::i;:::-;24893:139;;24620:419;;;:::o;25045:172::-;25185:24;25181:1;25173:6;25169:14;25162:48;25045:172;:::o;25223:366::-;25365:3;25386:67;25450:2;25445:3;25386:67;:::i;:::-;25379:74;;25462:93;25551:3;25462:93;:::i;:::-;25580:2;25575:3;25571:12;25564:19;;25223:366;;;:::o;25595:419::-;25761:4;25799:2;25788:9;25784:18;25776:26;;25848:9;25842:4;25838:20;25834:1;25823:9;25819:17;25812:47;25876:131;26002:4;25876:131;:::i;:::-;25868:139;;25595:419;;;:::o;26020:172::-;26160:24;26156:1;26148:6;26144:14;26137:48;26020:172;:::o;26198:366::-;26340:3;26361:67;26425:2;26420:3;26361:67;:::i;:::-;26354:74;;26437:93;26526:3;26437:93;:::i;:::-;26555:2;26550:3;26546:12;26539:19;;26198:366;;;:::o;26570:419::-;26736:4;26774:2;26763:9;26759:18;26751:26;;26823:9;26817:4;26813:20;26809:1;26798:9;26794:17;26787:47;26851:131;26977:4;26851:131;:::i;:::-;26843:139;;26570:419;;;:::o;26995:170::-;27135:22;27131:1;27123:6;27119:14;27112:46;26995:170;:::o;27171:366::-;27313:3;27334:67;27398:2;27393:3;27334:67;:::i;:::-;27327:74;;27410:93;27499:3;27410:93;:::i;:::-;27528:2;27523:3;27519:12;27512:19;;27171:366;;;:::o;27543:419::-;27709:4;27747:2;27736:9;27732:18;27724:26;;27796:9;27790:4;27786:20;27782:1;27771:9;27767:17;27760:47;27824:131;27950:4;27824:131;:::i;:::-;27816:139;;27543:419;;;:::o;27968:141::-;28017:4;28040:3;28032:11;;28063:3;28060:1;28053:14;28097:4;28094:1;28084:18;28076:26;;27968:141;;;:::o;28115:93::-;28152:6;28199:2;28194;28187:5;28183:14;28179:23;28169:33;;28115:93;;;:::o;28214:107::-;28258:8;28308:5;28302:4;28298:16;28277:37;;28214:107;;;;:::o;28327:393::-;28396:6;28446:1;28434:10;28430:18;28469:97;28499:66;28488:9;28469:97;:::i;:::-;28587:39;28617:8;28606:9;28587:39;:::i;:::-;28575:51;;28659:4;28655:9;28648:5;28644:21;28635:30;;28708:4;28698:8;28694:19;28687:5;28684:30;28674:40;;28403:317;;28327:393;;;;;:::o;28726:142::-;28776:9;28809:53;28827:34;28836:24;28854:5;28836:24;:::i;:::-;28827:34;:::i;:::-;28809:53;:::i;:::-;28796:66;;28726:142;;;:::o;28874:75::-;28917:3;28938:5;28931:12;;28874:75;;;:::o;28955:269::-;29065:39;29096:7;29065:39;:::i;:::-;29126:91;29175:41;29199:16;29175:41;:::i;:::-;29167:6;29160:4;29154:11;29126:91;:::i;:::-;29120:4;29113:105;29031:193;28955:269;;;:::o;29230:73::-;29275:3;29230:73;:::o;29309:189::-;29386:32;;:::i;:::-;29427:65;29485:6;29477;29471:4;29427:65;:::i;:::-;29362:136;29309:189;;:::o;29504:186::-;29564:120;29581:3;29574:5;29571:14;29564:120;;;29635:39;29672:1;29665:5;29635:39;:::i;:::-;29608:1;29601:5;29597:13;29588:22;;29564:120;;;29504:186;;:::o;29696:543::-;29797:2;29792:3;29789:11;29786:446;;;29831:38;29863:5;29831:38;:::i;:::-;29915:29;29933:10;29915:29;:::i;:::-;29905:8;29901:44;30098:2;30086:10;30083:18;30080:49;;;30119:8;30104:23;;30080:49;30142:80;30198:22;30216:3;30198:22;:::i;:::-;30188:8;30184:37;30171:11;30142:80;:::i;:::-;29801:431;;29786:446;29696:543;;;:::o;30245:117::-;30299:8;30349:5;30343:4;30339:16;30318:37;;30245:117;;;;:::o;30368:169::-;30412:6;30445:51;30493:1;30489:6;30481:5;30478:1;30474:13;30445:51;:::i;:::-;30441:56;30526:4;30520;30516:15;30506:25;;30419:118;30368:169;;;;:::o;30542:295::-;30618:4;30764:29;30789:3;30783:4;30764:29;:::i;:::-;30756:37;;30826:3;30823:1;30819:11;30813:4;30810:21;30802:29;;30542:295;;;;:::o;30842:1395::-;30959:37;30992:3;30959:37;:::i;:::-;31061:18;31053:6;31050:30;31047:56;;;31083:18;;:::i;:::-;31047:56;31127:38;31159:4;31153:11;31127:38;:::i;:::-;31212:67;31272:6;31264;31258:4;31212:67;:::i;:::-;31306:1;31330:4;31317:17;;31362:2;31354:6;31351:14;31379:1;31374:618;;;;32036:1;32053:6;32050:77;;;32102:9;32097:3;32093:19;32087:26;32078:35;;32050:77;32153:67;32213:6;32206:5;32153:67;:::i;:::-;32147:4;32140:81;32009:222;31344:887;;31374:618;31426:4;31422:9;31414:6;31410:22;31460:37;31492:4;31460:37;:::i;:::-;31519:1;31533:208;31547:7;31544:1;31541:14;31533:208;;;31626:9;31621:3;31617:19;31611:26;31603:6;31596:42;31677:1;31669:6;31665:14;31655:24;;31724:2;31713:9;31709:18;31696:31;;31570:4;31567:1;31563:12;31558:17;;31533:208;;;31769:6;31760:7;31757:19;31754:179;;;31827:9;31822:3;31818:19;31812:26;31870:48;31912:4;31904:6;31900:17;31889:9;31870:48;:::i;:::-;31862:6;31855:64;31777:156;31754:179;31979:1;31975;31967:6;31963:14;31959:22;31953:4;31946:36;31381:611;;;31344:887;;30934:1303;;;30842:1395;;:::o;32243:148::-;32345:11;32382:3;32367:18;;32243:148;;;;:::o;32397:390::-;32503:3;32531:39;32564:5;32531:39;:::i;:::-;32586:89;32668:6;32663:3;32586:89;:::i;:::-;32579:96;;32684:65;32742:6;32737:3;32730:4;32723:5;32719:16;32684:65;:::i;:::-;32774:6;32769:3;32765:16;32758:23;;32507:280;32397:390;;;;:::o;32793:435::-;32973:3;32995:95;33086:3;33077:6;32995:95;:::i;:::-;32988:102;;33107:95;33198:3;33189:6;33107:95;:::i;:::-;33100:102;;33219:3;33212:10;;32793:435;;;;;:::o;33234:225::-;33374:34;33370:1;33362:6;33358:14;33351:58;33443:8;33438:2;33430:6;33426:15;33419:33;33234:225;:::o;33465:366::-;33607:3;33628:67;33692:2;33687:3;33628:67;:::i;:::-;33621:74;;33704:93;33793:3;33704:93;:::i;:::-;33822:2;33817:3;33813:12;33806:19;;33465:366;;;:::o;33837:419::-;34003:4;34041:2;34030:9;34026:18;34018:26;;34090:9;34084:4;34080:20;34076:1;34065:9;34061:17;34054:47;34118:131;34244:4;34118:131;:::i;:::-;34110:139;;33837:419;;;:::o;34262:182::-;34402:34;34398:1;34390:6;34386:14;34379:58;34262:182;:::o;34450:366::-;34592:3;34613:67;34677:2;34672:3;34613:67;:::i;:::-;34606:74;;34689:93;34778:3;34689:93;:::i;:::-;34807:2;34802:3;34798:12;34791:19;;34450:366;;;:::o;34822:419::-;34988:4;35026:2;35015:9;35011:18;35003:26;;35075:9;35069:4;35065:20;35061:1;35050:9;35046:17;35039:47;35103:131;35229:4;35103:131;:::i;:::-;35095:139;;34822:419;;;:::o;35247:229::-;35387:34;35383:1;35375:6;35371:14;35364:58;35456:12;35451:2;35443:6;35439:15;35432:37;35247:229;:::o;35482:366::-;35624:3;35645:67;35709:2;35704:3;35645:67;:::i;:::-;35638:74;;35721:93;35810:3;35721:93;:::i;:::-;35839:2;35834:3;35830:12;35823:19;;35482:366;;;:::o;35854:419::-;36020:4;36058:2;36047:9;36043:18;36035:26;;36107:9;36101:4;36097:20;36093:1;36082:9;36078:17;36071:47;36135:131;36261:4;36135:131;:::i;:::-;36127:139;;35854:419;;;:::o;36279:175::-;36419:27;36415:1;36407:6;36403:14;36396:51;36279:175;:::o;36460:366::-;36602:3;36623:67;36687:2;36682:3;36623:67;:::i;:::-;36616:74;;36699:93;36788:3;36699:93;:::i;:::-;36817:2;36812:3;36808:12;36801:19;;36460:366;;;:::o;36832:419::-;36998:4;37036:2;37025:9;37021:18;37013:26;;37085:9;37079:4;37075:20;37071:1;37060:9;37056:17;37049:47;37113:131;37239:4;37113:131;:::i;:::-;37105:139;;36832:419;;;:::o;37257:332::-;37378:4;37416:2;37405:9;37401:18;37393:26;;37429:71;37497:1;37486:9;37482:17;37473:6;37429:71;:::i;:::-;37510:72;37578:2;37567:9;37563:18;37554:6;37510:72;:::i;:::-;37257:332;;;;;:::o;37595:137::-;37649:5;37680:6;37674:13;37665:22;;37696:30;37720:5;37696:30;:::i;:::-;37595:137;;;;:::o;37738:345::-;37805:6;37854:2;37842:9;37833:7;37829:23;37825:32;37822:119;;;37860:79;;:::i;:::-;37822:119;37980:1;38005:61;38058:7;38049:6;38038:9;38034:22;38005:61;:::i;:::-;37995:71;;37951:125;37738:345;;;;:::o;38089:94::-;38122:8;38170:5;38166:2;38162:14;38141:35;;38089:94;;;:::o;38189:::-;38228:7;38257:20;38271:5;38257:20;:::i;:::-;38246:31;;38189:94;;;:::o;38289:100::-;38328:7;38357:26;38377:5;38357:26;:::i;:::-;38346:37;;38289:100;;;:::o;38395:157::-;38500:45;38520:24;38538:5;38520:24;:::i;:::-;38500:45;:::i;:::-;38495:3;38488:58;38395:157;;:::o;38558:256::-;38670:3;38685:75;38756:3;38747:6;38685:75;:::i;:::-;38785:2;38780:3;38776:12;38769:19;;38805:3;38798:10;;38558:256;;;;:::o;38820:98::-;38871:6;38905:5;38899:12;38889:22;;38820:98;;;:::o;38924:168::-;39007:11;39041:6;39036:3;39029:19;39081:4;39076:3;39072:14;39057:29;;38924:168;;;;:::o;39098:373::-;39184:3;39212:38;39244:5;39212:38;:::i;:::-;39266:70;39329:6;39324:3;39266:70;:::i;:::-;39259:77;;39345:65;39403:6;39398:3;39391:4;39384:5;39380:16;39345:65;:::i;:::-;39435:29;39457:6;39435:29;:::i;:::-;39430:3;39426:39;39419:46;;39188:283;39098:373;;;;:::o;39477:640::-;39672:4;39710:3;39699:9;39695:19;39687:27;;39724:71;39792:1;39781:9;39777:17;39768:6;39724:71;:::i;:::-;39805:72;39873:2;39862:9;39858:18;39849:6;39805:72;:::i;:::-;39887;39955:2;39944:9;39940:18;39931:6;39887:72;:::i;:::-;40006:9;40000:4;39996:20;39991:2;39980:9;39976:18;39969:48;40034:76;40105:4;40096:6;40034:76;:::i;:::-;40026:84;;39477:640;;;;;;;:::o;40123:141::-;40179:5;40210:6;40204:13;40195:22;;40226:32;40252:5;40226:32;:::i;:::-;40123:141;;;;:::o;40270:349::-;40339:6;40388:2;40376:9;40367:7;40363:23;40359:32;40356:119;;;40394:79;;:::i;:::-;40356:119;40514:1;40539:63;40594:7;40585:6;40574:9;40570:22;40539:63;:::i;:::-;40529:73;;40485:127;40270:349;;;;:::o;40625:180::-;40673:77;40670:1;40663:88;40770:4;40767:1;40760:15;40794:4;40791:1;40784:15;40811:233;40850:3;40873:24;40891:5;40873:24;:::i;:::-;40864:33;;40919:66;40912:5;40909:77;40906:103;;40989:18;;:::i;:::-;40906:103;41036:1;41029:5;41025:13;41018:20;;40811:233;;;:::o

Swarm Source

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