ETH Price: $2,990.00 (+4.50%)
Gas: 3 Gwei

LuckyLeopardCrew (LLC)
 

Overview

TokenID

2488

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
LuckyLeopardCrew

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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

// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // 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) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


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

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/LL.sol


// Dev: https://twitter.com/MatthewPaquette
pragma solidity ^0.8.13;






contract LuckyLeopardCrew is ERC721AQueryable, DefaultOperatorFilterer, Ownable, Pausable {
    uint256 public MAX_MINTS = 10;
    uint256 public MAX_SUPPLY = 4000;
    uint256 public price = 0.025 ether;
    uint256 public wlPrice = 0.025 ether;

    bool public wlActive = false;

    bytes32 public wlRoot;
    
    string public baseURI;

    // Dev info          
    address public dev = 0x1234cdF2D2dC0F3337DBF5128F934f1Ae9286E4c;
    uint256 public devCut = 10;//%

    uint256 public mintCounter = 0;
    uint256 public wlMintCounter = 0;
    uint256 public airDropCounter = 0;

    constructor() ERC721A("LuckyLeopardCrew", "LLC") {
        toggleAllMintPause();
    }

    function checkWL(bytes32[] calldata _proof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(_proof, wlRoot, leaf);
    }

    function mint(uint256 quantity) external payable whenNotPaused {
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "mint: Exceeded the limit per wallet");
        require(totalSupply() + quantity <= MAX_SUPPLY, "mint: Not enough tokens left");
        require(msg.value >= (price * quantity), "mint: Not enough ether sent");

        mintCounter += quantity;
        _safeMint(msg.sender, quantity);
    }

    function mintWhitelist(uint256 quantity, bytes32[] calldata _proof) external payable {
        require(wlActive == true, "mintWhitelist: Whitelist mint is not active");
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "mintWhitelist: Exceeded the limit per wallet");
        require(totalSupply() + quantity <= MAX_SUPPLY, "mintWhitelist: Not enough tokens left");
        require(msg.value >= (wlPrice * quantity), "mintWhitelist: Not enough ether sent");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_proof, wlRoot, leaf), "mintWhitelist: address is not on whitelist");

        wlMintCounter += quantity;
        _safeMint(msg.sender, quantity);
    }

    function airDrop(address[] calldata addrs, uint256 quantity) external onlyOwner {
        uint256 len = addrs.length;
        require(totalSupply() + (quantity * len) <= MAX_SUPPLY, "airDrop: Not enough tokens to airdrop");
        airDropCounter += quantity * len;
        for (uint256 i = 0; i < len; i++) {
            _safeMint(addrs[i], quantity);
        }
    }

    function updateWLRoot(bytes32 _wlRoot) external onlyOwner {
        wlRoot = _wlRoot;
    }
    function updateWLRootDev(bytes32 _wlRoot) external {
        require(msg.sender == dev, "updateWLRootDev: sender is not dev");
        wlRoot = _wlRoot;
    }

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

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

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

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

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

    //ADMIN

    function enableWLMint(bool state) external onlyOwner {
        wlActive = state;
    }

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

    function setWLPrice(uint256 _price) external onlyOwner {
        wlPrice = _price;
    }

    function setMaxMint(uint256 _max) external onlyOwner {
        MAX_MINTS = _max;
    }

    function toggleAllMintPause() public onlyOwner {
        paused() ? _unpause() : _pause();
    }

    function setBaseURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    function updateMaxSupply(uint256 _max) external onlyOwner {
        MAX_SUPPLY = _max;
    }


    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "withdraw: contract balance must be greater than 0"); 
        uint256 balance = address(this).balance;
        uint256 ownerBal = ((balance * (100 - devCut)) / 100);
        uint256 devBal = ((balance * (devCut)) / 100);
        payable(msg.sender).transfer(ownerBal);
        payable(dev).transfer(devBal);
    }

}

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":"InvalidQueryRange","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINTS","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":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airDropCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"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":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"checkWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devCut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"enableWLMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWLPrice","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":[],"name":"toggleAllMintPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_wlRoot","type":"bytes32"}],"name":"updateWLRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_wlRoot","type":"bytes32"}],"name":"updateWLRootDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

6080604052600a600955610fa0600a556658d15e17628000600b556658d15e17628000600c556000600d60006101000a81548160ff021916908315150217905550731234cdf2d2dc0f3337dbf5128f934f1ae9286e4c601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a601155600060125560006013556000601455348015620000b657600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020017f4c75636b794c656f7061726443726577000000000000000000000000000000008152506040518060400160405280600381526020017f4c4c43000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015292919062000756565b5080600390805190602001906200016b92919062000756565b506200017c620003cc60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003795780156200023f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002059291906200084b565b600060405180830381600087803b1580156200022057600080fd5b505af115801562000235573d6000803e3d6000fd5b5050505062000378565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002f9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002bf9291906200084b565b600060405180830381600087803b158015620002da57600080fd5b505af1158015620002ef573d6000803e3d6000fd5b5050505062000377565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000342919062000878565b600060405180830381600087803b1580156200035d57600080fd5b505af115801562000372573d6000803e3d6000fd5b505050505b5b5b50506200039b6200038f620003d560201b60201c565b620003dd60201b60201c565b6000600860146101000a81548160ff021916908315150217905550620003c6620004a360201b60201c565b62000a60565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004b3620004f160201b60201c565b620004c36200058260201b60201c565b620004de57620004d86200059960201b60201c565b620004ef565b620004ee6200060e60201b60201c565b5b565b62000501620003d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005276200068360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000580576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200057790620008f6565b60405180910390fd5b565b6000600860149054906101000a900460ff16905090565b620005a9620006ad60201b60201c565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620005f5620003d560201b60201c565b60405162000604919062000878565b60405180910390a1565b6200061e6200070260201b60201c565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6200066a620003d560201b60201c565b60405162000679919062000878565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006bd6200058260201b60201c565b1562000700576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f79062000968565b60405180910390fd5b565b620007126200058260201b60201c565b62000754576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074b90620009da565b60405180910390fd5b565b828054620007649062000a2b565b90600052602060002090601f016020900481019282620007885760008555620007d4565b82601f10620007a357805160ff1916838001178555620007d4565b82800160010185558215620007d4579182015b82811115620007d3578251825591602001919060010190620007b6565b5b509050620007e39190620007e7565b5090565b5b8082111562000802576000816000905550600101620007e8565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008338262000806565b9050919050565b620008458162000826565b82525050565b60006040820190506200086260008301856200083a565b6200087160208301846200083a565b9392505050565b60006020820190506200088f60008301846200083a565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008de60208362000895565b9150620008eb82620008a6565b602082019050919050565b600060208201905081810360008301526200091181620008cf565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006200095060108362000895565b91506200095d8262000918565b602082019050919050565b60006020820190508181036000830152620009838162000941565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000620009c260148362000895565b9150620009cf826200098a565b602082019050919050565b60006020820190508181036000830152620009f581620009b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a4457607f821691505b60208210810362000a5a5762000a59620009fc565b5b50919050565b614e528062000a706000396000f3fe6080604052600436106102935760003560e01c80637d427b1e1161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c5146109b8578063f103b433146109f5578063f2fde38b14610a1e578063f6a5b8e614610a47578063faa95a8e14610a70578063fd1fc4a014610a9957610293565b8063b88d4fde146108a3578063c23dc68f146108bf578063c7f8d01a146108fc578063c87b56dd14610927578063cce132d114610964578063d5d58ef81461098f57610293565b806395d89b411161011357806395d89b41146107a057806399a2557a146107cb5780639c28683714610808578063a035b1fe14610833578063a0712d681461085e578063a22cb4651461087a57610293565b80637d427b1e1461069057806382c30987146106b95780638462151c146106e45780638da5cb5b1461072157806391b7f5ed1461074c57806391cca3db1461077557610293565b806342842e0e116101fe5780635c975abb116101b75780635c975abb1461057e5780636352211e146105a95780636c0360eb146105e657806370a0823114610611578063715018a61461064e57806373be8f921461066557610293565b806342842e0e1461047d57806346aa52ce1461049957806348575bfa146104c4578063547520fe146104ef57806355f804b3146105185780635bbb21771461054157610293565b806318160ddd1161025057806318160ddd146103b25780631a62dae4146103dd57806323b872dd14610408578063274a32d31461042457806332cb6b0c1461043b5780633ccfd60b1461046657610293565b806301ffc9a714610298578063024577fe146102d5578063061431a81461031257806306fdde031461032e578063081812fc14610359578063095ea7b314610396575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613568565b610ac2565b6040516102cc91906135b0565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613630565b610b54565b60405161030991906135b0565b60405180910390f35b61032c600480360381019061032791906136b3565b610bd7565b005b34801561033a57600080fd5b50610343610e0d565b60405161035091906137ac565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906137ce565b610e9f565b60405161038d919061383c565b60405180910390f35b6103b060048036038101906103ab9190613883565b610f1e565b005b3480156103be57600080fd5b506103c7611062565b6040516103d491906138d2565b60405180910390f35b3480156103e957600080fd5b506103f2611079565b6040516103ff91906138d2565b60405180910390f35b610422600480360381019061041d91906138ed565b61107f565b005b34801561043057600080fd5b50610439611261565b005b34801561044757600080fd5b5061045061128d565b60405161045d91906138d2565b60405180910390f35b34801561047257600080fd5b5061047b611293565b005b610497600480360381019061049291906138ed565b6113e0565b005b3480156104a557600080fd5b506104ae6115c2565b6040516104bb91906138d2565b60405180910390f35b3480156104d057600080fd5b506104d96115c8565b6040516104e691906135b0565b60405180910390f35b3480156104fb57600080fd5b50610516600480360381019061051191906137ce565b6115db565b005b34801561052457600080fd5b5061053f600480360381019061053a9190613a70565b6115ed565b005b34801561054d57600080fd5b5061056860048036038101906105639190613b0f565b61160f565b6040516105759190613cbf565b60405180910390f35b34801561058a57600080fd5b506105936116d2565b6040516105a091906135b0565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906137ce565b6116e9565b6040516105dd919061383c565b60405180910390f35b3480156105f257600080fd5b506105fb6116fb565b60405161060891906137ac565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613ce1565b611789565b60405161064591906138d2565b60405180910390f35b34801561065a57600080fd5b50610663611841565b005b34801561067157600080fd5b5061067a611855565b60405161068791906138d2565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190613d44565b61185b565b005b3480156106c557600080fd5b506106ce61186d565b6040516106db9190613d80565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613ce1565b611873565b6040516107189190613e59565b60405180910390f35b34801561072d57600080fd5b506107366119b6565b604051610743919061383c565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e91906137ce565b6119e0565b005b34801561078157600080fd5b5061078a6119f2565b604051610797919061383c565b60405180910390f35b3480156107ac57600080fd5b506107b5611a18565b6040516107c291906137ac565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed9190613e7b565b611aaa565b6040516107ff9190613e59565b60405180910390f35b34801561081457600080fd5b5061081d611cb6565b60405161082a91906138d2565b60405180910390f35b34801561083f57600080fd5b50610848611cbc565b60405161085591906138d2565b60405180910390f35b610878600480360381019061087391906137ce565b611cc2565b005b34801561088657600080fd5b506108a1600480360381019061089c9190613efa565b611def565b005b6108bd60048036038101906108b89190613fdb565b611efa565b005b3480156108cb57600080fd5b506108e660048036038101906108e191906137ce565b6120df565b6040516108f391906140b3565b60405180910390f35b34801561090857600080fd5b50610911612149565b60405161091e91906138d2565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906137ce565b61214f565b60405161095b91906137ac565b60405180910390f35b34801561097057600080fd5b506109796121ed565b60405161098691906138d2565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613d44565b6121f3565b005b3480156109c457600080fd5b506109df60048036038101906109da91906140ce565b61228d565b6040516109ec91906135b0565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a1791906137ce565b612321565b005b348015610a2a57600080fd5b50610a456004803603810190610a409190613ce1565b612333565b005b348015610a5357600080fd5b50610a6e6004803603810190610a6991906137ce565b6123b6565b005b348015610a7c57600080fd5b50610a976004803603810190610a92919061410e565b6123c8565b005b348015610aa557600080fd5b50610ac06004803603810190610abb9190614191565b6123ed565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60008033604051602001610b689190614239565b604051602081830303815290604052805190602001209050610bce848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836124d9565b91505092915050565b60011515600d60009054906101000a900460ff16151514610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c24906142c6565b60405180910390fd5b600954610c39336124f0565b84610c449190614315565b1115610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c906143dd565b60405180910390fd5b600a5483610c91611062565b610c9b9190614315565b1115610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd39061446f565b60405180910390fd5b82600c54610cea919061448f565b341015610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d239061455b565b60405180910390fd5b600033604051602001610d3f9190614239565b604051602081830303815290604052805190602001209050610da5838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836124d9565b610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb906145ed565b60405180910390fd5b8360136000828254610df69190614315565b92505081905550610e073385612547565b50505050565b606060028054610e1c9061463c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e489061463c565b8015610e955780601f10610e6a57610100808354040283529160200191610e95565b820191906000526020600020905b815481529060010190602001808311610e7857829003601f168201915b5050505050905090565b6000610eaa82612565565b610ee0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f29826116e9565b90508073ffffffffffffffffffffffffffffffffffffffff16610f4a6125c4565b73ffffffffffffffffffffffffffffffffffffffff1614610fad57610f7681610f716125c4565b61228d565b610fac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061106c6125cc565b6001546000540303905090565b60135481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561124f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110f1576110ec8484846125d5565b61125b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161113a92919061466d565b602060405180830381865afa158015611157573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117b91906146ab565b801561120d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111cb92919061466d565b602060405180830381865afa1580156111e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120c91906146ab565b5b61124e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611245919061383c565b60405180910390fd5b5b61125a8484846125d5565b5b50505050565b6112696128f7565b6112716116d2565b6112825761127d612975565b61128b565b61128a6129d8565b5b565b600a5481565b61129b6128f7565b600047116112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d59061474a565b60405180910390fd5b60004790506000606460115460646112f6919061476a565b83611301919061448f565b61130b91906147cd565b9050600060646011548461131f919061448f565b61132991906147cd565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611371573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113da573d6000803e3d6000fd5b50505050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156115b0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114525761144d848484612a3b565b6115bc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161149b92919061466d565b602060405180830381865afa1580156114b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dc91906146ab565b801561156e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161152c92919061466d565b602060405180830381865afa158015611549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156d91906146ab565b5b6115af57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115a6919061383c565b60405180910390fd5b5b6115bb848484612a3b565b5b50505050565b60125481565b600d60009054906101000a900460ff1681565b6115e36128f7565b8060098190555050565b6115f56128f7565b80600f908051906020019061160b92919061340a565b5050565b6060600083839050905060008167ffffffffffffffff81111561163557611634613945565b5b60405190808252806020026020018201604052801561166e57816020015b61165b613490565b8152602001906001900390816116535790505b50905060005b8281146116c65761169d868683818110611691576116906147fe565b5b905060200201356120df565b8282815181106116b0576116af6147fe565b5b6020026020010181905250806001019050611674565b50809250505092915050565b6000600860149054906101000a900460ff16905090565b60006116f482612a5b565b9050919050565b600f80546117089061463c565b80601f01602080910402602001604051908101604052809291908181526020018280546117349061463c565b80156117815780601f1061175657610100808354040283529160200191611781565b820191906000526020600020905b81548152906001019060200180831161176457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118496128f7565b6118536000612b27565b565b60145481565b6118636128f7565b80600e8190555050565b600e5481565b6060600080600061188385611789565b905060008167ffffffffffffffff8111156118a1576118a0613945565b5b6040519080825280602002602001820160405280156118cf5781602001602082028036833780820191505090505b5090506118da613490565b60006118e46125cc565b90505b8386146119a8576118f781612bed565b9150816040015161199d57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461194257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361199c578083878060010198508151811061198f5761198e6147fe565b5b6020026020010181815250505b5b8060010190506118e7565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e86128f7565b80600b8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054611a279061463c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a539061463c565b8015611aa05780601f10611a7557610100808354040283529160200191611aa0565b820191906000526020600020905b815481529060010190602001808311611a8357829003601f168201915b5050505050905090565b6060818310611ae5576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611af0612c18565b9050611afa6125cc565b851015611b0c57611b096125cc565b94505b80841115611b18578093505b6000611b2387611789565b905084861015611b46576000868603905081811015611b40578091505b50611b4b565b600090505b60008167ffffffffffffffff811115611b6757611b66613945565b5b604051908082528060200260200182016040528015611b955781602001602082028036833780820191505090505b50905060008203611bac5780945050505050611caf565b6000611bb7886120df565b905060008160400151611bcc57816000015190505b60008990505b888114158015611be25750848714155b15611ca157611bf081612bed565b92508260400151611c9657600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611c3b57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c955780848880600101995081518110611c8857611c876147fe565b5b6020026020010181815250505b5b806001019050611bd2565b508583528296505050505050505b9392505050565b60115481565b600b5481565b611cca612c21565b600954611cd6336124f0565b82611ce19190614315565b1115611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d199061489f565b60405180910390fd5b600a5481611d2e611062565b611d389190614315565b1115611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d709061490b565b60405180910390fd5b80600b54611d87919061448f565b341015611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090614977565b60405180910390fd5b8060126000828254611ddb9190614315565b92505081905550611dec3382612547565b50565b8060076000611dfc6125c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ea96125c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eee91906135b0565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156120cb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f6d57611f6885858585612c6b565b6120d8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611fb692919061466d565b602060405180830381865afa158015611fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff791906146ab565b801561208957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161204792919061466d565b602060405180830381865afa158015612064573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208891906146ab565b5b6120ca57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120c1919061383c565b60405180910390fd5b5b6120d785858585612c6b565b5b5050505050565b6120e7613490565b6120ef613490565b6120f76125cc565b83108061210b5750612107612c18565b8310155b156121195780915050612144565b61212283612bed565b90508060400151156121375780915050612144565b61214083612cde565b9150505b919050565b600c5481565b606061215a82612565565b612190576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061219a612cfe565b905060008151036121ba57604051806020016040528060008152506121e5565b806121c484612d90565b6040516020016121d59291906149d3565b6040516020818303038152906040525b915050919050565b60095481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90614a69565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123296128f7565b80600a8190555050565b61233b6128f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190614afb565b60405180910390fd5b6123b381612b27565b50565b6123be6128f7565b80600c8190555050565b6123d06128f7565b80600d60006101000a81548160ff02191690831515021790555050565b6123f56128f7565b6000838390509050600a54818361240c919061448f565b612414611062565b61241e9190614315565b111561245f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245690614b8d565b60405180910390fd5b808261246b919061448f565b6014600082825461247c9190614315565b9250508190555060005b818110156124d2576124bf8585838181106124a4576124a36147fe565b5b90506020020160208101906124b99190613ce1565b84612547565b80806124ca90614bad565b915050612486565b5050505050565b6000826124e68584612de0565b1490509392505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612561828260405180602001604052806000815250612e36565b5050565b6000816125706125cc565b1115801561257f575060005482105b80156125bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006125e082612a5b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612647576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061265384612ed3565b9150915061266981876126646125c4565b612efa565b6126b55761267e866126796125c4565b61228d565b6126b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361271b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127288686866001612f3e565b801561273357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612801856127dd888887612f44565b7c020000000000000000000000000000000000000000000000000000000017612f6c565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036128875760006001850190506000600460008381526020019081526020016000205403612885576000548114612884578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ef8686866001612f97565b505050505050565b6128ff612f9d565b73ffffffffffffffffffffffffffffffffffffffff1661291d6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90614c41565b60405180910390fd5b565b61297d612c21565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129c1612f9d565b6040516129ce919061383c565b60405180910390a1565b6129e0612fa5565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a24612f9d565b604051612a31919061383c565b60405180910390a1565b612a5683838360405180602001604052806000815250611efa565b505050565b60008082905080612a6a6125cc565b11612af057600054811015612aef5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612aed575b60008103612ae3576004600083600190039350838152602001908152602001600020549050612ab9565b8092505050612b22565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bf5613490565b612c116004600084815260200190815260200160002054612fee565b9050919050565b60008054905090565b612c296116d2565b15612c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6090614cad565b60405180910390fd5b565b612c7684848461107f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612cd857612ca1848484846130a4565b612cd7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612ce6613490565b612cf7612cf283612a5b565b612fee565b9050919050565b6060600f8054612d0d9061463c565b80601f0160208091040260200160405190810160405280929190818152602001828054612d399061463c565b8015612d865780601f10612d5b57610100808354040283529160200191612d86565b820191906000526020600020905b815481529060010190602001808311612d6957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612dcb57600184039350600a81066030018453600a8104905080612da9575b50828103602084039350808452505050919050565b60008082905060005b8451811015612e2b57612e1682868381518110612e0957612e086147fe565b5b60200260200101516131f4565b91508080612e2390614bad565b915050612de9565b508091505092915050565b612e40838361321f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ece57600080549050600083820390505b612e8060008683806001019450866130a4565b612eb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e6d578160005414612ecb57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612f5b8686846133da565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612fad6116d2565b612fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe390614d19565b60405180910390fd5b565b612ff6613490565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130ca6125c4565b8786866040518563ffffffff1660e01b81526004016130ec9493929190614d8e565b6020604051808303816000875af192505050801561312857506040513d601f19601f820116820180604052508101906131259190614def565b60015b6131a1573d8060008114613158576040519150601f19603f3d011682016040523d82523d6000602084013e61315d565b606091505b506000815103613199576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600081831061320c5761320782846133e3565b613217565b61321683836133e3565b5b905092915050565b6000805490506000820361325f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61326c6000848385612f3e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506132e3836132d46000866000612f44565b6132dd856133fa565b17612f6c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461338457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613349565b50600082036133bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506133d56000848385612f97565b505050565b60009392505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546134169061463c565b90600052602060002090601f016020900481019282613438576000855561347f565b82601f1061345157805160ff191683800117855561347f565b8280016001018555821561347f579182015b8281111561347e578251825591602001919060010190613463565b5b50905061348c91906134df565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156134f85760008160009055506001016134e0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61354581613510565b811461355057600080fd5b50565b6000813590506135628161353c565b92915050565b60006020828403121561357e5761357d613506565b5b600061358c84828501613553565b91505092915050565b60008115159050919050565b6135aa81613595565b82525050565b60006020820190506135c560008301846135a1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126135f0576135ef6135cb565b5b8235905067ffffffffffffffff81111561360d5761360c6135d0565b5b602083019150836020820283011115613629576136286135d5565b5b9250929050565b6000806020838503121561364757613646613506565b5b600083013567ffffffffffffffff8111156136655761366461350b565b5b613671858286016135da565b92509250509250929050565b6000819050919050565b6136908161367d565b811461369b57600080fd5b50565b6000813590506136ad81613687565b92915050565b6000806000604084860312156136cc576136cb613506565b5b60006136da8682870161369e565b935050602084013567ffffffffffffffff8111156136fb576136fa61350b565b5b613707868287016135da565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b8381101561374d578082015181840152602081019050613732565b8381111561375c576000848401525b50505050565b6000601f19601f8301169050919050565b600061377e82613713565b613788818561371e565b935061379881856020860161372f565b6137a181613762565b840191505092915050565b600060208201905081810360008301526137c68184613773565b905092915050565b6000602082840312156137e4576137e3613506565b5b60006137f28482850161369e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613826826137fb565b9050919050565b6138368161381b565b82525050565b6000602082019050613851600083018461382d565b92915050565b6138608161381b565b811461386b57600080fd5b50565b60008135905061387d81613857565b92915050565b6000806040838503121561389a57613899613506565b5b60006138a88582860161386e565b92505060206138b98582860161369e565b9150509250929050565b6138cc8161367d565b82525050565b60006020820190506138e760008301846138c3565b92915050565b60008060006060848603121561390657613905613506565b5b60006139148682870161386e565b93505060206139258682870161386e565b92505060406139368682870161369e565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61397d82613762565b810181811067ffffffffffffffff8211171561399c5761399b613945565b5b80604052505050565b60006139af6134fc565b90506139bb8282613974565b919050565b600067ffffffffffffffff8211156139db576139da613945565b5b6139e482613762565b9050602081019050919050565b82818337600083830152505050565b6000613a13613a0e846139c0565b6139a5565b905082815260208101848484011115613a2f57613a2e613940565b5b613a3a8482856139f1565b509392505050565b600082601f830112613a5757613a566135cb565b5b8135613a67848260208601613a00565b91505092915050565b600060208284031215613a8657613a85613506565b5b600082013567ffffffffffffffff811115613aa457613aa361350b565b5b613ab084828501613a42565b91505092915050565b60008083601f840112613acf57613ace6135cb565b5b8235905067ffffffffffffffff811115613aec57613aeb6135d0565b5b602083019150836020820283011115613b0857613b076135d5565b5b9250929050565b60008060208385031215613b2657613b25613506565b5b600083013567ffffffffffffffff811115613b4457613b4361350b565b5b613b5085828601613ab9565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b918161381b565b82525050565b600067ffffffffffffffff82169050919050565b613bb481613b97565b82525050565b613bc381613595565b82525050565b600062ffffff82169050919050565b613be181613bc9565b82525050565b608082016000820151613bfd6000850182613b88565b506020820151613c106020850182613bab565b506040820151613c236040850182613bba565b506060820151613c366060850182613bd8565b50505050565b6000613c488383613be7565b60808301905092915050565b6000602082019050919050565b6000613c6c82613b5c565b613c768185613b67565b9350613c8183613b78565b8060005b83811015613cb2578151613c998882613c3c565b9750613ca483613c54565b925050600181019050613c85565b5085935050505092915050565b60006020820190508181036000830152613cd98184613c61565b905092915050565b600060208284031215613cf757613cf6613506565b5b6000613d058482850161386e565b91505092915050565b6000819050919050565b613d2181613d0e565b8114613d2c57600080fd5b50565b600081359050613d3e81613d18565b92915050565b600060208284031215613d5a57613d59613506565b5b6000613d6884828501613d2f565b91505092915050565b613d7a81613d0e565b82525050565b6000602082019050613d956000830184613d71565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dd08161367d565b82525050565b6000613de28383613dc7565b60208301905092915050565b6000602082019050919050565b6000613e0682613d9b565b613e108185613da6565b9350613e1b83613db7565b8060005b83811015613e4c578151613e338882613dd6565b9750613e3e83613dee565b925050600181019050613e1f565b5085935050505092915050565b60006020820190508181036000830152613e738184613dfb565b905092915050565b600080600060608486031215613e9457613e93613506565b5b6000613ea28682870161386e565b9350506020613eb38682870161369e565b9250506040613ec48682870161369e565b9150509250925092565b613ed781613595565b8114613ee257600080fd5b50565b600081359050613ef481613ece565b92915050565b60008060408385031215613f1157613f10613506565b5b6000613f1f8582860161386e565b9250506020613f3085828601613ee5565b9150509250929050565b600067ffffffffffffffff821115613f5557613f54613945565b5b613f5e82613762565b9050602081019050919050565b6000613f7e613f7984613f3a565b6139a5565b905082815260208101848484011115613f9a57613f99613940565b5b613fa58482856139f1565b509392505050565b600082601f830112613fc257613fc16135cb565b5b8135613fd2848260208601613f6b565b91505092915050565b60008060008060808587031215613ff557613ff4613506565b5b60006140038782880161386e565b94505060206140148782880161386e565b93505060406140258782880161369e565b925050606085013567ffffffffffffffff8111156140465761404561350b565b5b61405287828801613fad565b91505092959194509250565b6080820160008201516140746000850182613b88565b5060208201516140876020850182613bab565b50604082015161409a6040850182613bba565b5060608201516140ad6060850182613bd8565b50505050565b60006080820190506140c8600083018461405e565b92915050565b600080604083850312156140e5576140e4613506565b5b60006140f38582860161386e565b92505060206141048582860161386e565b9150509250929050565b60006020828403121561412457614123613506565b5b600061413284828501613ee5565b91505092915050565b60008083601f840112614151576141506135cb565b5b8235905067ffffffffffffffff81111561416e5761416d6135d0565b5b60208301915083602082028301111561418a576141896135d5565b5b9250929050565b6000806000604084860312156141aa576141a9613506565b5b600084013567ffffffffffffffff8111156141c8576141c761350b565b5b6141d48682870161413b565b935093505060206141e78682870161369e565b9150509250925092565b60008160601b9050919050565b6000614209826141f1565b9050919050565b600061421b826141fe565b9050919050565b61423361422e8261381b565b614210565b82525050565b60006142458284614222565b60148201915081905092915050565b7f6d696e7457686974656c6973743a2057686974656c697374206d696e7420697360008201527f206e6f7420616374697665000000000000000000000000000000000000000000602082015250565b60006142b0602b8361371e565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143208261367d565b915061432b8361367d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143605761435f6142e6565b5b828201905092915050565b7f6d696e7457686974656c6973743a20457863656564656420746865206c696d6960008201527f74207065722077616c6c65740000000000000000000000000000000000000000602082015250565b60006143c7602c8361371e565b91506143d28261436b565b604082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f6d696e7457686974656c6973743a204e6f7420656e6f75676820746f6b656e7360008201527f206c656674000000000000000000000000000000000000000000000000000000602082015250565b600061445960258361371e565b9150614464826143fd565b604082019050919050565b600060208201905081810360008301526144888161444c565b9050919050565b600061449a8261367d565b91506144a58361367d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144de576144dd6142e6565b5b828202905092915050565b7f6d696e7457686974656c6973743a204e6f7420656e6f7567682065746865722060008201527f73656e7400000000000000000000000000000000000000000000000000000000602082015250565b600061454560248361371e565b9150614550826144e9565b604082019050919050565b6000602082019050818103600083015261457481614538565b9050919050565b7f6d696e7457686974656c6973743a2061646472657373206973206e6f74206f6e60008201527f2077686974656c69737400000000000000000000000000000000000000000000602082015250565b60006145d7602a8361371e565b91506145e28261457b565b604082019050919050565b60006020820190508181036000830152614606816145ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061465457607f821691505b6020821081036146675761466661460d565b5b50919050565b6000604082019050614682600083018561382d565b61468f602083018461382d565b9392505050565b6000815190506146a581613ece565b92915050565b6000602082840312156146c1576146c0613506565b5b60006146cf84828501614696565b91505092915050565b7f77697468647261773a20636f6e74726163742062616c616e6365206d7573742060008201527f62652067726561746572207468616e2030000000000000000000000000000000602082015250565b600061473460318361371e565b915061473f826146d8565b604082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b60006147758261367d565b91506147808361367d565b925082821015614793576147926142e6565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147d88261367d565b91506147e38361367d565b9250826147f3576147f261479e565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d696e743a20457863656564656420746865206c696d6974207065722077616c60008201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b600061488960238361371e565b91506148948261482d565b604082019050919050565b600060208201905081810360008301526148b88161487c565b9050919050565b7f6d696e743a204e6f7420656e6f75676820746f6b656e73206c65667400000000600082015250565b60006148f5601c8361371e565b9150614900826148bf565b602082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f6d696e743a204e6f7420656e6f7567682065746865722073656e740000000000600082015250565b6000614961601b8361371e565b915061496c8261492b565b602082019050919050565b6000602082019050818103600083015261499081614954565b9050919050565b600081905092915050565b60006149ad82613713565b6149b78185614997565b93506149c781856020860161372f565b80840191505092915050565b60006149df82856149a2565b91506149eb82846149a2565b91508190509392505050565b7f757064617465574c526f6f744465763a2073656e646572206973206e6f74206460008201527f6576000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a5360228361371e565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ae560268361371e565b9150614af082614a89565b604082019050919050565b60006020820190508181036000830152614b1481614ad8565b9050919050565b7f61697244726f703a204e6f7420656e6f75676820746f6b656e7320746f20616960008201527f7264726f70000000000000000000000000000000000000000000000000000000602082015250565b6000614b7760258361371e565b9150614b8282614b1b565b604082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b6000614bb88261367d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bea57614be96142e6565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c2b60208361371e565b9150614c3682614bf5565b602082019050919050565b60006020820190508181036000830152614c5a81614c1e565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614c9760108361371e565b9150614ca282614c61565b602082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614d0360148361371e565b9150614d0e82614ccd565b602082019050919050565b60006020820190508181036000830152614d3281614cf6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d6082614d39565b614d6a8185614d44565b9350614d7a81856020860161372f565b614d8381613762565b840191505092915050565b6000608082019050614da3600083018761382d565b614db0602083018661382d565b614dbd60408301856138c3565b8181036060830152614dcf8184614d55565b905095945050505050565b600081519050614de98161353c565b92915050565b600060208284031215614e0557614e04613506565b5b6000614e1384828501614dda565b9150509291505056fea2646970667358221220eef4db47cd7cb9b08e27f1c21a3ff270670e98b3b3be1ea1a0f16e38c701e30364736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102935760003560e01c80637d427b1e1161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c5146109b8578063f103b433146109f5578063f2fde38b14610a1e578063f6a5b8e614610a47578063faa95a8e14610a70578063fd1fc4a014610a9957610293565b8063b88d4fde146108a3578063c23dc68f146108bf578063c7f8d01a146108fc578063c87b56dd14610927578063cce132d114610964578063d5d58ef81461098f57610293565b806395d89b411161011357806395d89b41146107a057806399a2557a146107cb5780639c28683714610808578063a035b1fe14610833578063a0712d681461085e578063a22cb4651461087a57610293565b80637d427b1e1461069057806382c30987146106b95780638462151c146106e45780638da5cb5b1461072157806391b7f5ed1461074c57806391cca3db1461077557610293565b806342842e0e116101fe5780635c975abb116101b75780635c975abb1461057e5780636352211e146105a95780636c0360eb146105e657806370a0823114610611578063715018a61461064e57806373be8f921461066557610293565b806342842e0e1461047d57806346aa52ce1461049957806348575bfa146104c4578063547520fe146104ef57806355f804b3146105185780635bbb21771461054157610293565b806318160ddd1161025057806318160ddd146103b25780631a62dae4146103dd57806323b872dd14610408578063274a32d31461042457806332cb6b0c1461043b5780633ccfd60b1461046657610293565b806301ffc9a714610298578063024577fe146102d5578063061431a81461031257806306fdde031461032e578063081812fc14610359578063095ea7b314610396575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613568565b610ac2565b6040516102cc91906135b0565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613630565b610b54565b60405161030991906135b0565b60405180910390f35b61032c600480360381019061032791906136b3565b610bd7565b005b34801561033a57600080fd5b50610343610e0d565b60405161035091906137ac565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906137ce565b610e9f565b60405161038d919061383c565b60405180910390f35b6103b060048036038101906103ab9190613883565b610f1e565b005b3480156103be57600080fd5b506103c7611062565b6040516103d491906138d2565b60405180910390f35b3480156103e957600080fd5b506103f2611079565b6040516103ff91906138d2565b60405180910390f35b610422600480360381019061041d91906138ed565b61107f565b005b34801561043057600080fd5b50610439611261565b005b34801561044757600080fd5b5061045061128d565b60405161045d91906138d2565b60405180910390f35b34801561047257600080fd5b5061047b611293565b005b610497600480360381019061049291906138ed565b6113e0565b005b3480156104a557600080fd5b506104ae6115c2565b6040516104bb91906138d2565b60405180910390f35b3480156104d057600080fd5b506104d96115c8565b6040516104e691906135b0565b60405180910390f35b3480156104fb57600080fd5b50610516600480360381019061051191906137ce565b6115db565b005b34801561052457600080fd5b5061053f600480360381019061053a9190613a70565b6115ed565b005b34801561054d57600080fd5b5061056860048036038101906105639190613b0f565b61160f565b6040516105759190613cbf565b60405180910390f35b34801561058a57600080fd5b506105936116d2565b6040516105a091906135b0565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906137ce565b6116e9565b6040516105dd919061383c565b60405180910390f35b3480156105f257600080fd5b506105fb6116fb565b60405161060891906137ac565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190613ce1565b611789565b60405161064591906138d2565b60405180910390f35b34801561065a57600080fd5b50610663611841565b005b34801561067157600080fd5b5061067a611855565b60405161068791906138d2565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190613d44565b61185b565b005b3480156106c557600080fd5b506106ce61186d565b6040516106db9190613d80565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613ce1565b611873565b6040516107189190613e59565b60405180910390f35b34801561072d57600080fd5b506107366119b6565b604051610743919061383c565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e91906137ce565b6119e0565b005b34801561078157600080fd5b5061078a6119f2565b604051610797919061383c565b60405180910390f35b3480156107ac57600080fd5b506107b5611a18565b6040516107c291906137ac565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed9190613e7b565b611aaa565b6040516107ff9190613e59565b60405180910390f35b34801561081457600080fd5b5061081d611cb6565b60405161082a91906138d2565b60405180910390f35b34801561083f57600080fd5b50610848611cbc565b60405161085591906138d2565b60405180910390f35b610878600480360381019061087391906137ce565b611cc2565b005b34801561088657600080fd5b506108a1600480360381019061089c9190613efa565b611def565b005b6108bd60048036038101906108b89190613fdb565b611efa565b005b3480156108cb57600080fd5b506108e660048036038101906108e191906137ce565b6120df565b6040516108f391906140b3565b60405180910390f35b34801561090857600080fd5b50610911612149565b60405161091e91906138d2565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906137ce565b61214f565b60405161095b91906137ac565b60405180910390f35b34801561097057600080fd5b506109796121ed565b60405161098691906138d2565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613d44565b6121f3565b005b3480156109c457600080fd5b506109df60048036038101906109da91906140ce565b61228d565b6040516109ec91906135b0565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a1791906137ce565b612321565b005b348015610a2a57600080fd5b50610a456004803603810190610a409190613ce1565b612333565b005b348015610a5357600080fd5b50610a6e6004803603810190610a6991906137ce565b6123b6565b005b348015610a7c57600080fd5b50610a976004803603810190610a92919061410e565b6123c8565b005b348015610aa557600080fd5b50610ac06004803603810190610abb9190614191565b6123ed565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60008033604051602001610b689190614239565b604051602081830303815290604052805190602001209050610bce848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836124d9565b91505092915050565b60011515600d60009054906101000a900460ff16151514610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c24906142c6565b60405180910390fd5b600954610c39336124f0565b84610c449190614315565b1115610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c906143dd565b60405180910390fd5b600a5483610c91611062565b610c9b9190614315565b1115610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd39061446f565b60405180910390fd5b82600c54610cea919061448f565b341015610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d239061455b565b60405180910390fd5b600033604051602001610d3f9190614239565b604051602081830303815290604052805190602001209050610da5838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836124d9565b610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb906145ed565b60405180910390fd5b8360136000828254610df69190614315565b92505081905550610e073385612547565b50505050565b606060028054610e1c9061463c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e489061463c565b8015610e955780601f10610e6a57610100808354040283529160200191610e95565b820191906000526020600020905b815481529060010190602001808311610e7857829003601f168201915b5050505050905090565b6000610eaa82612565565b610ee0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f29826116e9565b90508073ffffffffffffffffffffffffffffffffffffffff16610f4a6125c4565b73ffffffffffffffffffffffffffffffffffffffff1614610fad57610f7681610f716125c4565b61228d565b610fac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061106c6125cc565b6001546000540303905090565b60135481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561124f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110f1576110ec8484846125d5565b61125b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161113a92919061466d565b602060405180830381865afa158015611157573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117b91906146ab565b801561120d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111cb92919061466d565b602060405180830381865afa1580156111e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120c91906146ab565b5b61124e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611245919061383c565b60405180910390fd5b5b61125a8484846125d5565b5b50505050565b6112696128f7565b6112716116d2565b6112825761127d612975565b61128b565b61128a6129d8565b5b565b600a5481565b61129b6128f7565b600047116112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d59061474a565b60405180910390fd5b60004790506000606460115460646112f6919061476a565b83611301919061448f565b61130b91906147cd565b9050600060646011548461131f919061448f565b61132991906147cd565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611371573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113da573d6000803e3d6000fd5b50505050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156115b0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114525761144d848484612a3b565b6115bc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161149b92919061466d565b602060405180830381865afa1580156114b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dc91906146ab565b801561156e57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161152c92919061466d565b602060405180830381865afa158015611549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156d91906146ab565b5b6115af57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115a6919061383c565b60405180910390fd5b5b6115bb848484612a3b565b5b50505050565b60125481565b600d60009054906101000a900460ff1681565b6115e36128f7565b8060098190555050565b6115f56128f7565b80600f908051906020019061160b92919061340a565b5050565b6060600083839050905060008167ffffffffffffffff81111561163557611634613945565b5b60405190808252806020026020018201604052801561166e57816020015b61165b613490565b8152602001906001900390816116535790505b50905060005b8281146116c65761169d868683818110611691576116906147fe565b5b905060200201356120df565b8282815181106116b0576116af6147fe565b5b6020026020010181905250806001019050611674565b50809250505092915050565b6000600860149054906101000a900460ff16905090565b60006116f482612a5b565b9050919050565b600f80546117089061463c565b80601f01602080910402602001604051908101604052809291908181526020018280546117349061463c565b80156117815780601f1061175657610100808354040283529160200191611781565b820191906000526020600020905b81548152906001019060200180831161176457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118496128f7565b6118536000612b27565b565b60145481565b6118636128f7565b80600e8190555050565b600e5481565b6060600080600061188385611789565b905060008167ffffffffffffffff8111156118a1576118a0613945565b5b6040519080825280602002602001820160405280156118cf5781602001602082028036833780820191505090505b5090506118da613490565b60006118e46125cc565b90505b8386146119a8576118f781612bed565b9150816040015161199d57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461194257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361199c578083878060010198508151811061198f5761198e6147fe565b5b6020026020010181815250505b5b8060010190506118e7565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e86128f7565b80600b8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054611a279061463c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a539061463c565b8015611aa05780601f10611a7557610100808354040283529160200191611aa0565b820191906000526020600020905b815481529060010190602001808311611a8357829003601f168201915b5050505050905090565b6060818310611ae5576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611af0612c18565b9050611afa6125cc565b851015611b0c57611b096125cc565b94505b80841115611b18578093505b6000611b2387611789565b905084861015611b46576000868603905081811015611b40578091505b50611b4b565b600090505b60008167ffffffffffffffff811115611b6757611b66613945565b5b604051908082528060200260200182016040528015611b955781602001602082028036833780820191505090505b50905060008203611bac5780945050505050611caf565b6000611bb7886120df565b905060008160400151611bcc57816000015190505b60008990505b888114158015611be25750848714155b15611ca157611bf081612bed565b92508260400151611c9657600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611c3b57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c955780848880600101995081518110611c8857611c876147fe565b5b6020026020010181815250505b5b806001019050611bd2565b508583528296505050505050505b9392505050565b60115481565b600b5481565b611cca612c21565b600954611cd6336124f0565b82611ce19190614315565b1115611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d199061489f565b60405180910390fd5b600a5481611d2e611062565b611d389190614315565b1115611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d709061490b565b60405180910390fd5b80600b54611d87919061448f565b341015611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090614977565b60405180910390fd5b8060126000828254611ddb9190614315565b92505081905550611dec3382612547565b50565b8060076000611dfc6125c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ea96125c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eee91906135b0565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156120cb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f6d57611f6885858585612c6b565b6120d8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611fb692919061466d565b602060405180830381865afa158015611fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff791906146ab565b801561208957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161204792919061466d565b602060405180830381865afa158015612064573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208891906146ab565b5b6120ca57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120c1919061383c565b60405180910390fd5b5b6120d785858585612c6b565b5b5050505050565b6120e7613490565b6120ef613490565b6120f76125cc565b83108061210b5750612107612c18565b8310155b156121195780915050612144565b61212283612bed565b90508060400151156121375780915050612144565b61214083612cde565b9150505b919050565b600c5481565b606061215a82612565565b612190576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061219a612cfe565b905060008151036121ba57604051806020016040528060008152506121e5565b806121c484612d90565b6040516020016121d59291906149d3565b6040516020818303038152906040525b915050919050565b60095481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90614a69565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123296128f7565b80600a8190555050565b61233b6128f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190614afb565b60405180910390fd5b6123b381612b27565b50565b6123be6128f7565b80600c8190555050565b6123d06128f7565b80600d60006101000a81548160ff02191690831515021790555050565b6123f56128f7565b6000838390509050600a54818361240c919061448f565b612414611062565b61241e9190614315565b111561245f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245690614b8d565b60405180910390fd5b808261246b919061448f565b6014600082825461247c9190614315565b9250508190555060005b818110156124d2576124bf8585838181106124a4576124a36147fe565b5b90506020020160208101906124b99190613ce1565b84612547565b80806124ca90614bad565b915050612486565b5050505050565b6000826124e68584612de0565b1490509392505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612561828260405180602001604052806000815250612e36565b5050565b6000816125706125cc565b1115801561257f575060005482105b80156125bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006125e082612a5b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612647576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061265384612ed3565b9150915061266981876126646125c4565b612efa565b6126b55761267e866126796125c4565b61228d565b6126b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361271b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127288686866001612f3e565b801561273357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612801856127dd888887612f44565b7c020000000000000000000000000000000000000000000000000000000017612f6c565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036128875760006001850190506000600460008381526020019081526020016000205403612885576000548114612884578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ef8686866001612f97565b505050505050565b6128ff612f9d565b73ffffffffffffffffffffffffffffffffffffffff1661291d6119b6565b73ffffffffffffffffffffffffffffffffffffffff1614612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90614c41565b60405180910390fd5b565b61297d612c21565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129c1612f9d565b6040516129ce919061383c565b60405180910390a1565b6129e0612fa5565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a24612f9d565b604051612a31919061383c565b60405180910390a1565b612a5683838360405180602001604052806000815250611efa565b505050565b60008082905080612a6a6125cc565b11612af057600054811015612aef5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612aed575b60008103612ae3576004600083600190039350838152602001908152602001600020549050612ab9565b8092505050612b22565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bf5613490565b612c116004600084815260200190815260200160002054612fee565b9050919050565b60008054905090565b612c296116d2565b15612c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6090614cad565b60405180910390fd5b565b612c7684848461107f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612cd857612ca1848484846130a4565b612cd7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612ce6613490565b612cf7612cf283612a5b565b612fee565b9050919050565b6060600f8054612d0d9061463c565b80601f0160208091040260200160405190810160405280929190818152602001828054612d399061463c565b8015612d865780601f10612d5b57610100808354040283529160200191612d86565b820191906000526020600020905b815481529060010190602001808311612d6957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612dcb57600184039350600a81066030018453600a8104905080612da9575b50828103602084039350808452505050919050565b60008082905060005b8451811015612e2b57612e1682868381518110612e0957612e086147fe565b5b60200260200101516131f4565b91508080612e2390614bad565b915050612de9565b508091505092915050565b612e40838361321f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ece57600080549050600083820390505b612e8060008683806001019450866130a4565b612eb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e6d578160005414612ecb57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612f5b8686846133da565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612fad6116d2565b612fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe390614d19565b60405180910390fd5b565b612ff6613490565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130ca6125c4565b8786866040518563ffffffff1660e01b81526004016130ec9493929190614d8e565b6020604051808303816000875af192505050801561312857506040513d601f19601f820116820180604052508101906131259190614def565b60015b6131a1573d8060008114613158576040519150601f19603f3d011682016040523d82523d6000602084013e61315d565b606091505b506000815103613199576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600081831061320c5761320782846133e3565b613217565b61321683836133e3565b5b905092915050565b6000805490506000820361325f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61326c6000848385612f3e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506132e3836132d46000866000612f44565b6132dd856133fa565b17612f6c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461338457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613349565b50600082036133bf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506133d56000848385612f97565b505050565b60009392505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546134169061463c565b90600052602060002090601f016020900481019282613438576000855561347f565b82601f1061345157805160ff191683800117855561347f565b8280016001018555821561347f579182015b8281111561347e578251825591602001919060010190613463565b5b50905061348c91906134df565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156134f85760008160009055506001016134e0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61354581613510565b811461355057600080fd5b50565b6000813590506135628161353c565b92915050565b60006020828403121561357e5761357d613506565b5b600061358c84828501613553565b91505092915050565b60008115159050919050565b6135aa81613595565b82525050565b60006020820190506135c560008301846135a1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126135f0576135ef6135cb565b5b8235905067ffffffffffffffff81111561360d5761360c6135d0565b5b602083019150836020820283011115613629576136286135d5565b5b9250929050565b6000806020838503121561364757613646613506565b5b600083013567ffffffffffffffff8111156136655761366461350b565b5b613671858286016135da565b92509250509250929050565b6000819050919050565b6136908161367d565b811461369b57600080fd5b50565b6000813590506136ad81613687565b92915050565b6000806000604084860312156136cc576136cb613506565b5b60006136da8682870161369e565b935050602084013567ffffffffffffffff8111156136fb576136fa61350b565b5b613707868287016135da565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b8381101561374d578082015181840152602081019050613732565b8381111561375c576000848401525b50505050565b6000601f19601f8301169050919050565b600061377e82613713565b613788818561371e565b935061379881856020860161372f565b6137a181613762565b840191505092915050565b600060208201905081810360008301526137c68184613773565b905092915050565b6000602082840312156137e4576137e3613506565b5b60006137f28482850161369e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613826826137fb565b9050919050565b6138368161381b565b82525050565b6000602082019050613851600083018461382d565b92915050565b6138608161381b565b811461386b57600080fd5b50565b60008135905061387d81613857565b92915050565b6000806040838503121561389a57613899613506565b5b60006138a88582860161386e565b92505060206138b98582860161369e565b9150509250929050565b6138cc8161367d565b82525050565b60006020820190506138e760008301846138c3565b92915050565b60008060006060848603121561390657613905613506565b5b60006139148682870161386e565b93505060206139258682870161386e565b92505060406139368682870161369e565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61397d82613762565b810181811067ffffffffffffffff8211171561399c5761399b613945565b5b80604052505050565b60006139af6134fc565b90506139bb8282613974565b919050565b600067ffffffffffffffff8211156139db576139da613945565b5b6139e482613762565b9050602081019050919050565b82818337600083830152505050565b6000613a13613a0e846139c0565b6139a5565b905082815260208101848484011115613a2f57613a2e613940565b5b613a3a8482856139f1565b509392505050565b600082601f830112613a5757613a566135cb565b5b8135613a67848260208601613a00565b91505092915050565b600060208284031215613a8657613a85613506565b5b600082013567ffffffffffffffff811115613aa457613aa361350b565b5b613ab084828501613a42565b91505092915050565b60008083601f840112613acf57613ace6135cb565b5b8235905067ffffffffffffffff811115613aec57613aeb6135d0565b5b602083019150836020820283011115613b0857613b076135d5565b5b9250929050565b60008060208385031215613b2657613b25613506565b5b600083013567ffffffffffffffff811115613b4457613b4361350b565b5b613b5085828601613ab9565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b918161381b565b82525050565b600067ffffffffffffffff82169050919050565b613bb481613b97565b82525050565b613bc381613595565b82525050565b600062ffffff82169050919050565b613be181613bc9565b82525050565b608082016000820151613bfd6000850182613b88565b506020820151613c106020850182613bab565b506040820151613c236040850182613bba565b506060820151613c366060850182613bd8565b50505050565b6000613c488383613be7565b60808301905092915050565b6000602082019050919050565b6000613c6c82613b5c565b613c768185613b67565b9350613c8183613b78565b8060005b83811015613cb2578151613c998882613c3c565b9750613ca483613c54565b925050600181019050613c85565b5085935050505092915050565b60006020820190508181036000830152613cd98184613c61565b905092915050565b600060208284031215613cf757613cf6613506565b5b6000613d058482850161386e565b91505092915050565b6000819050919050565b613d2181613d0e565b8114613d2c57600080fd5b50565b600081359050613d3e81613d18565b92915050565b600060208284031215613d5a57613d59613506565b5b6000613d6884828501613d2f565b91505092915050565b613d7a81613d0e565b82525050565b6000602082019050613d956000830184613d71565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dd08161367d565b82525050565b6000613de28383613dc7565b60208301905092915050565b6000602082019050919050565b6000613e0682613d9b565b613e108185613da6565b9350613e1b83613db7565b8060005b83811015613e4c578151613e338882613dd6565b9750613e3e83613dee565b925050600181019050613e1f565b5085935050505092915050565b60006020820190508181036000830152613e738184613dfb565b905092915050565b600080600060608486031215613e9457613e93613506565b5b6000613ea28682870161386e565b9350506020613eb38682870161369e565b9250506040613ec48682870161369e565b9150509250925092565b613ed781613595565b8114613ee257600080fd5b50565b600081359050613ef481613ece565b92915050565b60008060408385031215613f1157613f10613506565b5b6000613f1f8582860161386e565b9250506020613f3085828601613ee5565b9150509250929050565b600067ffffffffffffffff821115613f5557613f54613945565b5b613f5e82613762565b9050602081019050919050565b6000613f7e613f7984613f3a565b6139a5565b905082815260208101848484011115613f9a57613f99613940565b5b613fa58482856139f1565b509392505050565b600082601f830112613fc257613fc16135cb565b5b8135613fd2848260208601613f6b565b91505092915050565b60008060008060808587031215613ff557613ff4613506565b5b60006140038782880161386e565b94505060206140148782880161386e565b93505060406140258782880161369e565b925050606085013567ffffffffffffffff8111156140465761404561350b565b5b61405287828801613fad565b91505092959194509250565b6080820160008201516140746000850182613b88565b5060208201516140876020850182613bab565b50604082015161409a6040850182613bba565b5060608201516140ad6060850182613bd8565b50505050565b60006080820190506140c8600083018461405e565b92915050565b600080604083850312156140e5576140e4613506565b5b60006140f38582860161386e565b92505060206141048582860161386e565b9150509250929050565b60006020828403121561412457614123613506565b5b600061413284828501613ee5565b91505092915050565b60008083601f840112614151576141506135cb565b5b8235905067ffffffffffffffff81111561416e5761416d6135d0565b5b60208301915083602082028301111561418a576141896135d5565b5b9250929050565b6000806000604084860312156141aa576141a9613506565b5b600084013567ffffffffffffffff8111156141c8576141c761350b565b5b6141d48682870161413b565b935093505060206141e78682870161369e565b9150509250925092565b60008160601b9050919050565b6000614209826141f1565b9050919050565b600061421b826141fe565b9050919050565b61423361422e8261381b565b614210565b82525050565b60006142458284614222565b60148201915081905092915050565b7f6d696e7457686974656c6973743a2057686974656c697374206d696e7420697360008201527f206e6f7420616374697665000000000000000000000000000000000000000000602082015250565b60006142b0602b8361371e565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143208261367d565b915061432b8361367d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143605761435f6142e6565b5b828201905092915050565b7f6d696e7457686974656c6973743a20457863656564656420746865206c696d6960008201527f74207065722077616c6c65740000000000000000000000000000000000000000602082015250565b60006143c7602c8361371e565b91506143d28261436b565b604082019050919050565b600060208201905081810360008301526143f6816143ba565b9050919050565b7f6d696e7457686974656c6973743a204e6f7420656e6f75676820746f6b656e7360008201527f206c656674000000000000000000000000000000000000000000000000000000602082015250565b600061445960258361371e565b9150614464826143fd565b604082019050919050565b600060208201905081810360008301526144888161444c565b9050919050565b600061449a8261367d565b91506144a58361367d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144de576144dd6142e6565b5b828202905092915050565b7f6d696e7457686974656c6973743a204e6f7420656e6f7567682065746865722060008201527f73656e7400000000000000000000000000000000000000000000000000000000602082015250565b600061454560248361371e565b9150614550826144e9565b604082019050919050565b6000602082019050818103600083015261457481614538565b9050919050565b7f6d696e7457686974656c6973743a2061646472657373206973206e6f74206f6e60008201527f2077686974656c69737400000000000000000000000000000000000000000000602082015250565b60006145d7602a8361371e565b91506145e28261457b565b604082019050919050565b60006020820190508181036000830152614606816145ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061465457607f821691505b6020821081036146675761466661460d565b5b50919050565b6000604082019050614682600083018561382d565b61468f602083018461382d565b9392505050565b6000815190506146a581613ece565b92915050565b6000602082840312156146c1576146c0613506565b5b60006146cf84828501614696565b91505092915050565b7f77697468647261773a20636f6e74726163742062616c616e6365206d7573742060008201527f62652067726561746572207468616e2030000000000000000000000000000000602082015250565b600061473460318361371e565b915061473f826146d8565b604082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b60006147758261367d565b91506147808361367d565b925082821015614793576147926142e6565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147d88261367d565b91506147e38361367d565b9250826147f3576147f261479e565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d696e743a20457863656564656420746865206c696d6974207065722077616c60008201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b600061488960238361371e565b91506148948261482d565b604082019050919050565b600060208201905081810360008301526148b88161487c565b9050919050565b7f6d696e743a204e6f7420656e6f75676820746f6b656e73206c65667400000000600082015250565b60006148f5601c8361371e565b9150614900826148bf565b602082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f6d696e743a204e6f7420656e6f7567682065746865722073656e740000000000600082015250565b6000614961601b8361371e565b915061496c8261492b565b602082019050919050565b6000602082019050818103600083015261499081614954565b9050919050565b600081905092915050565b60006149ad82613713565b6149b78185614997565b93506149c781856020860161372f565b80840191505092915050565b60006149df82856149a2565b91506149eb82846149a2565b91508190509392505050565b7f757064617465574c526f6f744465763a2073656e646572206973206e6f74206460008201527f6576000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a5360228361371e565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ae560268361371e565b9150614af082614a89565b604082019050919050565b60006020820190508181036000830152614b1481614ad8565b9050919050565b7f61697244726f703a204e6f7420656e6f75676820746f6b656e7320746f20616960008201527f7264726f70000000000000000000000000000000000000000000000000000000602082015250565b6000614b7760258361371e565b9150614b8282614b1b565b604082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b6000614bb88261367d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614bea57614be96142e6565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c2b60208361371e565b9150614c3682614bf5565b602082019050919050565b60006020820190508181036000830152614c5a81614c1e565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614c9760108361371e565b9150614ca282614c61565b602082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614d0360148361371e565b9150614d0e82614ccd565b602082019050919050565b60006020820190508181036000830152614d3281614cf6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d6082614d39565b614d6a8185614d44565b9350614d7a81856020860161372f565b614d8381613762565b840191505092915050565b6000608082019050614da3600083018761382d565b614db0602083018661382d565b614dbd60408301856138c3565b8181036060830152614dcf8184614d55565b905095945050505050565b600081519050614de98161353c565b92915050565b600060208284031215614e0557614e04613506565b5b6000614e1384828501614dda565b9150509291505056fea2646970667358221220eef4db47cd7cb9b08e27f1c21a3ff270670e98b3b3be1ea1a0f16e38c701e30364736f6c634300080d0033

Deployed Bytecode Sourcemap

80132:4838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38012:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80840:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81487:738;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38914:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45405:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44838:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34665:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80663:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83093:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84250:98;;;;;;;;;;;;;:::i;:::-;;80265:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84560:405;;;;;;;;;;;;;:::i;:::-;;83332:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80626:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80390:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84154:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84356:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75235:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15926:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40307:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80461:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35849:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18791:103;;;;;;;;;;;;;:::i;:::-;;80702:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82616:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80427:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79111:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18143:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83962:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80518:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39090:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76151:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80588:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80304:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81050:429;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45963:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83579:264;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74648:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80345:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39300:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80229:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82715:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46354:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84456:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19049:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84056:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83866:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82233:375;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38012:639;38097:4;38436:10;38421:25;;:11;:25;;;;:102;;;;38513:10;38498:25;;:11;:25;;;;38421:102;:179;;;;38590:10;38575:25;;:11;:25;;;;38421:179;38401:199;;38012:639;;;:::o;80840:202::-;80905:4;80922:12;80964:10;80947:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;80937:39;;;;;;80922:54;;80994:40;81013:6;;80994:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81021:6;;81029:4;80994:18;:40::i;:::-;80987:47;;;80840:202;;;;:::o;81487:738::-;81603:4;81591:16;;:8;;;;;;;;;;;:16;;;81583:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;81714:9;;81685:25;81699:10;81685:13;:25::i;:::-;81674:8;:36;;;;:::i;:::-;:49;;81666:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;81819:10;;81807:8;81791:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;81783:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;81914:8;81904:7;;:18;;;;:::i;:::-;81890:9;:33;;81882:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;81977:12;82019:10;82002:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;81992:39;;;;;;81977:54;;82050:40;82069:6;;82050:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82077:6;;82085:4;82050:18;:40::i;:::-;82042:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;82167:8;82150:13;;:25;;;;;;;:::i;:::-;;;;;;;;82186:31;82196:10;82208:8;82186:9;:31::i;:::-;81572:653;81487:738;;;:::o;38914:100::-;38968:13;39001:5;38994:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38914:100;:::o;45405:218::-;45481:7;45506:16;45514:7;45506;:16::i;:::-;45501:64;;45531:34;;;;;;;;;;;;;;45501:64;45585:15;:24;45601:7;45585:24;;;;;;;;;;;:30;;;;;;;;;;;;45578:37;;45405:218;;;:::o;44838:408::-;44927:13;44943:16;44951:7;44943;:16::i;:::-;44927:32;;44999:5;44976:28;;:19;:17;:19::i;:::-;:28;;;44972:175;;45024:44;45041:5;45048:19;:17;:19::i;:::-;45024:16;:44::i;:::-;45019:128;;45096:35;;;;;;;;;;;;;;45019:128;44972:175;45192:2;45159:15;:24;45175:7;45159:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45230:7;45226:2;45210:28;;45219:5;45210:28;;;;;;;;;;;;44916:330;44838:408;;:::o;34665:323::-;34726:7;34954:15;:13;:15::i;:::-;34939:12;;34923:13;;:28;:46;34916:53;;34665:323;:::o;80663:32::-;;;;:::o;83093:231::-;83257:4;3641:1;2455:42;3595:43;;;:47;3591:699;;;3882:10;3874:18;;:4;:18;;;3870:85;;83279:37:::1;83298:4;83304:2;83308:7;83279:18;:37::i;:::-;3933:7:::0;;3870:85;2455:42;4015:40;;;4064:4;4071:10;4015:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2455:42;4111:40;;;4160:4;4167;4111:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4015:157;3969:310;;4252:10;4233:30;;;;;;;;;;;:::i;:::-;;;;;;;;3969:310;3591:699;83279:37:::1;83298:4;83304:2;83308:7;83279:18;:37::i;:::-;83093:231:::0;;;;;:::o;84250:98::-;18029:13;:11;:13::i;:::-;84308:8:::1;:6;:8::i;:::-;:32;;84332:8;:6;:8::i;:::-;84308:32;;;84319:10;:8;:10::i;:::-;84308:32;84250:98::o:0;80265:32::-;;;;:::o;84560:405::-;18029:13;:11;:13::i;:::-;84642:1:::1;84618:21;:25;84610:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;84709:15;84727:21;84709:39;;84759:16;84808:3;84797:6;;84791:3;:12;;;;:::i;:::-;84780:7;:24;;;;:::i;:::-;84779:32;;;;:::i;:::-;84759:53;;84823:14;84864:3;84853:6;;84842:7;:18;;;;:::i;:::-;84841:26;;;;:::i;:::-;84823:45;;84887:10;84879:28;;:38;84908:8;84879:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;84936:3;;;;;;;;;;;84928:21;;:29;84950:6;84928:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;84599:366;;;84560:405::o:0;83332:239::-;83500:4;3641:1;2455:42;3595:43;;;:47;3591:699;;;3882:10;3874:18;;:4;:18;;;3870:85;;83522:41:::1;83545:4;83551:2;83555:7;83522:22;:41::i;:::-;3933:7:::0;;3870:85;2455:42;4015:40;;;4064:4;4071:10;4015:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2455:42;4111:40;;;4160:4;4167;4111:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4015:157;3969:310;;4252:10;4233:30;;;;;;;;;;;:::i;:::-;;;;;;;;3969:310;3591:699;83522:41:::1;83545:4;83551:2;83555:7;83522:22;:41::i;:::-;83332:239:::0;;;;;:::o;80626:30::-;;;;:::o;80390:28::-;;;;;;;;;;;;;:::o;84154:88::-;18029:13;:11;:13::i;:::-;84230:4:::1;84218:9;:16;;;;84154:88:::0;:::o;84356:92::-;18029:13;:11;:13::i;:::-;84436:4:::1;84426:7;:14;;;;;;;;;;;;:::i;:::-;;84356:92:::0;:::o;75235:528::-;75379:23;75445:22;75470:8;;:15;;75445:40;;75500:34;75558:14;75537:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;75500:73;;75593:9;75588:125;75609:14;75604:1;:19;75588:125;;75665:32;75685:8;;75694:1;75685:11;;;;;;;:::i;:::-;;;;;;;;75665:19;:32::i;:::-;75649:10;75660:1;75649:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;75625:3;;;;;75588:125;;;;75734:10;75727:17;;;;75235:528;;;;:::o;15926:86::-;15973:4;15997:7;;;;;;;;;;;15990:14;;15926:86;:::o;40307:152::-;40379:7;40422:27;40441:7;40422:18;:27::i;:::-;40399:52;;40307:152;;;:::o;80461:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35849:233::-;35921:7;35962:1;35945:19;;:5;:19;;;35941:60;;35973:28;;;;;;;;;;;;;;35941:60;30008:13;36019:18;:25;36038:5;36019:25;;;;;;;;;;;;;;;;:55;36012:62;;35849:233;;;:::o;18791:103::-;18029:13;:11;:13::i;:::-;18856:30:::1;18883:1;18856:18;:30::i;:::-;18791:103::o:0;80702:33::-;;;;:::o;82616:93::-;18029:13;:11;:13::i;:::-;82694:7:::1;82685:6;:16;;;;82616:93:::0;:::o;80427:21::-;;;;:::o;79111:900::-;79189:16;79243:19;79277:25;79317:22;79342:16;79352:5;79342:9;:16::i;:::-;79317:41;;79373:25;79415:14;79401:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79373:57;;79445:31;;:::i;:::-;79496:9;79508:15;:13;:15::i;:::-;79496:27;;79491:472;79540:14;79525:11;:29;79491:472;;79592:15;79605:1;79592:12;:15::i;:::-;79580:27;;79630:9;:16;;;79671:8;79626:73;79747:1;79721:28;;:9;:14;;;:28;;;79717:111;;79794:9;:14;;;79774:34;;79717:111;79871:5;79850:26;;:17;:26;;;79846:102;;79927:1;79901:8;79910:13;;;;;;79901:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;79846:102;79491:472;79556:3;;;;;79491:472;;;;79984:8;79977:15;;;;;;;79111:900;;;:::o;18143:87::-;18189:7;18216:6;;;;;;;;;;;18209:13;;18143:87;:::o;83962:86::-;18029:13;:11;:13::i;:::-;84034:6:::1;84026:5;:14;;;;83962:86:::0;:::o;80518:63::-;;;;;;;;;;;;;:::o;39090:104::-;39146:13;39179:7;39172:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39090:104;:::o;76151:2513::-;76294:16;76361:4;76352:5;:13;76348:45;;76374:19;;;;;;;;;;;;;;76348:45;76408:19;76442:17;76462:14;:12;:14::i;:::-;76442:34;;76562:15;:13;:15::i;:::-;76554:5;:23;76550:87;;;76606:15;:13;:15::i;:::-;76598:23;;76550:87;76713:9;76706:4;:16;76702:73;;;76750:9;76743:16;;76702:73;76789:25;76817:16;76827:5;76817:9;:16::i;:::-;76789:44;;77011:4;77003:5;:12;76999:278;;;77036:19;77065:5;77058:4;:12;77036:34;;77107:17;77093:11;:31;77089:111;;;77169:11;77149:31;;77089:111;77017:198;76999:278;;;77260:1;77240:21;;76999:278;77291:25;77333:17;77319:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77291:60;;77391:1;77370:17;:22;77366:78;;77420:8;77413:15;;;;;;;;77366:78;77588:31;77622:26;77642:5;77622:19;:26::i;:::-;77588:60;;77663:25;77908:9;:16;;;77903:92;;77965:9;:14;;;77945:34;;77903:92;78014:9;78026:5;78014:17;;78009:478;78038:4;78033:1;:9;;:45;;;;;78061:17;78046:11;:32;;78033:45;78009:478;;;78116:15;78129:1;78116:12;:15::i;:::-;78104:27;;78154:9;:16;;;78195:8;78150:73;78271:1;78245:28;;:9;:14;;;:28;;;78241:111;;78318:9;:14;;;78298:34;;78241:111;78395:5;78374:26;;:17;:26;;;78370:102;;78451:1;78425:8;78434:13;;;;;;78425:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;78370:102;78009:478;78080:3;;;;;78009:478;;;;78589:11;78579:8;78572:29;78637:8;78630:15;;;;;;;;76151:2513;;;;;;:::o;80588:26::-;;;;:::o;80304:34::-;;;;:::o;81050:429::-;15531:19;:17;:19::i;:::-;81172:9:::1;;81143:25;81157:10;81143:13;:25::i;:::-;81132:8;:36;;;;:::i;:::-;:49;;81124:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;81268:10;;81256:8;81240:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;81232:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;81352:8;81344:5;;:16;;;;:::i;:::-;81330:9;:31;;81322:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;81421:8;81406:11;;:23;;;;;;;:::i;:::-;;;;;;;;81440:31;81450:10;81462:8;81440:9;:31::i;:::-;81050:429:::0;:::o;45963:234::-;46110:8;46058:18;:39;46077:19;:17;:19::i;:::-;46058:39;;;;;;;;;;;;;;;:49;46098:8;46058:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;46170:8;46134:55;;46149:19;:17;:19::i;:::-;46134:55;;;46180:8;46134:55;;;;;;:::i;:::-;;;;;;;;45963:234;;:::o;83579:264::-;83766:4;3641:1;2455:42;3595:43;;;:47;3591:699;;;3882:10;3874:18;;:4;:18;;;3870:85;;83788:47:::1;83811:4;83817:2;83821:7;83830:4;83788:22;:47::i;:::-;3933:7:::0;;3870:85;2455:42;4015:40;;;4064:4;4071:10;4015:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2455:42;4111:40;;;4160:4;4167;4111:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4015:157;3969:310;;4252:10;4233:30;;;;;;;;;;;:::i;:::-;;;;;;;;3969:310;3591:699;83788:47:::1;83811:4;83817:2;83821:7;83830:4;83788:22;:47::i;:::-;83579:264:::0;;;;;;:::o;74648:428::-;74732:21;;:::i;:::-;74766:31;;:::i;:::-;74822:15;:13;:15::i;:::-;74812:7;:25;:54;;;;74852:14;:12;:14::i;:::-;74841:7;:25;;74812:54;74808:103;;;74890:9;74883:16;;;;;74808:103;74933:21;74946:7;74933:12;:21::i;:::-;74921:33;;74969:9;:16;;;74965:65;;;75009:9;75002:16;;;;;74965:65;75047:21;75060:7;75047:12;:21::i;:::-;75040:28;;;74648:428;;;;:::o;80345:36::-;;;;:::o;39300:318::-;39373:13;39404:16;39412:7;39404;:16::i;:::-;39399:59;;39429:29;;;;;;;;;;;;;;39399:59;39471:21;39495:10;:8;:10::i;:::-;39471:34;;39548:1;39529:7;39523:21;:26;:87;;;;;;;;;;;;;;;;;39576:7;39585:18;39595:7;39585:9;:18::i;:::-;39559:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39523:87;39516:94;;;39300:318;;;:::o;80229:29::-;;;;:::o;82715:161::-;82799:3;;;;;;;;;;;82785:17;;:10;:17;;;82777:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;82861:7;82852:6;:16;;;;82715:161;:::o;46354:164::-;46451:4;46475:18;:25;46494:5;46475:25;;;;;;;;;;;;;;;:35;46501:8;46475:35;;;;;;;;;;;;;;;;;;;;;;;;;46468:42;;46354:164;;;;:::o;84456:94::-;18029:13;:11;:13::i;:::-;84538:4:::1;84525:10;:17;;;;84456:94:::0;:::o;19049:201::-;18029:13;:11;:13::i;:::-;19158:1:::1;19138:22;;:8;:22;;::::0;19130:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19214:28;19233:8;19214:18;:28::i;:::-;19049:201:::0;:::o;84056:90::-;18029:13;:11;:13::i;:::-;84132:6:::1;84122:7;:16;;;;84056:90:::0;:::o;83866:88::-;18029:13;:11;:13::i;:::-;83941:5:::1;83930:8;;:16;;;;;;;;;;;;;;;;;;83866:88:::0;:::o;82233:375::-;18029:13;:11;:13::i;:::-;82324:11:::1;82338:5;;:12;;82324:26;;82405:10;;82397:3;82386:8;:14;;;;:::i;:::-;82369:13;:11;:13::i;:::-;:32;;;;:::i;:::-;:46;;82361:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;82497:3;82486:8;:14;;;;:::i;:::-;82468;;:32;;;;;;;:::i;:::-;;;;;;;;82516:9;82511:90;82535:3;82531:1;:7;82511:90;;;82560:29;82570:5;;82576:1;82570:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;82580;82560:9;:29::i;:::-;82540:3;;;;;:::i;:::-;;;;82511:90;;;;82313:295;82233:375:::0;;;:::o;5854:190::-;5979:4;6032;6003:25;6016:5;6023:4;6003:12;:25::i;:::-;:33;5996:40;;5854:190;;;;;:::o;36164:178::-;36225:7;30008:13;30146:2;36253:18;:25;36272:5;36253:25;;;;;;;;;;;;;;;;:50;;36252:82;36245:89;;36164:178;;;:::o;62916:112::-;62993:27;63003:2;63007:8;62993:27;;;;;;;;;;;;:9;:27::i;:::-;62916:112;;:::o;46776:282::-;46841:4;46897:7;46878:15;:13;:15::i;:::-;:26;;:66;;;;;46931:13;;46921:7;:23;46878:66;:153;;;;;47030:1;30784:8;46982:17;:26;47000:7;46982:26;;;;;;;;;;;;:44;:49;46878:153;46858:173;;46776:282;;;:::o;69084:105::-;69144:7;69171:10;69164:17;;69084:105;:::o;82992:93::-;83049:7;83076:1;83069:8;;82992:93;:::o;49044:2825::-;49186:27;49216;49235:7;49216:18;:27::i;:::-;49186:57;;49301:4;49260:45;;49276:19;49260:45;;;49256:86;;49314:28;;;;;;;;;;;;;;49256:86;49356:27;49385:23;49412:35;49439:7;49412:26;:35::i;:::-;49355:92;;;;49547:68;49572:15;49589:4;49595:19;:17;:19::i;:::-;49547:24;:68::i;:::-;49542:180;;49635:43;49652:4;49658:19;:17;:19::i;:::-;49635:16;:43::i;:::-;49630:92;;49687:35;;;;;;;;;;;;;;49630:92;49542:180;49753:1;49739:16;;:2;:16;;;49735:52;;49764:23;;;;;;;;;;;;;;49735:52;49800:43;49822:4;49828:2;49832:7;49841:1;49800:21;:43::i;:::-;49936:15;49933:160;;;50076:1;50055:19;50048:30;49933:160;50473:18;:24;50492:4;50473:24;;;;;;;;;;;;;;;;50471:26;;;;;;;;;;;;50542:18;:22;50561:2;50542:22;;;;;;;;;;;;;;;;50540:24;;;;;;;;;;;50864:146;50901:2;50950:45;50965:4;50971:2;50975:19;50950:14;:45::i;:::-;31064:8;50922:73;50864:18;:146::i;:::-;50835:17;:26;50853:7;50835:26;;;;;;;;;;;:175;;;;51181:1;31064:8;51130:19;:47;:52;51126:627;;51203:19;51235:1;51225:7;:11;51203:33;;51392:1;51358:17;:30;51376:11;51358:30;;;;;;;;;;;;:35;51354:384;;51496:13;;51481:11;:28;51477:242;;51676:19;51643:17;:30;51661:11;51643:30;;;;;;;;;;;:52;;;;51477:242;51354:384;51184:569;51126:627;51800:7;51796:2;51781:27;;51790:4;51781:27;;;;;;;;;;;;51819:42;51840:4;51846:2;51850:7;51859:1;51819:20;:42::i;:::-;49175:2694;;;49044:2825;;;:::o;18308:132::-;18383:12;:10;:12::i;:::-;18372:23;;:7;:5;:7::i;:::-;:23;;;18364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18308:132::o;16522:118::-;15531:19;:17;:19::i;:::-;16592:4:::1;16582:7;;:14;;;;;;;;;;;;;;;;;;16612:20;16619:12;:10;:12::i;:::-;16612:20;;;;;;:::i;:::-;;;;;;;;16522:118::o:0;16781:120::-;15790:16;:14;:16::i;:::-;16850:5:::1;16840:7;;:15;;;;;;;;;;;;;;;;;;16871:22;16880:12;:10;:12::i;:::-;16871:22;;;;;;:::i;:::-;;;;;;;;16781:120::o:0;51965:193::-;52111:39;52128:4;52134:2;52138:7;52111:39;;;;;;;;;;;;:16;:39::i;:::-;51965:193;;;:::o;41462:1275::-;41529:7;41549:12;41564:7;41549:22;;41632:4;41613:15;:13;:15::i;:::-;:23;41609:1061;;41666:13;;41659:4;:20;41655:1015;;;41704:14;41721:17;:23;41739:4;41721:23;;;;;;;;;;;;41704:40;;41838:1;30784:8;41810:6;:24;:29;41806:845;;42475:113;42492:1;42482:6;:11;42475:113;;42535:17;:25;42553:6;;;;;;;42535:25;;;;;;;;;;;;42526:34;;42475:113;;;42621:6;42614:13;;;;;;41806:845;41681:989;41655:1015;41609:1061;42698:31;;;;;;;;;;;;;;41462:1275;;;;:::o;19410:191::-;19484:16;19503:6;;;;;;;;;;;19484:25;;19529:8;19520:6;;:17;;;;;;;;;;;;;;;;;;19584:8;19553:40;;19574:8;19553:40;;;;;;;;;;;;19473:128;19410:191;:::o;40910:161::-;40978:21;;:::i;:::-;41019:44;41038:17;:24;41056:5;41038:24;;;;;;;;;;;;41019:18;:44::i;:::-;41012:51;;40910:161;;;:::o;34352:103::-;34407:7;34434:13;;34427:20;;34352:103;:::o;16085:108::-;16156:8;:6;:8::i;:::-;16155:9;16147:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;16085:108::o;52756:407::-;52931:31;52944:4;52950:2;52954:7;52931:12;:31::i;:::-;52995:1;52977:2;:14;;;:19;52973:183;;53016:56;53047:4;53053:2;53057:7;53066:5;53016:30;:56::i;:::-;53011:145;;53100:40;;;;;;;;;;;;;;53011:145;52973:183;52756:407;;;;:::o;40648:166::-;40718:21;;:::i;:::-;40759:47;40778:27;40797:7;40778:18;:27::i;:::-;40759:18;:47::i;:::-;40752:54;;40648:166;;;:::o;82884:100::-;82936:13;82969:7;82962:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82884:100;:::o;69291:1745::-;69356:17;69790:4;69783;69777:11;69773:22;69882:1;69876:4;69869:15;69957:4;69954:1;69950:12;69943:19;;70039:1;70034:3;70027:14;70143:3;70382:5;70364:428;70390:1;70364:428;;;70430:1;70425:3;70421:11;70414:18;;70601:2;70595:4;70591:13;70587:2;70583:22;70578:3;70570:36;70695:2;70689:4;70685:13;70677:21;;70762:4;70364:428;70752:25;70364:428;70368:21;70831:3;70826;70822:13;70946:4;70941:3;70937:14;70930:21;;71011:6;71006:3;70999:19;69395:1634;;;69291:1745;;;:::o;6721:296::-;6804:7;6824:20;6847:4;6824:27;;6867:9;6862:118;6886:5;:12;6882:1;:16;6862:118;;;6935:33;6945:12;6959:5;6965:1;6959:8;;;;;;;;:::i;:::-;;;;;;;;6935:9;:33::i;:::-;6920:48;;6900:3;;;;;:::i;:::-;;;;6862:118;;;;6997:12;6990:19;;;6721:296;;;;:::o;62143:689::-;62274:19;62280:2;62284:8;62274:5;:19::i;:::-;62353:1;62335:2;:14;;;:19;62331:483;;62375:11;62389:13;;62375:27;;62421:13;62443:8;62437:3;:14;62421:30;;62470:233;62501:62;62540:1;62544:2;62548:7;;;;;;62557:5;62501:30;:62::i;:::-;62496:167;;62599:40;;;;;;;;;;;;;;62496:167;62698:3;62690:5;:11;62470:233;;62785:3;62768:13;;:20;62764:34;;62790:8;;;62764:34;62356:458;;62331:483;62143:689;;;:::o;47939:485::-;48041:27;48070:23;48111:38;48152:15;:24;48168:7;48152:24;;;;;;;;;;;48111:65;;48329:18;48306:41;;48386:19;48380:26;48361:45;;48291:126;47939:485;;;:::o;47167:659::-;47316:11;47481:16;47474:5;47470:28;47461:37;;47641:16;47630:9;47626:32;47613:45;;47791:15;47780:9;47777:30;47769:5;47758:9;47755:20;47752:56;47742:66;;47167:659;;;;;:::o;53825:159::-;;;;;:::o;68393:311::-;68528:7;68548:16;31188:3;68574:19;:41;;68548:68;;31188:3;68642:31;68653:4;68659:2;68663:9;68642:10;:31::i;:::-;68634:40;;:62;;68627:69;;;68393:311;;;;;:::o;43285:450::-;43365:14;43533:16;43526:5;43522:28;43513:37;;43710:5;43696:11;43671:23;43667:41;43664:52;43657:5;43654:63;43644:73;;43285:450;;;;:::o;54649:158::-;;;;;:::o;14039:98::-;14092:7;14119:10;14112:17;;14039:98;:::o;16270:108::-;16337:8;:6;:8::i;:::-;16329:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;16270:108::o;42836:366::-;42902:31;;:::i;:::-;42979:6;42946:9;:14;;:41;;;;;;;;;;;30667:3;43032:6;:33;;42998:9;:24;;:68;;;;;;;;;;;43124:1;30784:8;43096:6;:24;:29;;43077:9;:16;;:48;;;;;;;;;;;31188:3;43165:6;:28;;43136:9;:19;;:58;;;;;;;;;;;42836:366;;;:::o;55247:716::-;55410:4;55456:2;55431:45;;;55477:19;:17;:19::i;:::-;55498:4;55504:7;55513:5;55431:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55427:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55731:1;55714:6;:13;:18;55710:235;;55760:40;;;;;;;;;;;;;;55710:235;55903:6;55897:13;55888:6;55884:2;55880:15;55873:38;55427:529;55600:54;;;55590:64;;;:6;:64;;;;55583:71;;;55247:716;;;;;;:::o;12928:149::-;12991:7;13022:1;13018;:5;:51;;13049:20;13064:1;13067;13049:14;:20::i;:::-;13018:51;;;13026:20;13041:1;13044;13026:14;:20::i;:::-;13018:51;13011:58;;12928:149;;;;:::o;56425:2966::-;56498:20;56521:13;;56498:36;;56561:1;56549:8;:13;56545:44;;56571:18;;;;;;;;;;;;;;56545:44;56602:61;56632:1;56636:2;56640:12;56654:8;56602:21;:61::i;:::-;57146:1;30146:2;57116:1;:26;;57115:32;57103:8;:45;57077:18;:22;57096:2;57077:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;57425:139;57462:2;57516:33;57539:1;57543:2;57547:1;57516:14;:33::i;:::-;57483:30;57504:8;57483:20;:30::i;:::-;:66;57425:18;:139::i;:::-;57391:17;:31;57409:12;57391:31;;;;;;;;;;;:173;;;;57581:16;57612:11;57641:8;57626:12;:23;57612:37;;58162:16;58158:2;58154:25;58142:37;;58534:12;58494:8;58453:1;58391:25;58332:1;58271;58244:335;58905:1;58891:12;58887:20;58845:346;58946:3;58937:7;58934:16;58845:346;;59164:7;59154:8;59151:1;59124:25;59121:1;59118;59113:59;58999:1;58990:7;58986:15;58975:26;;58845:346;;;58849:77;59236:1;59224:8;:13;59220:45;;59246:19;;;;;;;;;;;;;;59220:45;59298:3;59282:13;:19;;;;56851:2462;;59323:60;59352:1;59356:2;59360:12;59374:8;59323:20;:60::i;:::-;56487:2904;56425:2966;;:::o;68094:147::-;68231:6;68094:147;;;;;:::o;13085:268::-;13153:13;13260:1;13254:4;13247:15;13289:1;13283:4;13276:15;13330:4;13324;13314:21;13305:30;;13085:268;;;;:::o;43837:324::-;43907:14;44140:1;44130:8;44127:15;44101:24;44097:46;44087:56;;43837:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:117::-;1627:1;1624;1617:12;1641:117;1750:1;1747;1740:12;1764:117;1873:1;1870;1863:12;1904:568;1977:8;1987:6;2037:3;2030:4;2022:6;2018:17;2014:27;2004:122;;2045:79;;:::i;:::-;2004:122;2158:6;2145:20;2135:30;;2188:18;2180:6;2177:30;2174:117;;;2210:79;;:::i;:::-;2174:117;2324:4;2316:6;2312:17;2300:29;;2378:3;2370:4;2362:6;2358:17;2348:8;2344:32;2341:41;2338:128;;;2385:79;;:::i;:::-;2338:128;1904:568;;;;;:::o;2478:559::-;2564:6;2572;2621:2;2609:9;2600:7;2596:23;2592:32;2589:119;;;2627:79;;:::i;:::-;2589:119;2775:1;2764:9;2760:17;2747:31;2805:18;2797:6;2794:30;2791:117;;;2827:79;;:::i;:::-;2791:117;2940:80;3012:7;3003:6;2992:9;2988:22;2940:80;:::i;:::-;2922:98;;;;2718:312;2478:559;;;;;:::o;3043:77::-;3080:7;3109:5;3098:16;;3043:77;;;:::o;3126:122::-;3199:24;3217:5;3199:24;:::i;:::-;3192:5;3189:35;3179:63;;3238:1;3235;3228:12;3179:63;3126:122;:::o;3254:139::-;3300:5;3338:6;3325:20;3316:29;;3354:33;3381:5;3354:33;:::i;:::-;3254:139;;;;:::o;3399:704::-;3494:6;3502;3510;3559:2;3547:9;3538:7;3534:23;3530:32;3527:119;;;3565:79;;:::i;:::-;3527:119;3685:1;3710:53;3755:7;3746:6;3735:9;3731:22;3710:53;:::i;:::-;3700:63;;3656:117;3840:2;3829:9;3825:18;3812:32;3871:18;3863:6;3860:30;3857:117;;;3893:79;;:::i;:::-;3857:117;4006:80;4078:7;4069:6;4058:9;4054:22;4006:80;:::i;:::-;3988:98;;;;3783:313;3399:704;;;;;:::o;4109:99::-;4161:6;4195:5;4189:12;4179:22;;4109:99;;;:::o;4214:169::-;4298:11;4332:6;4327:3;4320:19;4372:4;4367:3;4363:14;4348:29;;4214:169;;;;:::o;4389:307::-;4457:1;4467:113;4481:6;4478:1;4475:13;4467:113;;;4566:1;4561:3;4557:11;4551:18;4547:1;4542:3;4538:11;4531:39;4503:2;4500:1;4496:10;4491:15;;4467:113;;;4598:6;4595:1;4592:13;4589:101;;;4678:1;4669:6;4664:3;4660:16;4653:27;4589:101;4438:258;4389:307;;;:::o;4702:102::-;4743:6;4794:2;4790:7;4785:2;4778:5;4774:14;4770:28;4760:38;;4702:102;;;:::o;4810:364::-;4898:3;4926:39;4959:5;4926:39;:::i;:::-;4981:71;5045:6;5040:3;4981:71;:::i;:::-;4974:78;;5061:52;5106:6;5101:3;5094:4;5087:5;5083:16;5061:52;:::i;:::-;5138:29;5160:6;5138:29;:::i;:::-;5133:3;5129:39;5122:46;;4902:272;4810:364;;;;:::o;5180:313::-;5293:4;5331:2;5320:9;5316:18;5308:26;;5380:9;5374:4;5370:20;5366:1;5355:9;5351:17;5344:47;5408:78;5481:4;5472:6;5408:78;:::i;:::-;5400:86;;5180:313;;;;:::o;5499:329::-;5558:6;5607:2;5595:9;5586:7;5582:23;5578:32;5575:119;;;5613:79;;:::i;:::-;5575:119;5733:1;5758:53;5803:7;5794:6;5783:9;5779:22;5758:53;:::i;:::-;5748:63;;5704:117;5499:329;;;;:::o;5834:126::-;5871:7;5911:42;5904:5;5900:54;5889:65;;5834:126;;;:::o;5966:96::-;6003:7;6032:24;6050:5;6032:24;:::i;:::-;6021:35;;5966:96;;;:::o;6068:118::-;6155:24;6173:5;6155:24;:::i;:::-;6150:3;6143:37;6068:118;;:::o;6192:222::-;6285:4;6323:2;6312:9;6308:18;6300:26;;6336:71;6404:1;6393:9;6389:17;6380:6;6336:71;:::i;:::-;6192:222;;;;:::o;6420:122::-;6493:24;6511:5;6493:24;:::i;:::-;6486:5;6483:35;6473:63;;6532:1;6529;6522:12;6473:63;6420:122;:::o;6548:139::-;6594:5;6632:6;6619:20;6610:29;;6648:33;6675:5;6648:33;:::i;:::-;6548:139;;;;:::o;6693:474::-;6761:6;6769;6818:2;6806:9;6797:7;6793:23;6789:32;6786:119;;;6824:79;;:::i;:::-;6786:119;6944:1;6969:53;7014:7;7005:6;6994:9;6990:22;6969:53;:::i;:::-;6959:63;;6915:117;7071:2;7097:53;7142:7;7133:6;7122:9;7118:22;7097:53;:::i;:::-;7087:63;;7042:118;6693:474;;;;;:::o;7173:118::-;7260:24;7278:5;7260:24;:::i;:::-;7255:3;7248:37;7173:118;;:::o;7297:222::-;7390:4;7428:2;7417:9;7413:18;7405:26;;7441:71;7509:1;7498:9;7494:17;7485:6;7441:71;:::i;:::-;7297:222;;;;:::o;7525:619::-;7602:6;7610;7618;7667:2;7655:9;7646:7;7642:23;7638:32;7635:119;;;7673:79;;:::i;:::-;7635:119;7793:1;7818:53;7863:7;7854:6;7843:9;7839:22;7818:53;:::i;:::-;7808:63;;7764:117;7920:2;7946:53;7991:7;7982:6;7971:9;7967:22;7946:53;:::i;:::-;7936:63;;7891:118;8048:2;8074:53;8119:7;8110:6;8099:9;8095:22;8074:53;:::i;:::-;8064:63;;8019:118;7525:619;;;;;:::o;8150:117::-;8259:1;8256;8249:12;8273:180;8321:77;8318:1;8311:88;8418:4;8415:1;8408:15;8442:4;8439:1;8432:15;8459:281;8542:27;8564:4;8542:27;:::i;:::-;8534:6;8530:40;8672:6;8660:10;8657:22;8636:18;8624:10;8621:34;8618:62;8615:88;;;8683:18;;:::i;:::-;8615:88;8723:10;8719:2;8712:22;8502:238;8459:281;;:::o;8746:129::-;8780:6;8807:20;;:::i;:::-;8797:30;;8836:33;8864:4;8856:6;8836:33;:::i;:::-;8746:129;;;:::o;8881:308::-;8943:4;9033:18;9025:6;9022:30;9019:56;;;9055:18;;:::i;:::-;9019:56;9093:29;9115:6;9093:29;:::i;:::-;9085:37;;9177:4;9171;9167:15;9159:23;;8881:308;;;:::o;9195:154::-;9279:6;9274:3;9269;9256:30;9341:1;9332:6;9327:3;9323:16;9316:27;9195:154;;;:::o;9355:412::-;9433:5;9458:66;9474:49;9516:6;9474:49;:::i;:::-;9458:66;:::i;:::-;9449:75;;9547:6;9540:5;9533:21;9585:4;9578:5;9574:16;9623:3;9614:6;9609:3;9605:16;9602:25;9599:112;;;9630:79;;:::i;:::-;9599:112;9720:41;9754:6;9749:3;9744;9720:41;:::i;:::-;9439:328;9355:412;;;;;:::o;9787:340::-;9843:5;9892:3;9885:4;9877:6;9873:17;9869:27;9859:122;;9900:79;;:::i;:::-;9859:122;10017:6;10004:20;10042:79;10117:3;10109:6;10102:4;10094:6;10090:17;10042:79;:::i;:::-;10033:88;;9849:278;9787:340;;;;:::o;10133:509::-;10202:6;10251:2;10239:9;10230:7;10226:23;10222:32;10219:119;;;10257:79;;:::i;:::-;10219:119;10405:1;10394:9;10390:17;10377:31;10435:18;10427:6;10424:30;10421:117;;;10457:79;;:::i;:::-;10421:117;10562:63;10617:7;10608:6;10597:9;10593:22;10562:63;:::i;:::-;10552:73;;10348:287;10133:509;;;;:::o;10665:568::-;10738:8;10748:6;10798:3;10791:4;10783:6;10779:17;10775:27;10765:122;;10806:79;;:::i;:::-;10765:122;10919:6;10906:20;10896:30;;10949:18;10941:6;10938:30;10935:117;;;10971:79;;:::i;:::-;10935:117;11085:4;11077:6;11073:17;11061:29;;11139:3;11131:4;11123:6;11119:17;11109:8;11105:32;11102:41;11099:128;;;11146:79;;:::i;:::-;11099:128;10665:568;;;;;:::o;11239:559::-;11325:6;11333;11382:2;11370:9;11361:7;11357:23;11353:32;11350:119;;;11388:79;;:::i;:::-;11350:119;11536:1;11525:9;11521:17;11508:31;11566:18;11558:6;11555:30;11552:117;;;11588:79;;:::i;:::-;11552:117;11701:80;11773:7;11764:6;11753:9;11749:22;11701:80;:::i;:::-;11683:98;;;;11479:312;11239:559;;;;;:::o;11804:146::-;11903:6;11937:5;11931:12;11921:22;;11804:146;;;:::o;11956:216::-;12087:11;12121:6;12116:3;12109:19;12161:4;12156:3;12152:14;12137:29;;11956:216;;;;:::o;12178:164::-;12277:4;12300:3;12292:11;;12330:4;12325:3;12321:14;12313:22;;12178:164;;;:::o;12348:108::-;12425:24;12443:5;12425:24;:::i;:::-;12420:3;12413:37;12348:108;;:::o;12462:101::-;12498:7;12538:18;12531:5;12527:30;12516:41;;12462:101;;;:::o;12569:105::-;12644:23;12661:5;12644:23;:::i;:::-;12639:3;12632:36;12569:105;;:::o;12680:99::-;12751:21;12766:5;12751:21;:::i;:::-;12746:3;12739:34;12680:99;;:::o;12785:91::-;12821:7;12861:8;12854:5;12850:20;12839:31;;12785:91;;;:::o;12882:105::-;12957:23;12974:5;12957:23;:::i;:::-;12952:3;12945:36;12882:105;;:::o;13065:866::-;13216:4;13211:3;13207:14;13303:4;13296:5;13292:16;13286:23;13322:63;13379:4;13374:3;13370:14;13356:12;13322:63;:::i;:::-;13231:164;13487:4;13480:5;13476:16;13470:23;13506:61;13561:4;13556:3;13552:14;13538:12;13506:61;:::i;:::-;13405:172;13661:4;13654:5;13650:16;13644:23;13680:57;13731:4;13726:3;13722:14;13708:12;13680:57;:::i;:::-;13587:160;13834:4;13827:5;13823:16;13817:23;13853:61;13908:4;13903:3;13899:14;13885:12;13853:61;:::i;:::-;13757:167;13185:746;13065:866;;:::o;13937:307::-;14070:10;14091:110;14197:3;14189:6;14091:110;:::i;:::-;14233:4;14228:3;14224:14;14210:28;;13937:307;;;;:::o;14250:145::-;14352:4;14384;14379:3;14375:14;14367:22;;14250:145;;;:::o;14477:988::-;14660:3;14689:86;14769:5;14689:86;:::i;:::-;14791:118;14902:6;14897:3;14791:118;:::i;:::-;14784:125;;14933:88;15015:5;14933:88;:::i;:::-;15044:7;15075:1;15060:380;15085:6;15082:1;15079:13;15060:380;;;15161:6;15155:13;15188:127;15311:3;15296:13;15188:127;:::i;:::-;15181:134;;15338:92;15423:6;15338:92;:::i;:::-;15328:102;;15120:320;15107:1;15104;15100:9;15095:14;;15060:380;;;15064:14;15456:3;15449:10;;14665:800;;;14477:988;;;;:::o;15471:501::-;15678:4;15716:2;15705:9;15701:18;15693:26;;15765:9;15759:4;15755:20;15751:1;15740:9;15736:17;15729:47;15793:172;15960:4;15951:6;15793:172;:::i;:::-;15785:180;;15471:501;;;;:::o;15978:329::-;16037:6;16086:2;16074:9;16065:7;16061:23;16057:32;16054:119;;;16092:79;;:::i;:::-;16054:119;16212:1;16237:53;16282:7;16273:6;16262:9;16258:22;16237:53;:::i;:::-;16227:63;;16183:117;15978:329;;;;:::o;16313:77::-;16350:7;16379:5;16368:16;;16313:77;;;:::o;16396:122::-;16469:24;16487:5;16469:24;:::i;:::-;16462:5;16459:35;16449:63;;16508:1;16505;16498:12;16449:63;16396:122;:::o;16524:139::-;16570:5;16608:6;16595:20;16586:29;;16624:33;16651:5;16624:33;:::i;:::-;16524:139;;;;:::o;16669:329::-;16728:6;16777:2;16765:9;16756:7;16752:23;16748:32;16745:119;;;16783:79;;:::i;:::-;16745:119;16903:1;16928:53;16973:7;16964:6;16953:9;16949:22;16928:53;:::i;:::-;16918:63;;16874:117;16669:329;;;;:::o;17004:118::-;17091:24;17109:5;17091:24;:::i;:::-;17086:3;17079:37;17004:118;;:::o;17128:222::-;17221:4;17259:2;17248:9;17244:18;17236:26;;17272:71;17340:1;17329:9;17325:17;17316:6;17272:71;:::i;:::-;17128:222;;;;:::o;17356:114::-;17423:6;17457:5;17451:12;17441:22;;17356:114;;;:::o;17476:184::-;17575:11;17609:6;17604:3;17597:19;17649:4;17644:3;17640:14;17625:29;;17476:184;;;;:::o;17666:132::-;17733:4;17756:3;17748:11;;17786:4;17781:3;17777:14;17769:22;;17666:132;;;:::o;17804:108::-;17881:24;17899:5;17881:24;:::i;:::-;17876:3;17869:37;17804:108;;:::o;17918:179::-;17987:10;18008:46;18050:3;18042:6;18008:46;:::i;:::-;18086:4;18081:3;18077:14;18063:28;;17918:179;;;;:::o;18103:113::-;18173:4;18205;18200:3;18196:14;18188:22;;18103:113;;;:::o;18252:732::-;18371:3;18400:54;18448:5;18400:54;:::i;:::-;18470:86;18549:6;18544:3;18470:86;:::i;:::-;18463:93;;18580:56;18630:5;18580:56;:::i;:::-;18659:7;18690:1;18675:284;18700:6;18697:1;18694:13;18675:284;;;18776:6;18770:13;18803:63;18862:3;18847:13;18803:63;:::i;:::-;18796:70;;18889:60;18942:6;18889:60;:::i;:::-;18879:70;;18735:224;18722:1;18719;18715:9;18710:14;;18675:284;;;18679:14;18975:3;18968:10;;18376:608;;;18252:732;;;;:::o;18990:373::-;19133:4;19171:2;19160:9;19156:18;19148:26;;19220:9;19214:4;19210:20;19206:1;19195:9;19191:17;19184:47;19248:108;19351:4;19342:6;19248:108;:::i;:::-;19240:116;;18990:373;;;;:::o;19369:619::-;19446:6;19454;19462;19511:2;19499:9;19490:7;19486:23;19482:32;19479:119;;;19517:79;;:::i;:::-;19479:119;19637:1;19662:53;19707:7;19698:6;19687:9;19683:22;19662:53;:::i;:::-;19652:63;;19608:117;19764:2;19790:53;19835:7;19826:6;19815:9;19811:22;19790:53;:::i;:::-;19780:63;;19735:118;19892:2;19918:53;19963:7;19954:6;19943:9;19939:22;19918:53;:::i;:::-;19908:63;;19863:118;19369:619;;;;;:::o;19994:116::-;20064:21;20079:5;20064:21;:::i;:::-;20057:5;20054:32;20044:60;;20100:1;20097;20090:12;20044:60;19994:116;:::o;20116:133::-;20159:5;20197:6;20184:20;20175:29;;20213:30;20237:5;20213:30;:::i;:::-;20116:133;;;;:::o;20255:468::-;20320:6;20328;20377:2;20365:9;20356:7;20352:23;20348:32;20345:119;;;20383:79;;:::i;:::-;20345:119;20503:1;20528:53;20573:7;20564:6;20553:9;20549:22;20528:53;:::i;:::-;20518:63;;20474:117;20630:2;20656:50;20698:7;20689:6;20678:9;20674:22;20656:50;:::i;:::-;20646:60;;20601:115;20255:468;;;;;:::o;20729:307::-;20790:4;20880:18;20872:6;20869:30;20866:56;;;20902:18;;:::i;:::-;20866:56;20940:29;20962:6;20940:29;:::i;:::-;20932:37;;21024:4;21018;21014:15;21006:23;;20729:307;;;:::o;21042:410::-;21119:5;21144:65;21160:48;21201:6;21160:48;:::i;:::-;21144:65;:::i;:::-;21135:74;;21232:6;21225:5;21218:21;21270:4;21263:5;21259:16;21308:3;21299:6;21294:3;21290:16;21287:25;21284:112;;;21315:79;;:::i;:::-;21284:112;21405:41;21439:6;21434:3;21429;21405:41;:::i;:::-;21125:327;21042:410;;;;;:::o;21471:338::-;21526:5;21575:3;21568:4;21560:6;21556:17;21552:27;21542:122;;21583:79;;:::i;:::-;21542:122;21700:6;21687:20;21725:78;21799:3;21791:6;21784:4;21776:6;21772:17;21725:78;:::i;:::-;21716:87;;21532:277;21471:338;;;;:::o;21815:943::-;21910:6;21918;21926;21934;21983:3;21971:9;21962:7;21958:23;21954:33;21951:120;;;21990:79;;:::i;:::-;21951:120;22110:1;22135:53;22180:7;22171:6;22160:9;22156:22;22135:53;:::i;:::-;22125:63;;22081:117;22237:2;22263:53;22308:7;22299:6;22288:9;22284:22;22263:53;:::i;:::-;22253:63;;22208:118;22365:2;22391:53;22436:7;22427:6;22416:9;22412:22;22391:53;:::i;:::-;22381:63;;22336:118;22521:2;22510:9;22506:18;22493:32;22552:18;22544:6;22541:30;22538:117;;;22574:79;;:::i;:::-;22538:117;22679:62;22733:7;22724:6;22713:9;22709:22;22679:62;:::i;:::-;22669:72;;22464:287;21815:943;;;;;;;:::o;22836:876::-;22997:4;22992:3;22988:14;23084:4;23077:5;23073:16;23067:23;23103:63;23160:4;23155:3;23151:14;23137:12;23103:63;:::i;:::-;23012:164;23268:4;23261:5;23257:16;23251:23;23287:61;23342:4;23337:3;23333:14;23319:12;23287:61;:::i;:::-;23186:172;23442:4;23435:5;23431:16;23425:23;23461:57;23512:4;23507:3;23503:14;23489:12;23461:57;:::i;:::-;23368:160;23615:4;23608:5;23604:16;23598:23;23634:61;23689:4;23684:3;23680:14;23666:12;23634:61;:::i;:::-;23538:167;22966:746;22836:876;;:::o;23718:351::-;23875:4;23913:3;23902:9;23898:19;23890:27;;23927:135;24059:1;24048:9;24044:17;24035:6;23927:135;:::i;:::-;23718:351;;;;:::o;24075:474::-;24143:6;24151;24200:2;24188:9;24179:7;24175:23;24171:32;24168:119;;;24206:79;;:::i;:::-;24168:119;24326:1;24351:53;24396:7;24387:6;24376:9;24372:22;24351:53;:::i;:::-;24341:63;;24297:117;24453:2;24479:53;24524:7;24515:6;24504:9;24500:22;24479:53;:::i;:::-;24469:63;;24424:118;24075:474;;;;;:::o;24555:323::-;24611:6;24660:2;24648:9;24639:7;24635:23;24631:32;24628:119;;;24666:79;;:::i;:::-;24628:119;24786:1;24811:50;24853:7;24844:6;24833:9;24829:22;24811:50;:::i;:::-;24801:60;;24757:114;24555:323;;;;:::o;24901:568::-;24974:8;24984:6;25034:3;25027:4;25019:6;25015:17;25011:27;25001:122;;25042:79;;:::i;:::-;25001:122;25155:6;25142:20;25132:30;;25185:18;25177:6;25174:30;25171:117;;;25207:79;;:::i;:::-;25171:117;25321:4;25313:6;25309:17;25297:29;;25375:3;25367:4;25359:6;25355:17;25345:8;25341:32;25338:41;25335:128;;;25382:79;;:::i;:::-;25335:128;24901:568;;;;;:::o;25475:704::-;25570:6;25578;25586;25635:2;25623:9;25614:7;25610:23;25606:32;25603:119;;;25641:79;;:::i;:::-;25603:119;25789:1;25778:9;25774:17;25761:31;25819:18;25811:6;25808:30;25805:117;;;25841:79;;:::i;:::-;25805:117;25954:80;26026:7;26017:6;26006:9;26002:22;25954:80;:::i;:::-;25936:98;;;;25732:312;26083:2;26109:53;26154:7;26145:6;26134:9;26130:22;26109:53;:::i;:::-;26099:63;;26054:118;25475:704;;;;;:::o;26185:94::-;26218:8;26266:5;26262:2;26258:14;26237:35;;26185:94;;;:::o;26285:::-;26324:7;26353:20;26367:5;26353:20;:::i;:::-;26342:31;;26285:94;;;:::o;26385:100::-;26424:7;26453:26;26473:5;26453:26;:::i;:::-;26442:37;;26385:100;;;:::o;26491:157::-;26596:45;26616:24;26634:5;26616:24;:::i;:::-;26596:45;:::i;:::-;26591:3;26584:58;26491:157;;:::o;26654:256::-;26766:3;26781:75;26852:3;26843:6;26781:75;:::i;:::-;26881:2;26876:3;26872:12;26865:19;;26901:3;26894:10;;26654:256;;;;:::o;26916:230::-;27056:34;27052:1;27044:6;27040:14;27033:58;27125:13;27120:2;27112:6;27108:15;27101:38;26916:230;:::o;27152:366::-;27294:3;27315:67;27379:2;27374:3;27315:67;:::i;:::-;27308:74;;27391:93;27480:3;27391:93;:::i;:::-;27509:2;27504:3;27500:12;27493:19;;27152:366;;;:::o;27524:419::-;27690:4;27728:2;27717:9;27713:18;27705:26;;27777:9;27771:4;27767:20;27763:1;27752:9;27748:17;27741:47;27805:131;27931:4;27805:131;:::i;:::-;27797:139;;27524:419;;;:::o;27949:180::-;27997:77;27994:1;27987:88;28094:4;28091:1;28084:15;28118:4;28115:1;28108:15;28135:305;28175:3;28194:20;28212:1;28194:20;:::i;:::-;28189:25;;28228:20;28246:1;28228:20;:::i;:::-;28223:25;;28382:1;28314:66;28310:74;28307:1;28304:81;28301:107;;;28388:18;;:::i;:::-;28301:107;28432:1;28429;28425:9;28418:16;;28135:305;;;;:::o;28446:231::-;28586:34;28582:1;28574:6;28570:14;28563:58;28655:14;28650:2;28642:6;28638:15;28631:39;28446:231;:::o;28683:366::-;28825:3;28846:67;28910:2;28905:3;28846:67;:::i;:::-;28839:74;;28922:93;29011:3;28922:93;:::i;:::-;29040:2;29035:3;29031:12;29024:19;;28683:366;;;:::o;29055:419::-;29221:4;29259:2;29248:9;29244:18;29236:26;;29308:9;29302:4;29298:20;29294:1;29283:9;29279:17;29272:47;29336:131;29462:4;29336:131;:::i;:::-;29328:139;;29055:419;;;:::o;29480:224::-;29620:34;29616:1;29608:6;29604:14;29597:58;29689:7;29684:2;29676:6;29672:15;29665:32;29480:224;:::o;29710:366::-;29852:3;29873:67;29937:2;29932:3;29873:67;:::i;:::-;29866:74;;29949:93;30038:3;29949:93;:::i;:::-;30067:2;30062:3;30058:12;30051:19;;29710:366;;;:::o;30082:419::-;30248:4;30286:2;30275:9;30271:18;30263:26;;30335:9;30329:4;30325:20;30321:1;30310:9;30306:17;30299:47;30363:131;30489:4;30363:131;:::i;:::-;30355:139;;30082:419;;;:::o;30507:348::-;30547:7;30570:20;30588:1;30570:20;:::i;:::-;30565:25;;30604:20;30622:1;30604:20;:::i;:::-;30599:25;;30792:1;30724:66;30720:74;30717:1;30714:81;30709:1;30702:9;30695:17;30691:105;30688:131;;;30799:18;;:::i;:::-;30688:131;30847:1;30844;30840:9;30829:20;;30507:348;;;;:::o;30861:223::-;31001:34;30997:1;30989:6;30985:14;30978:58;31070:6;31065:2;31057:6;31053:15;31046:31;30861:223;:::o;31090:366::-;31232:3;31253:67;31317:2;31312:3;31253:67;:::i;:::-;31246:74;;31329:93;31418:3;31329:93;:::i;:::-;31447:2;31442:3;31438:12;31431:19;;31090:366;;;:::o;31462:419::-;31628:4;31666:2;31655:9;31651:18;31643:26;;31715:9;31709:4;31705:20;31701:1;31690:9;31686:17;31679:47;31743:131;31869:4;31743:131;:::i;:::-;31735:139;;31462:419;;;:::o;31887:229::-;32027:34;32023:1;32015:6;32011:14;32004:58;32096:12;32091:2;32083:6;32079:15;32072:37;31887:229;:::o;32122:366::-;32264:3;32285:67;32349:2;32344:3;32285:67;:::i;:::-;32278:74;;32361:93;32450:3;32361:93;:::i;:::-;32479:2;32474:3;32470:12;32463:19;;32122:366;;;:::o;32494:419::-;32660:4;32698:2;32687:9;32683:18;32675:26;;32747:9;32741:4;32737:20;32733:1;32722:9;32718:17;32711:47;32775:131;32901:4;32775:131;:::i;:::-;32767:139;;32494:419;;;:::o;32919:180::-;32967:77;32964:1;32957:88;33064:4;33061:1;33054:15;33088:4;33085:1;33078:15;33105:320;33149:6;33186:1;33180:4;33176:12;33166:22;;33233:1;33227:4;33223:12;33254:18;33244:81;;33310:4;33302:6;33298:17;33288:27;;33244:81;33372:2;33364:6;33361:14;33341:18;33338:38;33335:84;;33391:18;;:::i;:::-;33335:84;33156:269;33105:320;;;:::o;33431:332::-;33552:4;33590:2;33579:9;33575:18;33567:26;;33603:71;33671:1;33660:9;33656:17;33647:6;33603:71;:::i;:::-;33684:72;33752:2;33741:9;33737:18;33728:6;33684:72;:::i;:::-;33431:332;;;;;:::o;33769:137::-;33823:5;33854:6;33848:13;33839:22;;33870:30;33894:5;33870:30;:::i;:::-;33769:137;;;;:::o;33912:345::-;33979:6;34028:2;34016:9;34007:7;34003:23;33999:32;33996:119;;;34034:79;;:::i;:::-;33996:119;34154:1;34179:61;34232:7;34223:6;34212:9;34208:22;34179:61;:::i;:::-;34169:71;;34125:125;33912:345;;;;:::o;34263:236::-;34403:34;34399:1;34391:6;34387:14;34380:58;34472:19;34467:2;34459:6;34455:15;34448:44;34263:236;:::o;34505:366::-;34647:3;34668:67;34732:2;34727:3;34668:67;:::i;:::-;34661:74;;34744:93;34833:3;34744:93;:::i;:::-;34862:2;34857:3;34853:12;34846:19;;34505:366;;;:::o;34877:419::-;35043:4;35081:2;35070:9;35066:18;35058:26;;35130:9;35124:4;35120:20;35116:1;35105:9;35101:17;35094:47;35158:131;35284:4;35158:131;:::i;:::-;35150:139;;34877:419;;;:::o;35302:191::-;35342:4;35362:20;35380:1;35362:20;:::i;:::-;35357:25;;35396:20;35414:1;35396:20;:::i;:::-;35391:25;;35435:1;35432;35429:8;35426:34;;;35440:18;;:::i;:::-;35426:34;35485:1;35482;35478:9;35470:17;;35302:191;;;;:::o;35499:180::-;35547:77;35544:1;35537:88;35644:4;35641:1;35634:15;35668:4;35665:1;35658:15;35685:185;35725:1;35742:20;35760:1;35742:20;:::i;:::-;35737:25;;35776:20;35794:1;35776:20;:::i;:::-;35771:25;;35815:1;35805:35;;35820:18;;:::i;:::-;35805:35;35862:1;35859;35855:9;35850:14;;35685:185;;;;:::o;35876:180::-;35924:77;35921:1;35914:88;36021:4;36018:1;36011:15;36045:4;36042:1;36035:15;36062:222;36202:34;36198:1;36190:6;36186:14;36179:58;36271:5;36266:2;36258:6;36254:15;36247:30;36062:222;:::o;36290:366::-;36432:3;36453:67;36517:2;36512:3;36453:67;:::i;:::-;36446:74;;36529:93;36618:3;36529:93;:::i;:::-;36647:2;36642:3;36638:12;36631:19;;36290:366;;;:::o;36662:419::-;36828:4;36866:2;36855:9;36851:18;36843:26;;36915:9;36909:4;36905:20;36901:1;36890:9;36886:17;36879:47;36943:131;37069:4;36943:131;:::i;:::-;36935:139;;36662:419;;;:::o;37087:178::-;37227:30;37223:1;37215:6;37211:14;37204:54;37087:178;:::o;37271:366::-;37413:3;37434:67;37498:2;37493:3;37434:67;:::i;:::-;37427:74;;37510:93;37599:3;37510:93;:::i;:::-;37628:2;37623:3;37619:12;37612:19;;37271:366;;;:::o;37643:419::-;37809:4;37847:2;37836:9;37832:18;37824:26;;37896:9;37890:4;37886:20;37882:1;37871:9;37867:17;37860:47;37924:131;38050:4;37924:131;:::i;:::-;37916:139;;37643:419;;;:::o;38068:177::-;38208:29;38204:1;38196:6;38192:14;38185:53;38068:177;:::o;38251:366::-;38393:3;38414:67;38478:2;38473:3;38414:67;:::i;:::-;38407:74;;38490:93;38579:3;38490:93;:::i;:::-;38608:2;38603:3;38599:12;38592:19;;38251:366;;;:::o;38623:419::-;38789:4;38827:2;38816:9;38812:18;38804:26;;38876:9;38870:4;38866:20;38862:1;38851:9;38847:17;38840:47;38904:131;39030:4;38904:131;:::i;:::-;38896:139;;38623:419;;;:::o;39048:148::-;39150:11;39187:3;39172:18;;39048:148;;;;:::o;39202:377::-;39308:3;39336:39;39369:5;39336:39;:::i;:::-;39391:89;39473:6;39468:3;39391:89;:::i;:::-;39384:96;;39489:52;39534:6;39529:3;39522:4;39515:5;39511:16;39489:52;:::i;:::-;39566:6;39561:3;39557:16;39550:23;;39312:267;39202:377;;;;:::o;39585:435::-;39765:3;39787:95;39878:3;39869:6;39787:95;:::i;:::-;39780:102;;39899:95;39990:3;39981:6;39899:95;:::i;:::-;39892:102;;40011:3;40004:10;;39585:435;;;;;:::o;40026:221::-;40166:34;40162:1;40154:6;40150:14;40143:58;40235:4;40230:2;40222:6;40218:15;40211:29;40026:221;:::o;40253:366::-;40395:3;40416:67;40480:2;40475:3;40416:67;:::i;:::-;40409:74;;40492:93;40581:3;40492:93;:::i;:::-;40610:2;40605:3;40601:12;40594:19;;40253:366;;;:::o;40625:419::-;40791:4;40829:2;40818:9;40814:18;40806:26;;40878:9;40872:4;40868:20;40864:1;40853:9;40849:17;40842:47;40906:131;41032:4;40906:131;:::i;:::-;40898:139;;40625:419;;;:::o;41050:225::-;41190:34;41186:1;41178:6;41174:14;41167:58;41259:8;41254:2;41246:6;41242:15;41235:33;41050:225;:::o;41281:366::-;41423:3;41444:67;41508:2;41503:3;41444:67;:::i;:::-;41437:74;;41520:93;41609:3;41520:93;:::i;:::-;41638:2;41633:3;41629:12;41622:19;;41281:366;;;:::o;41653:419::-;41819:4;41857:2;41846:9;41842:18;41834:26;;41906:9;41900:4;41896:20;41892:1;41881:9;41877:17;41870:47;41934:131;42060:4;41934:131;:::i;:::-;41926:139;;41653:419;;;:::o;42078:224::-;42218:34;42214:1;42206:6;42202:14;42195:58;42287:7;42282:2;42274:6;42270:15;42263:32;42078:224;:::o;42308:366::-;42450:3;42471:67;42535:2;42530:3;42471:67;:::i;:::-;42464:74;;42547:93;42636:3;42547:93;:::i;:::-;42665:2;42660:3;42656:12;42649:19;;42308:366;;;:::o;42680:419::-;42846:4;42884:2;42873:9;42869:18;42861:26;;42933:9;42927:4;42923:20;42919:1;42908:9;42904:17;42897:47;42961:131;43087:4;42961:131;:::i;:::-;42953:139;;42680:419;;;:::o;43105:233::-;43144:3;43167:24;43185:5;43167:24;:::i;:::-;43158:33;;43213:66;43206:5;43203:77;43200:103;;43283:18;;:::i;:::-;43200:103;43330:1;43323:5;43319:13;43312:20;;43105:233;;;:::o;43344:182::-;43484:34;43480:1;43472:6;43468:14;43461:58;43344:182;:::o;43532:366::-;43674:3;43695:67;43759:2;43754:3;43695:67;:::i;:::-;43688:74;;43771:93;43860:3;43771:93;:::i;:::-;43889:2;43884:3;43880:12;43873:19;;43532:366;;;:::o;43904:419::-;44070:4;44108:2;44097:9;44093:18;44085:26;;44157:9;44151:4;44147:20;44143:1;44132:9;44128:17;44121:47;44185:131;44311:4;44185:131;:::i;:::-;44177:139;;43904:419;;;:::o;44329:166::-;44469:18;44465:1;44457:6;44453:14;44446:42;44329:166;:::o;44501:366::-;44643:3;44664:67;44728:2;44723:3;44664:67;:::i;:::-;44657:74;;44740:93;44829:3;44740:93;:::i;:::-;44858:2;44853:3;44849:12;44842:19;;44501:366;;;:::o;44873:419::-;45039:4;45077:2;45066:9;45062:18;45054:26;;45126:9;45120:4;45116:20;45112:1;45101:9;45097:17;45090:47;45154:131;45280:4;45154:131;:::i;:::-;45146:139;;44873:419;;;:::o;45298:170::-;45438:22;45434:1;45426:6;45422:14;45415:46;45298:170;:::o;45474:366::-;45616:3;45637:67;45701:2;45696:3;45637:67;:::i;:::-;45630:74;;45713:93;45802:3;45713:93;:::i;:::-;45831:2;45826:3;45822:12;45815:19;;45474:366;;;:::o;45846:419::-;46012:4;46050:2;46039:9;46035:18;46027:26;;46099:9;46093:4;46089:20;46085:1;46074:9;46070:17;46063:47;46127:131;46253:4;46127:131;:::i;:::-;46119:139;;45846:419;;;:::o;46271:98::-;46322:6;46356:5;46350:12;46340:22;;46271:98;;;:::o;46375:168::-;46458:11;46492:6;46487:3;46480:19;46532:4;46527:3;46523:14;46508:29;;46375:168;;;;:::o;46549:360::-;46635:3;46663:38;46695:5;46663:38;:::i;:::-;46717:70;46780:6;46775:3;46717:70;:::i;:::-;46710:77;;46796:52;46841:6;46836:3;46829:4;46822:5;46818:16;46796:52;:::i;:::-;46873:29;46895:6;46873:29;:::i;:::-;46868:3;46864:39;46857:46;;46639:270;46549:360;;;;:::o;46915:640::-;47110:4;47148:3;47137:9;47133:19;47125:27;;47162:71;47230:1;47219:9;47215:17;47206:6;47162:71;:::i;:::-;47243:72;47311:2;47300:9;47296:18;47287:6;47243:72;:::i;:::-;47325;47393:2;47382:9;47378:18;47369:6;47325:72;:::i;:::-;47444:9;47438:4;47434:20;47429:2;47418:9;47414:18;47407:48;47472:76;47543:4;47534:6;47472:76;:::i;:::-;47464:84;;46915:640;;;;;;;:::o;47561:141::-;47617:5;47648:6;47642:13;47633:22;;47664:32;47690:5;47664:32;:::i;:::-;47561:141;;;;:::o;47708:349::-;47777:6;47826:2;47814:9;47805:7;47801:23;47797:32;47794:119;;;47832:79;;:::i;:::-;47794:119;47952:1;47977:63;48032:7;48023:6;48012:9;48008:22;47977:63;:::i;:::-;47967:73;;47923:127;47708:349;;;;:::o

Swarm Source

ipfs://eef4db47cd7cb9b08e27f1c21a3ff270670e98b3b3be1ea1a0f16e38c701e303
Loading...
Loading
Loading...
Loading
[ 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.