ETH Price: $3,335.05 (-3.75%)
Gas: 2 Gwei

Token

KryptoPoker_S1 (KPS1)
 

Overview

Max Total Supply

1,000 KPS1

Holders

477

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yokes1.eth
Balance
2 KPS1
0x4a880b13e60ac6eb57ce8c33a2bb353e1f3dead3
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:
KryptoPoker_S1

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-05
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 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 from 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) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds 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 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 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 from 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) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

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

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

// File: operator-filter-registry/src/lib/Constants.sol


pragma solidity ^0.8.13;

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

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


pragma solidity ^0.8.13;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.13;


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

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

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

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

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

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


pragma solidity ^0.8.13;


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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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/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/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/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: kryptopoker/kryptoPokerS1.sol


/***
 *          ___          ___                                          ___                       ___          ___          ___          ___     
 *         /  /\        /  /\     __           ___       ___         /  /\         ___         /  /\        /  /\        /  /\        /  /\    
 *        /  /:/       /  /::\   |  |\        /  /\     /__/\       /  /::\       /  /\       /  /::\      /  /:/       /  /::\      /  /::\   
 *       /  /:/       /  /:/\:\  |  |:|      /  /::\    \  \:\     /  /:/\:\     /  /::\     /  /:/\:\    /  /:/       /  /:/\:\    /  /:/\:\  
 *      /  /::\____  /  /::\ \:\ |  |:|     /  /:/\:\    \__\:\   /  /:/  \:\   /  /:/\:\   /  /:/  \:\  /  /::\____  /  /::\ \:\  /  /::\ \:\ 
 *     /__/:/\:::::\/__/:/\:\_\:\|__|:|__  /  /::\ \:\   /  /::\ /__/:/ \__\:\ /  /::\ \:\ /__/:/ \__\:\/__/:/\:::::\/__/:/\:\ \:\/__/:/\:\_\:\
 *     \__\/~|:|~~~~\__\/~|::\/://  /::::\/__/:/\:\_\:\ /  /:/\:\\  \:\ /  /://__/:/\:\_\:\\  \:\ /  /:/\__\/~|:|~~~~\  \:\ \:\_\/\__\/~|::\/:/
 *        |  |:|       |  |:|:://  /:/~~~~\__\/  \:\/://  /:/__\/ \  \:\  /:/ \__\/  \:\/:/ \  \:\  /:/    |  |:|     \  \:\ \:\     |  |:|::/ 
 *        |  |:|       |  |:|\//__/:/          \  \:://__/:/       \  \:\/:/       \  \::/   \  \:\/:/     |  |:|      \  \:\_\/     |  |:|\/  
 *        |__|:|       |__|:|~ \__\/            \__\/ \__\/         \  \::/         \__\/     \  \::/      |__|:|       \  \:\       |__|:|~   
 *         \__\|        \__\|                                        \__\/                     \__\/        \__\|        \__\/        \__\|    
 */

pragma solidity 0.8.18;










contract KryptoPoker_S1 is ERC721A, ERC721AQueryable, DefaultOperatorFilterer, Ownable {

    string public baseURI = "ipfs:///";
    uint256 public price = 0 ether;
    uint256 public maxSupply = 1000;
    uint256 public maxPerTransaction = 2;
    uint256 public maxPerWallet = 2;

    bool public WLsaleActive;
    bool public publicSaleActive;
    bytes32 public root = 0xf6c17c1b221873fefff135a770370ff453214be63b3f48c90aec8f36ce337bd8;
    mapping(address => uint256) private redeemedTokens;
    
    constructor () ERC721A("KryptoPoker_S1", "KPS1") {
    }

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

    function startWLSale() external onlyOwner {
        require(WLsaleActive == false);
        WLsaleActive = true;
    }

    function startPublicSale() external onlyOwner {
        require(publicSaleActive == false);
        publicSaleActive = true;
    }

    function stopWLSale() external onlyOwner {
        require(WLsaleActive == true);
        WLsaleActive = false;
    }

    function stopPublicSale() external onlyOwner {
        require(publicSaleActive == true);
        publicSaleActive = false;
    }

    function WLMint(uint256 amount, bytes32[] calldata proof) public payable {
            require(proof.length > 0);
            require(WLsaleActive);
            require(totalSupply() + amount <= maxSupply);
            require(amount <= maxPerTransaction);
            require(amount + _numberMinted(msg.sender) <= maxPerWallet);
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender, amount));
            require(MerkleProof.verify(proof, root, leaf), "Incorrect proof, check if wallet is in the WL");
            _safeMint(msg.sender, amount);
    }

    function publicMint(uint256 amount) public payable {
            require(publicSaleActive);
            require(totalSupply() + amount <= maxSupply);
            require(amount <= maxPerTransaction);
            require(amount + _numberMinted(msg.sender) <= maxPerWallet);
            uint256 totalPrice = price * amount;
            require(msg.value >= totalPrice, "Insufficient funds");
            _safeMint(msg.sender, amount);
    }


    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function updateRoot(bytes32 newRoot) external onlyOwner {
    root = newRoot;
    }

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

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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


    function treasuryMint(uint256 quantity) public onlyOwner {
        require(quantity > 0, "Invalid mint amount");
        require(
            totalSupply() + quantity <= maxSupply,
            "Maximum supply exceeded"
        );
        _safeMint(msg.sender, quantity);
    }

    function updateMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;
    }

    function updateMaxPerTransactionn(uint256 _maxPerTransaction) external onlyOwner {
        maxPerTransaction = _maxPerTransaction;
    }

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

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

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

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"WLMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"WLsaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWLSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopWLSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTransaction","type":"uint256"}],"name":"updateMaxPerTransactionn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"updateMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600881526020017f697066733a2f2f2f000000000000000000000000000000000000000000000000815250600990816200004a9190620006c2565b506000600a556103e8600b556002600c556002600d557ff6c17c1b221873fefff135a770370ff453214be63b3f48c90aec8f36ce337bd860001b600f553480156200009457600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600e81526020017f4b727970746f506f6b65725f53310000000000000000000000000000000000008152506040518060400160405280600481526020017f4b505331000000000000000000000000000000000000000000000000000000008152508160029081620001299190620006c2565b5080600390816200013b9190620006c2565b506200014c6200037160201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003495780156200020f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001d5929190620007ee565b600060405180830381600087803b158015620001f057600080fd5b505af115801562000205573d6000803e3d6000fd5b5050505062000348565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002c9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200028f929190620007ee565b600060405180830381600087803b158015620002aa57600080fd5b505af1158015620002bf573d6000803e3d6000fd5b5050505062000347565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200031291906200081b565b600060405180830381600087803b1580156200032d57600080fd5b505af115801562000342573d6000803e3d6000fd5b505050505b5b5b50506200036b6200035f6200037a60201b60201c565b6200038260201b60201c565b62000838565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004ca57607f821691505b602082108103620004e057620004df62000482565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200054a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200050b565b6200055686836200050b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005a36200059d62000597846200056e565b62000578565b6200056e565b9050919050565b6000819050919050565b620005bf8362000582565b620005d7620005ce82620005aa565b84845462000518565b825550505050565b600090565b620005ee620005df565b620005fb818484620005b4565b505050565b5b81811015620006235762000617600082620005e4565b60018101905062000601565b5050565b601f82111562000672576200063c81620004e6565b6200064784620004fb565b8101602085101562000657578190505b6200066f6200066685620004fb565b83018262000600565b50505b505050565b600082821c905092915050565b6000620006976000198460080262000677565b1980831691505092915050565b6000620006b2838362000684565b9150826002028217905092915050565b620006cd8262000448565b67ffffffffffffffff811115620006e957620006e862000453565b5b620006f58254620004b1565b6200070282828562000627565b600060209050601f8311600181146200073a576000841562000725578287015190505b620007318582620006a4565b865550620007a1565b601f1984166200074a86620004e6565b60005b8281101562000774578489015182556001820191506020850194506020810190506200074d565b8683101562000794578489015162000790601f89168262000684565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007d682620007a9565b9050919050565b620007e881620007c9565b82525050565b6000604082019050620008056000830185620007dd565b620008146020830184620007dd565b9392505050565b6000602082019050620008326000830184620007dd565b92915050565b61406f80620008486000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063bc8893b4116100b6578063dc33e6811161007a578063dc33e68114610894578063e985e9c5146108d1578063ebf0c7171461090e578063efdc778814610939578063f2fde38b14610962578063fecfda491461098b57610267565b8063bc8893b4146107ad578063c23dc68f146107d8578063c87b56dd14610815578063d5abeb0114610852578063da1b91c31461087d57610267565b806391b7f5ed1161010857806391b7f5ed146106ac57806395d89b41146106d557806399a2557a14610700578063a035b1fe1461073d578063a22cb46514610768578063b88d4fde1461079157610267565b806370a08231146105c7578063715018a61461060457806373e54c741461061b5780638462151c146106445780638da5cb5b1461068157610267565b806323b872dd116101dd578063453c2310116101a1578063453c2310146104a35780634b980d67146104ce57806355f804b3146104f95780635bbb2177146105225780636352211e1461055f5780636c0360eb1461059c57610267565b806323b872dd1461040d5780632db11544146104295780633ccfd60b1461044557806341f434341461045c57806342842e0e1461048757610267565b8063142109ed1161022f578063142109ed1461034457806316fc2cf11461036f57806318160ddd146103865780632045b1be146103b157806321ff9970146103c8578063226fe1c0146103f157610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630c1c972a1461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612b68565b6109b4565b6040516102a09190612bb0565b60405180910390f35b3480156102b557600080fd5b506102be610a46565b6040516102cb9190612c5b565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612cb3565b610ad8565b6040516103089190612d21565b60405180910390f35b61032b60048036038101906103269190612d68565b610b57565b005b34801561033957600080fd5b50610342610b70565b005b34801561035057600080fd5b50610359610bb5565b6040516103669190612bb0565b60405180910390f35b34801561037b57600080fd5b50610384610bc8565b005b34801561039257600080fd5b5061039b610c0d565b6040516103a89190612db7565b60405180910390f35b3480156103bd57600080fd5b506103c6610c24565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612e08565b610c69565b005b61040b60048036038101906104069190612e9a565b610c7b565b005b61042760048036038101906104229190612efa565b610dc0565b005b610443600480360381019061043e9190612cb3565b610e0f565b005b34801561045157600080fd5b5061045a610edd565b005b34801561046857600080fd5b50610471610f2e565b60405161047e9190612fac565b60405180910390f35b6104a1600480360381019061049c9190612efa565b610f40565b005b3480156104af57600080fd5b506104b8610f8f565b6040516104c59190612db7565b60405180910390f35b3480156104da57600080fd5b506104e3610f95565b6040516104f09190612db7565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906130f7565b610f9b565b005b34801561052e57600080fd5b5061054960048036038101906105449190613196565b610fb6565b6040516105569190613346565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190612cb3565b611079565b6040516105939190612d21565b60405180910390f35b3480156105a857600080fd5b506105b161108b565b6040516105be9190612c5b565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613368565b611119565b6040516105fb9190612db7565b60405180910390f35b34801561061057600080fd5b506106196111d1565b005b34801561062757600080fd5b50610642600480360381019061063d9190612cb3565b6111e5565b005b34801561065057600080fd5b5061066b60048036038101906106669190613368565b6111f7565b6040516106789190613453565b60405180910390f35b34801561068d57600080fd5b5061069661133a565b6040516106a39190612d21565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190612cb3565b611364565b005b3480156106e157600080fd5b506106ea611376565b6040516106f79190612c5b565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613475565b611408565b6040516107349190613453565b60405180910390f35b34801561074957600080fd5b50610752611614565b60405161075f9190612db7565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a91906134f4565b61161a565b005b6107ab60048036038101906107a691906135d5565b611633565b005b3480156107b957600080fd5b506107c26116a6565b6040516107cf9190612bb0565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612cb3565b6116b9565b60405161080c91906136ad565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612cb3565b611723565b6040516108499190612c5b565b60405180910390f35b34801561085e57600080fd5b506108676117c1565b6040516108749190612db7565b60405180910390f35b34801561088957600080fd5b506108926117c7565b005b3480156108a057600080fd5b506108bb60048036038101906108b69190613368565b61180c565b6040516108c89190612db7565b60405180910390f35b3480156108dd57600080fd5b506108f860048036038101906108f391906136c8565b61181e565b6040516109059190612bb0565b60405180910390f35b34801561091a57600080fd5b506109236118b2565b6040516109309190613717565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190612cb3565b6118b8565b005b34801561096e57600080fd5b5061098960048036038101906109849190613368565b611967565b005b34801561099757600080fd5b506109b260048036038101906109ad9190612cb3565b6119ea565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a3f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a5590613761565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190613761565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b6000610ae3826119fc565b610b19576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b6181611a5b565b610b6b8383611b58565b505050565b610b78611c9c565b60001515600e60019054906101000a900460ff16151514610b9857600080fd5b6001600e60016101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b610bd0611c9c565b60011515600e60009054906101000a900460ff16151514610bf057600080fd5b6000600e60006101000a81548160ff021916908315150217905550565b6000610c17611d1a565b6001546000540303905090565b610c2c611c9c565b60001515600e60009054906101000a900460ff16151514610c4c57600080fd5b6001600e60006101000a81548160ff021916908315150217905550565b610c71611c9c565b80600f8190555050565b60008282905011610c8b57600080fd5b600e60009054906101000a900460ff16610ca457600080fd5b600b5483610cb0610c0d565b610cba91906137c1565b1115610cc557600080fd5b600c54831115610cd457600080fd5b600d54610ce033611d23565b84610ceb91906137c1565b1115610cf657600080fd5b60003384604051602001610d0b92919061385e565b604051602081830303815290604052805190602001209050610d71838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483611d7a565b610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906138fc565b60405180910390fd5b610dba3385611d91565b50505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dfe57610dfd33611a5b565b5b610e09848484611daf565b50505050565b600e60019054906101000a900460ff16610e2857600080fd5b600b5481610e34610c0d565b610e3e91906137c1565b1115610e4957600080fd5b600c54811115610e5857600080fd5b600d54610e6433611d23565b82610e6f91906137c1565b1115610e7a57600080fd5b600081600a54610e8a919061391c565b905080341015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906139aa565b60405180910390fd5b610ed93383611d91565b5050565b610ee5611c9c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f2b573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f7e57610f7d33611a5b565b5b610f898484846120d1565b50505050565b600d5481565b600c5481565b610fa3611c9c565b8060099081610fb29190613b6c565b5050565b6060600083839050905060008167ffffffffffffffff811115610fdc57610fdb612fcc565b5b60405190808252806020026020018201604052801561101557816020015b611002612aad565b815260200190600190039081610ffa5790505b50905060005b82811461106d5761104486868381811061103857611037613c3e565b5b905060200201356116b9565b82828151811061105757611056613c3e565b5b602002602001018190525080600101905061101b565b50809250505092915050565b6000611084826120f1565b9050919050565b6009805461109890613761565b80601f01602080910402602001604051908101604052809291908181526020018280546110c490613761565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611180576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111d9611c9c565b6111e360006121bd565b565b6111ed611c9c565b80600c8190555050565b6060600080600061120785611119565b905060008167ffffffffffffffff81111561122557611224612fcc565b5b6040519080825280602002602001820160405280156112535781602001602082028036833780820191505090505b50905061125e612aad565b6000611268611d1a565b90505b83861461132c5761127b81612283565b9150816040015161132157600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146112c657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611320578083878060010198508151811061131357611312613c3e565b5b6020026020010181815250505b5b80600101905061126b565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61136c611c9c565b80600a8190555050565b60606003805461138590613761565b80601f01602080910402602001604051908101604052809291908181526020018280546113b190613761565b80156113fe5780601f106113d3576101008083540402835291602001916113fe565b820191906000526020600020905b8154815290600101906020018083116113e157829003601f168201915b5050505050905090565b6060818310611443576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061144e6122ae565b9050611458611d1a565b85101561146a57611467611d1a565b94505b80841115611476578093505b600061148187611119565b9050848610156114a457600086860390508181101561149e578091505b506114a9565b600090505b60008167ffffffffffffffff8111156114c5576114c4612fcc565b5b6040519080825280602002602001820160405280156114f35781602001602082028036833780820191505090505b5090506000820361150a578094505050505061160d565b6000611515886116b9565b90506000816040015161152a57816000015190505b60008990505b8881141580156115405750848714155b156115ff5761154e81612283565b925082604001516115f457600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461159957826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f357808488806001019950815181106115e6576115e5613c3e565b5b6020026020010181815250505b5b806001019050611530565b508583528296505050505050505b9392505050565b600a5481565b8161162481611a5b565b61162e83836122b7565b505050565b61163e848484610dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116a057611669848484846123c2565b61169f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e60019054906101000a900460ff1681565b6116c1612aad565b6116c9612aad565b6116d1611d1a565b8310806116e557506116e16122ae565b8310155b156116f3578091505061171e565b6116fc83612283565b9050806040015115611711578091505061171e565b61171a83612512565b9150505b919050565b606061172e826119fc565b611764576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061176e612532565b9050600081510361178e57604051806020016040528060008152506117b9565b80611798846125c4565b6040516020016117a9929190613ca9565b6040516020818303038152906040525b915050919050565b600b5481565b6117cf611c9c565b60011515600e60019054906101000a900460ff161515146117ef57600080fd5b6000600e60016101000a81548160ff021916908315150217905550565b600061181782611d23565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b6118c0611c9c565b60008111611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613d19565b60405180910390fd5b600b548161190f610c0d565b61191991906137c1565b111561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613d85565b60405180910390fd5b6119643382611d91565b50565b61196f611c9c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613e17565b60405180910390fd5b6119e7816121bd565b50565b6119f2611c9c565b80600d8190555050565b600081611a07611d1a565b11158015611a16575060005482105b8015611a54575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b55576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ad2929190613e37565b602060405180830381865afa158015611aef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b139190613e75565b611b5457806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b4b9190612d21565b60405180910390fd5b5b50565b6000611b6382611079565b90508073ffffffffffffffffffffffffffffffffffffffff16611b84612614565b73ffffffffffffffffffffffffffffffffffffffff1614611be757611bb081611bab612614565b61181e565b611be6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611ca461261c565b73ffffffffffffffffffffffffffffffffffffffff16611cc261133a565b73ffffffffffffffffffffffffffffffffffffffff1614611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f90613eee565b60405180910390fd5b565b60006001905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600082611d878584612624565b1490509392505050565b611dab82826040518060200160405280600081525061267a565b5050565b6000611dba826120f1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e21576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611e2d84612717565b91509150611e438187611e3e612614565b61273e565b611e8f57611e5886611e53612614565b61181e565b611e8e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ef5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f028686866001612782565b8015611f0d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611fdb85611fb7888887612788565b7c0200000000000000000000000000000000000000000000000000000000176127b0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612061576000600185019050600060046000838152602001908152602001600020540361205f57600054811461205e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120c986868660016127db565b505050505050565b6120ec83838360405180602001604052806000815250611633565b505050565b60008082905080612100611d1a565b11612186576000548110156121855760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612183575b6000810361217957600460008360019003935083815260200190815260200160002054905061214f565b80925050506121b8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61228b612aad565b6122a760046000848152602001908152602001600020546127e1565b9050919050565b60008054905090565b80600760006122c4612614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612371612614565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123b69190612bb0565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e8612614565b8786866040518563ffffffff1660e01b815260040161240a9493929190613f63565b6020604051808303816000875af192505050801561244657506040513d601f19601f820116820180604052508101906124439190613fc4565b60015b6124bf573d8060008114612476576040519150601f19603f3d011682016040523d82523d6000602084013e61247b565b606091505b5060008151036124b7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61251a612aad565b61252b612526836120f1565b6127e1565b9050919050565b60606009805461254190613761565b80601f016020809104026020016040519081016040528092919081815260200182805461256d90613761565b80156125ba5780601f1061258f576101008083540402835291602001916125ba565b820191906000526020600020905b81548152906001019060200180831161259d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156125ff57600184039350600a81066030018453600a81049050806125dd575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008082905060005b845181101561266f5761265a8286838151811061264d5761264c613c3e565b5b6020026020010151612897565b9150808061266790613ff1565b91505061262d565b508091505092915050565b61268483836128c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461271257600080549050600083820390505b6126c460008683806001019450866123c2565b6126fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126b157816000541461270f57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861279f868684612a7d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6127e9612aad565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008183106128af576128aa8284612a86565b6128ba565b6128b98383612a86565b5b905092915050565b60008054905060008203612902576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61290f6000848385612782565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612986836129776000866000612788565b61298085612a9d565b176127b0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612a2757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506129ec565b5060008203612a62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612a7860008483856127db565b505050565b60009392505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b4581612b10565b8114612b5057600080fd5b50565b600081359050612b6281612b3c565b92915050565b600060208284031215612b7e57612b7d612b06565b5b6000612b8c84828501612b53565b91505092915050565b60008115159050919050565b612baa81612b95565b82525050565b6000602082019050612bc56000830184612ba1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c05578082015181840152602081019050612bea565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c2d82612bcb565b612c378185612bd6565b9350612c47818560208601612be7565b612c5081612c11565b840191505092915050565b60006020820190508181036000830152612c758184612c22565b905092915050565b6000819050919050565b612c9081612c7d565b8114612c9b57600080fd5b50565b600081359050612cad81612c87565b92915050565b600060208284031215612cc957612cc8612b06565b5b6000612cd784828501612c9e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d0b82612ce0565b9050919050565b612d1b81612d00565b82525050565b6000602082019050612d366000830184612d12565b92915050565b612d4581612d00565b8114612d5057600080fd5b50565b600081359050612d6281612d3c565b92915050565b60008060408385031215612d7f57612d7e612b06565b5b6000612d8d85828601612d53565b9250506020612d9e85828601612c9e565b9150509250929050565b612db181612c7d565b82525050565b6000602082019050612dcc6000830184612da8565b92915050565b6000819050919050565b612de581612dd2565b8114612df057600080fd5b50565b600081359050612e0281612ddc565b92915050565b600060208284031215612e1e57612e1d612b06565b5b6000612e2c84828501612df3565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612e5a57612e59612e35565b5b8235905067ffffffffffffffff811115612e7757612e76612e3a565b5b602083019150836020820283011115612e9357612e92612e3f565b5b9250929050565b600080600060408486031215612eb357612eb2612b06565b5b6000612ec186828701612c9e565b935050602084013567ffffffffffffffff811115612ee257612ee1612b0b565b5b612eee86828701612e44565b92509250509250925092565b600080600060608486031215612f1357612f12612b06565b5b6000612f2186828701612d53565b9350506020612f3286828701612d53565b9250506040612f4386828701612c9e565b9150509250925092565b6000819050919050565b6000612f72612f6d612f6884612ce0565b612f4d565b612ce0565b9050919050565b6000612f8482612f57565b9050919050565b6000612f9682612f79565b9050919050565b612fa681612f8b565b82525050565b6000602082019050612fc16000830184612f9d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61300482612c11565b810181811067ffffffffffffffff8211171561302357613022612fcc565b5b80604052505050565b6000613036612afc565b90506130428282612ffb565b919050565b600067ffffffffffffffff82111561306257613061612fcc565b5b61306b82612c11565b9050602081019050919050565b82818337600083830152505050565b600061309a61309584613047565b61302c565b9050828152602081018484840111156130b6576130b5612fc7565b5b6130c1848285613078565b509392505050565b600082601f8301126130de576130dd612e35565b5b81356130ee848260208601613087565b91505092915050565b60006020828403121561310d5761310c612b06565b5b600082013567ffffffffffffffff81111561312b5761312a612b0b565b5b613137848285016130c9565b91505092915050565b60008083601f84011261315657613155612e35565b5b8235905067ffffffffffffffff81111561317357613172612e3a565b5b60208301915083602082028301111561318f5761318e612e3f565b5b9250929050565b600080602083850312156131ad576131ac612b06565b5b600083013567ffffffffffffffff8111156131cb576131ca612b0b565b5b6131d785828601613140565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61321881612d00565b82525050565b600067ffffffffffffffff82169050919050565b61323b8161321e565b82525050565b61324a81612b95565b82525050565b600062ffffff82169050919050565b61326881613250565b82525050565b608082016000820151613284600085018261320f565b5060208201516132976020850182613232565b5060408201516132aa6040850182613241565b5060608201516132bd606085018261325f565b50505050565b60006132cf838361326e565b60808301905092915050565b6000602082019050919050565b60006132f3826131e3565b6132fd81856131ee565b9350613308836131ff565b8060005b8381101561333957815161332088826132c3565b975061332b836132db565b92505060018101905061330c565b5085935050505092915050565b6000602082019050818103600083015261336081846132e8565b905092915050565b60006020828403121561337e5761337d612b06565b5b600061338c84828501612d53565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133ca81612c7d565b82525050565b60006133dc83836133c1565b60208301905092915050565b6000602082019050919050565b600061340082613395565b61340a81856133a0565b9350613415836133b1565b8060005b8381101561344657815161342d88826133d0565b9750613438836133e8565b925050600181019050613419565b5085935050505092915050565b6000602082019050818103600083015261346d81846133f5565b905092915050565b60008060006060848603121561348e5761348d612b06565b5b600061349c86828701612d53565b93505060206134ad86828701612c9e565b92505060406134be86828701612c9e565b9150509250925092565b6134d181612b95565b81146134dc57600080fd5b50565b6000813590506134ee816134c8565b92915050565b6000806040838503121561350b5761350a612b06565b5b600061351985828601612d53565b925050602061352a858286016134df565b9150509250929050565b600067ffffffffffffffff82111561354f5761354e612fcc565b5b61355882612c11565b9050602081019050919050565b600061357861357384613534565b61302c565b90508281526020810184848401111561359457613593612fc7565b5b61359f848285613078565b509392505050565b600082601f8301126135bc576135bb612e35565b5b81356135cc848260208601613565565b91505092915050565b600080600080608085870312156135ef576135ee612b06565b5b60006135fd87828801612d53565b945050602061360e87828801612d53565b935050604061361f87828801612c9e565b925050606085013567ffffffffffffffff8111156136405761363f612b0b565b5b61364c878288016135a7565b91505092959194509250565b60808201600082015161366e600085018261320f565b5060208201516136816020850182613232565b5060408201516136946040850182613241565b5060608201516136a7606085018261325f565b50505050565b60006080820190506136c26000830184613658565b92915050565b600080604083850312156136df576136de612b06565b5b60006136ed85828601612d53565b92505060206136fe85828601612d53565b9150509250929050565b61371181612dd2565b82525050565b600060208201905061372c6000830184613708565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377957607f821691505b60208210810361378c5761378b613732565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137cc82612c7d565b91506137d783612c7d565b92508282019050808211156137ef576137ee613792565b5b92915050565b60008160601b9050919050565b600061380d826137f5565b9050919050565b600061381f82613802565b9050919050565b61383761383282612d00565b613814565b82525050565b6000819050919050565b61385861385382612c7d565b61383d565b82525050565b600061386a8285613826565b60148201915061387a8284613847565b6020820191508190509392505050565b7f496e636f72726563742070726f6f662c20636865636b2069662077616c6c657460008201527f20697320696e2074686520574c00000000000000000000000000000000000000602082015250565b60006138e6602d83612bd6565b91506138f18261388a565b604082019050919050565b60006020820190508181036000830152613915816138d9565b9050919050565b600061392782612c7d565b915061393283612c7d565b925082820261394081612c7d565b9150828204841483151761395757613956613792565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613994601283612bd6565b915061399f8261395e565b602082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139ef565b613a3686836139ef565b95508019841693508086168417925050509392505050565b6000613a69613a64613a5f84612c7d565b612f4d565b612c7d565b9050919050565b6000819050919050565b613a8383613a4e565b613a97613a8f82613a70565b8484546139fc565b825550505050565b600090565b613aac613a9f565b613ab7818484613a7a565b505050565b5b81811015613adb57613ad0600082613aa4565b600181019050613abd565b5050565b601f821115613b2057613af1816139ca565b613afa846139df565b81016020851015613b09578190505b613b1d613b15856139df565b830182613abc565b50505b505050565b600082821c905092915050565b6000613b4360001984600802613b25565b1980831691505092915050565b6000613b5c8383613b32565b9150826002028217905092915050565b613b7582612bcb565b67ffffffffffffffff811115613b8e57613b8d612fcc565b5b613b988254613761565b613ba3828285613adf565b600060209050601f831160018114613bd65760008415613bc4578287015190505b613bce8582613b50565b865550613c36565b601f198416613be4866139ca565b60005b82811015613c0c57848901518255600182019150602085019450602081019050613be7565b86831015613c295784890151613c25601f891682613b32565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b6000613c8382612bcb565b613c8d8185613c6d565b9350613c9d818560208601612be7565b80840191505092915050565b6000613cb58285613c78565b9150613cc18284613c78565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613d03601383612bd6565b9150613d0e82613ccd565b602082019050919050565b60006020820190508181036000830152613d3281613cf6565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613d6f601783612bd6565b9150613d7a82613d39565b602082019050919050565b60006020820190508181036000830152613d9e81613d62565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e01602683612bd6565b9150613e0c82613da5565b604082019050919050565b60006020820190508181036000830152613e3081613df4565b9050919050565b6000604082019050613e4c6000830185612d12565b613e596020830184612d12565b9392505050565b600081519050613e6f816134c8565b92915050565b600060208284031215613e8b57613e8a612b06565b5b6000613e9984828501613e60565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ed8602083612bd6565b9150613ee382613ea2565b602082019050919050565b60006020820190508181036000830152613f0781613ecb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f3582613f0e565b613f3f8185613f19565b9350613f4f818560208601612be7565b613f5881612c11565b840191505092915050565b6000608082019050613f786000830187612d12565b613f856020830186612d12565b613f926040830185612da8565b8181036060830152613fa48184613f2a565b905095945050505050565b600081519050613fbe81612b3c565b92915050565b600060208284031215613fda57613fd9612b06565b5b6000613fe884828501613faf565b91505092915050565b6000613ffc82612c7d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361402e5761402d613792565b5b60018201905091905056fea2646970667358221220d14051e6f51b490c2655e0154d0189ef1660e4eb27d76db8efe1b90ba3a86cf564736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063bc8893b4116100b6578063dc33e6811161007a578063dc33e68114610894578063e985e9c5146108d1578063ebf0c7171461090e578063efdc778814610939578063f2fde38b14610962578063fecfda491461098b57610267565b8063bc8893b4146107ad578063c23dc68f146107d8578063c87b56dd14610815578063d5abeb0114610852578063da1b91c31461087d57610267565b806391b7f5ed1161010857806391b7f5ed146106ac57806395d89b41146106d557806399a2557a14610700578063a035b1fe1461073d578063a22cb46514610768578063b88d4fde1461079157610267565b806370a08231146105c7578063715018a61461060457806373e54c741461061b5780638462151c146106445780638da5cb5b1461068157610267565b806323b872dd116101dd578063453c2310116101a1578063453c2310146104a35780634b980d67146104ce57806355f804b3146104f95780635bbb2177146105225780636352211e1461055f5780636c0360eb1461059c57610267565b806323b872dd1461040d5780632db11544146104295780633ccfd60b1461044557806341f434341461045c57806342842e0e1461048757610267565b8063142109ed1161022f578063142109ed1461034457806316fc2cf11461036f57806318160ddd146103865780632045b1be146103b157806321ff9970146103c8578063226fe1c0146103f157610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630c1c972a1461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190612b68565b6109b4565b6040516102a09190612bb0565b60405180910390f35b3480156102b557600080fd5b506102be610a46565b6040516102cb9190612c5b565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612cb3565b610ad8565b6040516103089190612d21565b60405180910390f35b61032b60048036038101906103269190612d68565b610b57565b005b34801561033957600080fd5b50610342610b70565b005b34801561035057600080fd5b50610359610bb5565b6040516103669190612bb0565b60405180910390f35b34801561037b57600080fd5b50610384610bc8565b005b34801561039257600080fd5b5061039b610c0d565b6040516103a89190612db7565b60405180910390f35b3480156103bd57600080fd5b506103c6610c24565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612e08565b610c69565b005b61040b60048036038101906104069190612e9a565b610c7b565b005b61042760048036038101906104229190612efa565b610dc0565b005b610443600480360381019061043e9190612cb3565b610e0f565b005b34801561045157600080fd5b5061045a610edd565b005b34801561046857600080fd5b50610471610f2e565b60405161047e9190612fac565b60405180910390f35b6104a1600480360381019061049c9190612efa565b610f40565b005b3480156104af57600080fd5b506104b8610f8f565b6040516104c59190612db7565b60405180910390f35b3480156104da57600080fd5b506104e3610f95565b6040516104f09190612db7565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906130f7565b610f9b565b005b34801561052e57600080fd5b5061054960048036038101906105449190613196565b610fb6565b6040516105569190613346565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190612cb3565b611079565b6040516105939190612d21565b60405180910390f35b3480156105a857600080fd5b506105b161108b565b6040516105be9190612c5b565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613368565b611119565b6040516105fb9190612db7565b60405180910390f35b34801561061057600080fd5b506106196111d1565b005b34801561062757600080fd5b50610642600480360381019061063d9190612cb3565b6111e5565b005b34801561065057600080fd5b5061066b60048036038101906106669190613368565b6111f7565b6040516106789190613453565b60405180910390f35b34801561068d57600080fd5b5061069661133a565b6040516106a39190612d21565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190612cb3565b611364565b005b3480156106e157600080fd5b506106ea611376565b6040516106f79190612c5b565b60405180910390f35b34801561070c57600080fd5b5061072760048036038101906107229190613475565b611408565b6040516107349190613453565b60405180910390f35b34801561074957600080fd5b50610752611614565b60405161075f9190612db7565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a91906134f4565b61161a565b005b6107ab60048036038101906107a691906135d5565b611633565b005b3480156107b957600080fd5b506107c26116a6565b6040516107cf9190612bb0565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612cb3565b6116b9565b60405161080c91906136ad565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612cb3565b611723565b6040516108499190612c5b565b60405180910390f35b34801561085e57600080fd5b506108676117c1565b6040516108749190612db7565b60405180910390f35b34801561088957600080fd5b506108926117c7565b005b3480156108a057600080fd5b506108bb60048036038101906108b69190613368565b61180c565b6040516108c89190612db7565b60405180910390f35b3480156108dd57600080fd5b506108f860048036038101906108f391906136c8565b61181e565b6040516109059190612bb0565b60405180910390f35b34801561091a57600080fd5b506109236118b2565b6040516109309190613717565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190612cb3565b6118b8565b005b34801561096e57600080fd5b5061098960048036038101906109849190613368565b611967565b005b34801561099757600080fd5b506109b260048036038101906109ad9190612cb3565b6119ea565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a3f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a5590613761565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8190613761565b8015610ace5780601f10610aa357610100808354040283529160200191610ace565b820191906000526020600020905b815481529060010190602001808311610ab157829003601f168201915b5050505050905090565b6000610ae3826119fc565b610b19576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b6181611a5b565b610b6b8383611b58565b505050565b610b78611c9c565b60001515600e60019054906101000a900460ff16151514610b9857600080fd5b6001600e60016101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b610bd0611c9c565b60011515600e60009054906101000a900460ff16151514610bf057600080fd5b6000600e60006101000a81548160ff021916908315150217905550565b6000610c17611d1a565b6001546000540303905090565b610c2c611c9c565b60001515600e60009054906101000a900460ff16151514610c4c57600080fd5b6001600e60006101000a81548160ff021916908315150217905550565b610c71611c9c565b80600f8190555050565b60008282905011610c8b57600080fd5b600e60009054906101000a900460ff16610ca457600080fd5b600b5483610cb0610c0d565b610cba91906137c1565b1115610cc557600080fd5b600c54831115610cd457600080fd5b600d54610ce033611d23565b84610ceb91906137c1565b1115610cf657600080fd5b60003384604051602001610d0b92919061385e565b604051602081830303815290604052805190602001209050610d71838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483611d7a565b610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906138fc565b60405180910390fd5b610dba3385611d91565b50505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dfe57610dfd33611a5b565b5b610e09848484611daf565b50505050565b600e60019054906101000a900460ff16610e2857600080fd5b600b5481610e34610c0d565b610e3e91906137c1565b1115610e4957600080fd5b600c54811115610e5857600080fd5b600d54610e6433611d23565b82610e6f91906137c1565b1115610e7a57600080fd5b600081600a54610e8a919061391c565b905080341015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec6906139aa565b60405180910390fd5b610ed93383611d91565b5050565b610ee5611c9c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f2b573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f7e57610f7d33611a5b565b5b610f898484846120d1565b50505050565b600d5481565b600c5481565b610fa3611c9c565b8060099081610fb29190613b6c565b5050565b6060600083839050905060008167ffffffffffffffff811115610fdc57610fdb612fcc565b5b60405190808252806020026020018201604052801561101557816020015b611002612aad565b815260200190600190039081610ffa5790505b50905060005b82811461106d5761104486868381811061103857611037613c3e565b5b905060200201356116b9565b82828151811061105757611056613c3e565b5b602002602001018190525080600101905061101b565b50809250505092915050565b6000611084826120f1565b9050919050565b6009805461109890613761565b80601f01602080910402602001604051908101604052809291908181526020018280546110c490613761565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611180576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111d9611c9c565b6111e360006121bd565b565b6111ed611c9c565b80600c8190555050565b6060600080600061120785611119565b905060008167ffffffffffffffff81111561122557611224612fcc565b5b6040519080825280602002602001820160405280156112535781602001602082028036833780820191505090505b50905061125e612aad565b6000611268611d1a565b90505b83861461132c5761127b81612283565b9150816040015161132157600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146112c657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611320578083878060010198508151811061131357611312613c3e565b5b6020026020010181815250505b5b80600101905061126b565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61136c611c9c565b80600a8190555050565b60606003805461138590613761565b80601f01602080910402602001604051908101604052809291908181526020018280546113b190613761565b80156113fe5780601f106113d3576101008083540402835291602001916113fe565b820191906000526020600020905b8154815290600101906020018083116113e157829003601f168201915b5050505050905090565b6060818310611443576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061144e6122ae565b9050611458611d1a565b85101561146a57611467611d1a565b94505b80841115611476578093505b600061148187611119565b9050848610156114a457600086860390508181101561149e578091505b506114a9565b600090505b60008167ffffffffffffffff8111156114c5576114c4612fcc565b5b6040519080825280602002602001820160405280156114f35781602001602082028036833780820191505090505b5090506000820361150a578094505050505061160d565b6000611515886116b9565b90506000816040015161152a57816000015190505b60008990505b8881141580156115405750848714155b156115ff5761154e81612283565b925082604001516115f457600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461159957826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f357808488806001019950815181106115e6576115e5613c3e565b5b6020026020010181815250505b5b806001019050611530565b508583528296505050505050505b9392505050565b600a5481565b8161162481611a5b565b61162e83836122b7565b505050565b61163e848484610dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116a057611669848484846123c2565b61169f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e60019054906101000a900460ff1681565b6116c1612aad565b6116c9612aad565b6116d1611d1a565b8310806116e557506116e16122ae565b8310155b156116f3578091505061171e565b6116fc83612283565b9050806040015115611711578091505061171e565b61171a83612512565b9150505b919050565b606061172e826119fc565b611764576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061176e612532565b9050600081510361178e57604051806020016040528060008152506117b9565b80611798846125c4565b6040516020016117a9929190613ca9565b6040516020818303038152906040525b915050919050565b600b5481565b6117cf611c9c565b60011515600e60019054906101000a900460ff161515146117ef57600080fd5b6000600e60016101000a81548160ff021916908315150217905550565b600061181782611d23565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b6118c0611c9c565b60008111611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613d19565b60405180910390fd5b600b548161190f610c0d565b61191991906137c1565b111561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613d85565b60405180910390fd5b6119643382611d91565b50565b61196f611c9c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613e17565b60405180910390fd5b6119e7816121bd565b50565b6119f2611c9c565b80600d8190555050565b600081611a07611d1a565b11158015611a16575060005482105b8015611a54575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b55576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ad2929190613e37565b602060405180830381865afa158015611aef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b139190613e75565b611b5457806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b4b9190612d21565b60405180910390fd5b5b50565b6000611b6382611079565b90508073ffffffffffffffffffffffffffffffffffffffff16611b84612614565b73ffffffffffffffffffffffffffffffffffffffff1614611be757611bb081611bab612614565b61181e565b611be6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611ca461261c565b73ffffffffffffffffffffffffffffffffffffffff16611cc261133a565b73ffffffffffffffffffffffffffffffffffffffff1614611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f90613eee565b60405180910390fd5b565b60006001905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600082611d878584612624565b1490509392505050565b611dab82826040518060200160405280600081525061267a565b5050565b6000611dba826120f1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e21576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611e2d84612717565b91509150611e438187611e3e612614565b61273e565b611e8f57611e5886611e53612614565b61181e565b611e8e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ef5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f028686866001612782565b8015611f0d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611fdb85611fb7888887612788565b7c0200000000000000000000000000000000000000000000000000000000176127b0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612061576000600185019050600060046000838152602001908152602001600020540361205f57600054811461205e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120c986868660016127db565b505050505050565b6120ec83838360405180602001604052806000815250611633565b505050565b60008082905080612100611d1a565b11612186576000548110156121855760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612183575b6000810361217957600460008360019003935083815260200190815260200160002054905061214f565b80925050506121b8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61228b612aad565b6122a760046000848152602001908152602001600020546127e1565b9050919050565b60008054905090565b80600760006122c4612614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612371612614565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123b69190612bb0565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e8612614565b8786866040518563ffffffff1660e01b815260040161240a9493929190613f63565b6020604051808303816000875af192505050801561244657506040513d601f19601f820116820180604052508101906124439190613fc4565b60015b6124bf573d8060008114612476576040519150601f19603f3d011682016040523d82523d6000602084013e61247b565b606091505b5060008151036124b7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61251a612aad565b61252b612526836120f1565b6127e1565b9050919050565b60606009805461254190613761565b80601f016020809104026020016040519081016040528092919081815260200182805461256d90613761565b80156125ba5780601f1061258f576101008083540402835291602001916125ba565b820191906000526020600020905b81548152906001019060200180831161259d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156125ff57600184039350600a81066030018453600a81049050806125dd575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008082905060005b845181101561266f5761265a8286838151811061264d5761264c613c3e565b5b6020026020010151612897565b9150808061266790613ff1565b91505061262d565b508091505092915050565b61268483836128c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461271257600080549050600083820390505b6126c460008683806001019450866123c2565b6126fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126b157816000541461270f57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861279f868684612a7d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6127e9612aad565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008183106128af576128aa8284612a86565b6128ba565b6128b98383612a86565b5b905092915050565b60008054905060008203612902576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61290f6000848385612782565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612986836129776000866000612788565b61298085612a9d565b176127b0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612a2757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506129ec565b5060008203612a62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612a7860008483856127db565b505050565b60009392505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b4581612b10565b8114612b5057600080fd5b50565b600081359050612b6281612b3c565b92915050565b600060208284031215612b7e57612b7d612b06565b5b6000612b8c84828501612b53565b91505092915050565b60008115159050919050565b612baa81612b95565b82525050565b6000602082019050612bc56000830184612ba1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c05578082015181840152602081019050612bea565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c2d82612bcb565b612c378185612bd6565b9350612c47818560208601612be7565b612c5081612c11565b840191505092915050565b60006020820190508181036000830152612c758184612c22565b905092915050565b6000819050919050565b612c9081612c7d565b8114612c9b57600080fd5b50565b600081359050612cad81612c87565b92915050565b600060208284031215612cc957612cc8612b06565b5b6000612cd784828501612c9e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d0b82612ce0565b9050919050565b612d1b81612d00565b82525050565b6000602082019050612d366000830184612d12565b92915050565b612d4581612d00565b8114612d5057600080fd5b50565b600081359050612d6281612d3c565b92915050565b60008060408385031215612d7f57612d7e612b06565b5b6000612d8d85828601612d53565b9250506020612d9e85828601612c9e565b9150509250929050565b612db181612c7d565b82525050565b6000602082019050612dcc6000830184612da8565b92915050565b6000819050919050565b612de581612dd2565b8114612df057600080fd5b50565b600081359050612e0281612ddc565b92915050565b600060208284031215612e1e57612e1d612b06565b5b6000612e2c84828501612df3565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612e5a57612e59612e35565b5b8235905067ffffffffffffffff811115612e7757612e76612e3a565b5b602083019150836020820283011115612e9357612e92612e3f565b5b9250929050565b600080600060408486031215612eb357612eb2612b06565b5b6000612ec186828701612c9e565b935050602084013567ffffffffffffffff811115612ee257612ee1612b0b565b5b612eee86828701612e44565b92509250509250925092565b600080600060608486031215612f1357612f12612b06565b5b6000612f2186828701612d53565b9350506020612f3286828701612d53565b9250506040612f4386828701612c9e565b9150509250925092565b6000819050919050565b6000612f72612f6d612f6884612ce0565b612f4d565b612ce0565b9050919050565b6000612f8482612f57565b9050919050565b6000612f9682612f79565b9050919050565b612fa681612f8b565b82525050565b6000602082019050612fc16000830184612f9d565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61300482612c11565b810181811067ffffffffffffffff8211171561302357613022612fcc565b5b80604052505050565b6000613036612afc565b90506130428282612ffb565b919050565b600067ffffffffffffffff82111561306257613061612fcc565b5b61306b82612c11565b9050602081019050919050565b82818337600083830152505050565b600061309a61309584613047565b61302c565b9050828152602081018484840111156130b6576130b5612fc7565b5b6130c1848285613078565b509392505050565b600082601f8301126130de576130dd612e35565b5b81356130ee848260208601613087565b91505092915050565b60006020828403121561310d5761310c612b06565b5b600082013567ffffffffffffffff81111561312b5761312a612b0b565b5b613137848285016130c9565b91505092915050565b60008083601f84011261315657613155612e35565b5b8235905067ffffffffffffffff81111561317357613172612e3a565b5b60208301915083602082028301111561318f5761318e612e3f565b5b9250929050565b600080602083850312156131ad576131ac612b06565b5b600083013567ffffffffffffffff8111156131cb576131ca612b0b565b5b6131d785828601613140565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61321881612d00565b82525050565b600067ffffffffffffffff82169050919050565b61323b8161321e565b82525050565b61324a81612b95565b82525050565b600062ffffff82169050919050565b61326881613250565b82525050565b608082016000820151613284600085018261320f565b5060208201516132976020850182613232565b5060408201516132aa6040850182613241565b5060608201516132bd606085018261325f565b50505050565b60006132cf838361326e565b60808301905092915050565b6000602082019050919050565b60006132f3826131e3565b6132fd81856131ee565b9350613308836131ff565b8060005b8381101561333957815161332088826132c3565b975061332b836132db565b92505060018101905061330c565b5085935050505092915050565b6000602082019050818103600083015261336081846132e8565b905092915050565b60006020828403121561337e5761337d612b06565b5b600061338c84828501612d53565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133ca81612c7d565b82525050565b60006133dc83836133c1565b60208301905092915050565b6000602082019050919050565b600061340082613395565b61340a81856133a0565b9350613415836133b1565b8060005b8381101561344657815161342d88826133d0565b9750613438836133e8565b925050600181019050613419565b5085935050505092915050565b6000602082019050818103600083015261346d81846133f5565b905092915050565b60008060006060848603121561348e5761348d612b06565b5b600061349c86828701612d53565b93505060206134ad86828701612c9e565b92505060406134be86828701612c9e565b9150509250925092565b6134d181612b95565b81146134dc57600080fd5b50565b6000813590506134ee816134c8565b92915050565b6000806040838503121561350b5761350a612b06565b5b600061351985828601612d53565b925050602061352a858286016134df565b9150509250929050565b600067ffffffffffffffff82111561354f5761354e612fcc565b5b61355882612c11565b9050602081019050919050565b600061357861357384613534565b61302c565b90508281526020810184848401111561359457613593612fc7565b5b61359f848285613078565b509392505050565b600082601f8301126135bc576135bb612e35565b5b81356135cc848260208601613565565b91505092915050565b600080600080608085870312156135ef576135ee612b06565b5b60006135fd87828801612d53565b945050602061360e87828801612d53565b935050604061361f87828801612c9e565b925050606085013567ffffffffffffffff8111156136405761363f612b0b565b5b61364c878288016135a7565b91505092959194509250565b60808201600082015161366e600085018261320f565b5060208201516136816020850182613232565b5060408201516136946040850182613241565b5060608201516136a7606085018261325f565b50505050565b60006080820190506136c26000830184613658565b92915050565b600080604083850312156136df576136de612b06565b5b60006136ed85828601612d53565b92505060206136fe85828601612d53565b9150509250929050565b61371181612dd2565b82525050565b600060208201905061372c6000830184613708565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377957607f821691505b60208210810361378c5761378b613732565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137cc82612c7d565b91506137d783612c7d565b92508282019050808211156137ef576137ee613792565b5b92915050565b60008160601b9050919050565b600061380d826137f5565b9050919050565b600061381f82613802565b9050919050565b61383761383282612d00565b613814565b82525050565b6000819050919050565b61385861385382612c7d565b61383d565b82525050565b600061386a8285613826565b60148201915061387a8284613847565b6020820191508190509392505050565b7f496e636f72726563742070726f6f662c20636865636b2069662077616c6c657460008201527f20697320696e2074686520574c00000000000000000000000000000000000000602082015250565b60006138e6602d83612bd6565b91506138f18261388a565b604082019050919050565b60006020820190508181036000830152613915816138d9565b9050919050565b600061392782612c7d565b915061393283612c7d565b925082820261394081612c7d565b9150828204841483151761395757613956613792565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613994601283612bd6565b915061399f8261395e565b602082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139ef565b613a3686836139ef565b95508019841693508086168417925050509392505050565b6000613a69613a64613a5f84612c7d565b612f4d565b612c7d565b9050919050565b6000819050919050565b613a8383613a4e565b613a97613a8f82613a70565b8484546139fc565b825550505050565b600090565b613aac613a9f565b613ab7818484613a7a565b505050565b5b81811015613adb57613ad0600082613aa4565b600181019050613abd565b5050565b601f821115613b2057613af1816139ca565b613afa846139df565b81016020851015613b09578190505b613b1d613b15856139df565b830182613abc565b50505b505050565b600082821c905092915050565b6000613b4360001984600802613b25565b1980831691505092915050565b6000613b5c8383613b32565b9150826002028217905092915050565b613b7582612bcb565b67ffffffffffffffff811115613b8e57613b8d612fcc565b5b613b988254613761565b613ba3828285613adf565b600060209050601f831160018114613bd65760008415613bc4578287015190505b613bce8582613b50565b865550613c36565b601f198416613be4866139ca565b60005b82811015613c0c57848901518255600182019150602085019450602081019050613be7565b86831015613c295784890151613c25601f891682613b32565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b6000613c8382612bcb565b613c8d8185613c6d565b9350613c9d818560208601612be7565b80840191505092915050565b6000613cb58285613c78565b9150613cc18284613c78565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613d03601383612bd6565b9150613d0e82613ccd565b602082019050919050565b60006020820190508181036000830152613d3281613cf6565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613d6f601783612bd6565b9150613d7a82613d39565b602082019050919050565b60006020820190508181036000830152613d9e81613d62565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e01602683612bd6565b9150613e0c82613da5565b604082019050919050565b60006020820190508181036000830152613e3081613df4565b9050919050565b6000604082019050613e4c6000830185612d12565b613e596020830184612d12565b9392505050565b600081519050613e6f816134c8565b92915050565b600060208284031215613e8b57613e8a612b06565b5b6000613e9984828501613e60565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ed8602083612bd6565b9150613ee382613ea2565b602082019050919050565b60006020820190508181036000830152613f0781613ecb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f3582613f0e565b613f3f8185613f19565b9350613f4f818560208601612be7565b613f5881612c11565b840191505092915050565b6000608082019050613f786000830187612d12565b613f856020830186612d12565b613f926040830185612da8565b8181036060830152613fa48184613f2a565b905095945050505050565b600081519050613fbe81612b3c565b92915050565b600060208284031215613fda57613fd9612b06565b5b6000613fe884828501613faf565b91505092915050565b6000613ffc82612c7d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361402e5761402d613792565b5b60018201905091905056fea2646970667358221220d14051e6f51b490c2655e0154d0189ef1660e4eb27d76db8efe1b90ba3a86cf564736f6c63430008120033

Deployed Bytecode Sourcemap

105940:4274:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64761:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65663:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72154:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109620:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106762:133;;;;;;;;;;;;;:::i;:::-;;106235:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106903:120;;;;;;;;;;;;;:::i;:::-;;61414:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106633:121;;;;;;;;;;;;;:::i;:::-;;108303:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107171:572;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109813:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107751:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108512:107;;;;;;;;;;;;;:::i;:::-;;17626:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110012:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106195:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106152:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108748:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99460:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67056:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106036:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62598:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43016:103;;;;;;;;;;;;;:::i;:::-;;109274:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103336:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42375:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108207:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65839:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100376:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106077:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109420:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79505:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106266:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98873:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66049:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106114:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107031:132;;;;;;;;;;;;;:::i;:::-;;108627:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73103:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106301:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108858:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43274:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109149:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64761:639;64846:4;65185:10;65170:25;;:11;:25;;;;:102;;;;65262:10;65247:25;;:11;:25;;;;65170:102;:179;;;;65339:10;65324:25;;:11;:25;;;;65170:179;65150:199;;64761:639;;;:::o;65663:100::-;65717:13;65750:5;65743:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65663:100;:::o;72154:218::-;72230:7;72255:16;72263:7;72255;:16::i;:::-;72250:64;;72280:34;;;;;;;;;;;;;;72250:64;72334:15;:24;72350:7;72334:24;;;;;;;;;;;:30;;;;;;;;;;;;72327:37;;72154:218;;;:::o;109620:185::-;109744:8;19408:30;19429:8;19408:20;:30::i;:::-;109765:32:::1;109779:8;109789:7;109765:13;:32::i;:::-;109620:185:::0;;;:::o;106762:133::-;42261:13;:11;:13::i;:::-;106847:5:::1;106827:25;;:16;;;;;;;;;;;:25;;;106819:34;;;::::0;::::1;;106883:4;106864:16;;:23;;;;;;;;;;;;;;;;;;106762:133::o:0;106235:24::-;;;;;;;;;;;;;:::o;106903:120::-;42261:13;:11;:13::i;:::-;106979:4:::1;106963:20;;:12;;;;;;;;;;;:20;;;106955:29;;;::::0;::::1;;107010:5;106995:12;;:20;;;;;;;;;;;;;;;;;;106903:120::o:0;61414:323::-;61475:7;61703:15;:13;:15::i;:::-;61688:12;;61672:13;;:28;:46;61665:53;;61414:323;:::o;106633:121::-;42261:13;:11;:13::i;:::-;106710:5:::1;106694:21;;:12;;;;;;;;;;;:21;;;106686:30;;;::::0;::::1;;106742:4;106727:12;;:19;;;;;;;;;;;;;;;;;;106633:121::o:0;108303:85::-;42261:13;:11;:13::i;:::-;108373:7:::1;108366:4;:14;;;;108303:85:::0;:::o;107171:572::-;107282:1;107267:5;;:12;;:16;107259:25;;;;;;107307:12;;;;;;;;;;;107299:21;;;;;;107369:9;;107359:6;107343:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;107335:44;;;;;;107412:17;;107402:6;:27;;107394:36;;;;;;107491:12;;107462:25;107476:10;107462:13;:25::i;:::-;107453:6;:34;;;;:::i;:::-;:50;;107445:59;;;;;;107519:12;107561:10;107573:6;107544:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;107534:47;;;;;;107519:62;;107604:37;107623:5;;107604:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107630:4;;107636;107604:18;:37::i;:::-;107596:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;107706:29;107716:10;107728:6;107706:9;:29::i;:::-;107244:499;107171:572;;;:::o;109813:191::-;109942:4;19142:10;19134:18;;:4;:18;;;19130:83;;19169:32;19190:10;19169:20;:32::i;:::-;19130:83;109959:37:::1;109978:4;109984:2;109988:7;109959:18;:37::i;:::-;109813:191:::0;;;;:::o;107751:446::-;107825:16;;;;;;;;;;;107817:25;;;;;;107891:9;;107881:6;107865:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;107857:44;;;;;;107934:17;;107924:6;:27;;107916:36;;;;;;108013:12;;107984:25;107998:10;107984:13;:25::i;:::-;107975:6;:34;;;;:::i;:::-;:50;;107967:59;;;;;;108041:18;108070:6;108062:5;;:14;;;;:::i;:::-;108041:35;;108112:10;108099:9;:23;;108091:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;108160:29;108170:10;108182:6;108160:9;:29::i;:::-;107802:395;107751:446;:::o;108512:107::-;42261:13;:11;:13::i;:::-;108568:10:::1;108560:28;;:51;108589:21;108560:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;108512:107::o:0;17626:143::-;10042:42;17626:143;:::o;110012:199::-;110145:4;19142:10;19134:18;;:4;:18;;;19130:83;;19169:32;19190:10;19169:20;:32::i;:::-;19130:83;110162:41:::1;110185:4;110191:2;110195:7;110162:22;:41::i;:::-;110012:199:::0;;;;:::o;106195:31::-;;;;:::o;106152:36::-;;;;:::o;108748:100::-;42261:13;:11;:13::i;:::-;108832:8:::1;108822:7;:18;;;;;;:::i;:::-;;108748:100:::0;:::o;99460:528::-;99604:23;99670:22;99695:8;;:15;;99670:40;;99725:34;99783:14;99762:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;99725:73;;99818:9;99813:125;99834:14;99829:1;:19;99813:125;;99890:32;99910:8;;99919:1;99910:11;;;;;;;:::i;:::-;;;;;;;;99890:19;:32::i;:::-;99874:10;99885:1;99874:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;99850:3;;;;;99813:125;;;;99959:10;99952:17;;;;99460:528;;;;:::o;67056:152::-;67128:7;67171:27;67190:7;67171:18;:27::i;:::-;67148:52;;67056:152;;;:::o;106036:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62598:233::-;62670:7;62711:1;62694:19;;:5;:19;;;62690:60;;62722:28;;;;;;;;;;;;;;62690:60;56757:13;62768:18;:25;62787:5;62768:25;;;;;;;;;;;;;;;;:55;62761:62;;62598:233;;;:::o;43016:103::-;42261:13;:11;:13::i;:::-;43081:30:::1;43108:1;43081:18;:30::i;:::-;43016:103::o:0;109274:138::-;42261:13;:11;:13::i;:::-;109386:18:::1;109366:17;:38;;;;109274:138:::0;:::o;103336:900::-;103414:16;103468:19;103502:25;103542:22;103567:16;103577:5;103567:9;:16::i;:::-;103542:41;;103598:25;103640:14;103626:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103598:57;;103670:31;;:::i;:::-;103721:9;103733:15;:13;:15::i;:::-;103721:27;;103716:472;103765:14;103750:11;:29;103716:472;;103817:15;103830:1;103817:12;:15::i;:::-;103805:27;;103855:9;:16;;;103896:8;103851:73;103972:1;103946:28;;:9;:14;;;:28;;;103942:111;;104019:9;:14;;;103999:34;;103942:111;104096:5;104075:26;;:17;:26;;;104071:102;;104152:1;104126:8;104135:13;;;;;;104126:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;104071:102;103716:472;103781:3;;;;;103716:472;;;;104209:8;104202:15;;;;;;;103336:900;;;:::o;42375:87::-;42421:7;42448:6;;;;;;;;;;;42441:13;;42375:87;:::o;108207:88::-;42261:13;:11;:13::i;:::-;108279:8:::1;108271:5;:16;;;;108207:88:::0;:::o;65839:104::-;65895:13;65928:7;65921:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65839:104;:::o;100376:2513::-;100519:16;100586:4;100577:5;:13;100573:45;;100599:19;;;;;;;;;;;;;;100573:45;100633:19;100667:17;100687:14;:12;:14::i;:::-;100667:34;;100787:15;:13;:15::i;:::-;100779:5;:23;100775:87;;;100831:15;:13;:15::i;:::-;100823:23;;100775:87;100938:9;100931:4;:16;100927:73;;;100975:9;100968:16;;100927:73;101014:25;101042:16;101052:5;101042:9;:16::i;:::-;101014:44;;101236:4;101228:5;:12;101224:278;;;101261:19;101290:5;101283:4;:12;101261:34;;101332:17;101318:11;:31;101314:111;;;101394:11;101374:31;;101314:111;101242:198;101224:278;;;101485:1;101465:21;;101224:278;101516:25;101558:17;101544:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101516:60;;101616:1;101595:17;:22;101591:78;;101645:8;101638:15;;;;;;;;101591:78;101813:31;101847:26;101867:5;101847:19;:26::i;:::-;101813:60;;101888:25;102133:9;:16;;;102128:92;;102190:9;:14;;;102170:34;;102128:92;102239:9;102251:5;102239:17;;102234:478;102263:4;102258:1;:9;;:45;;;;;102286:17;102271:11;:32;;102258:45;102234:478;;;102341:15;102354:1;102341:12;:15::i;:::-;102329:27;;102379:9;:16;;;102420:8;102375:73;102496:1;102470:28;;:9;:14;;;:28;;;102466:111;;102543:9;:14;;;102523:34;;102466:111;102620:5;102599:26;;:17;:26;;;102595:102;;102676:1;102650:8;102659:13;;;;;;102650:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;102595:102;102234:478;102305:3;;;;;102234:478;;;;102814:11;102804:8;102797:29;102862:8;102855:15;;;;;;;;100376:2513;;;;;;:::o;106077:30::-;;;;:::o;109420:192::-;109544:8;19408:30;19429:8;19408:20;:30::i;:::-;109561:43:::1;109585:8;109595;109561:23;:43::i;:::-;109420:192:::0;;;:::o;79505:407::-;79680:31;79693:4;79699:2;79703:7;79680:12;:31::i;:::-;79744:1;79726:2;:14;;;:19;79722:183;;79765:56;79796:4;79802:2;79806:7;79815:5;79765:30;:56::i;:::-;79760:145;;79849:40;;;;;;;;;;;;;;79760:145;79722:183;79505:407;;;;:::o;106266:28::-;;;;;;;;;;;;;:::o;98873:428::-;98957:21;;:::i;:::-;98991:31;;:::i;:::-;99047:15;:13;:15::i;:::-;99037:7;:25;:54;;;;99077:14;:12;:14::i;:::-;99066:7;:25;;99037:54;99033:103;;;99115:9;99108:16;;;;;99033:103;99158:21;99171:7;99158:12;:21::i;:::-;99146:33;;99194:9;:16;;;99190:65;;;99234:9;99227:16;;;;;99190:65;99272:21;99285:7;99272:12;:21::i;:::-;99265:28;;;98873:428;;;;:::o;66049:318::-;66122:13;66153:16;66161:7;66153;:16::i;:::-;66148:59;;66178:29;;;;;;;;;;;;;;66148:59;66220:21;66244:10;:8;:10::i;:::-;66220:34;;66297:1;66278:7;66272:21;:26;:87;;;;;;;;;;;;;;;;;66325:7;66334:18;66344:7;66334:9;:18::i;:::-;66308:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66272:87;66265:94;;;66049:318;;;:::o;106114:31::-;;;;:::o;107031:132::-;42261:13;:11;:13::i;:::-;107115:4:::1;107095:24;;:16;;;;;;;;;;;:24;;;107087:33;;;::::0;::::1;;107150:5;107131:16;;:24;;;;;;;;;;;;;;;;;;107031:132::o:0;108627:113::-;108685:7;108712:20;108726:5;108712:13;:20::i;:::-;108705:27;;108627:113;;;:::o;73103:164::-;73200:4;73224:18;:25;73243:5;73224:25;;;;;;;;;;;;;;;:35;73250:8;73224:35;;;;;;;;;;;;;;;;;;;;;;;;;73217:42;;73103:164;;;;:::o;106301:88::-;;;;:::o;108858:283::-;42261:13;:11;:13::i;:::-;108945:1:::1;108934:8;:12;108926:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;109031:9;;109019:8;109003:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;108981:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;109102:31;109112:10;109124:8;109102:9;:31::i;:::-;108858:283:::0;:::o;43274:201::-;42261:13;:11;:13::i;:::-;43383:1:::1;43363:22;;:8;:22;;::::0;43355:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43439:28;43458:8;43439:18;:28::i;:::-;43274:201:::0;:::o;109149:117::-;42261:13;:11;:13::i;:::-;109245::::1;109230:12;:28;;;;109149:117:::0;:::o;73525:282::-;73590:4;73646:7;73627:15;:13;:15::i;:::-;:26;;:66;;;;;73680:13;;73670:7;:23;73627:66;:153;;;;;73779:1;57533:8;73731:17;:26;73749:7;73731:26;;;;;;;;;;;;:44;:49;73627:153;73607:173;;73525:282;;;:::o;19551:647::-;19790:1;10042:42;19742:45;;;:49;19738:453;;;10042:42;20041;;;20092:4;20099:8;20041:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20036:144;;20155:8;20136:28;;;;;;;;;;;:::i;:::-;;;;;;;;20036:144;19738:453;19551:647;:::o;71587:408::-;71676:13;71692:16;71700:7;71692;:16::i;:::-;71676:32;;71748:5;71725:28;;:19;:17;:19::i;:::-;:28;;;71721:175;;71773:44;71790:5;71797:19;:17;:19::i;:::-;71773:16;:44::i;:::-;71768:128;;71845:35;;;;;;;;;;;;;;71768:128;71721:175;71941:2;71908:15;:24;71924:7;71908:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;71979:7;71975:2;71959:28;;71968:5;71959:28;;;;;;;;;;;;71665:330;71587:408;;:::o;42540:132::-;42615:12;:10;:12::i;:::-;42604:23;;:7;:5;:7::i;:::-;:23;;;42596:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42540:132::o;106524:101::-;106589:7;106616:1;106609:8;;106524:101;:::o;62913:178::-;62974:7;56757:13;56895:2;63002:18;:25;63021:5;63002:25;;;;;;;;;;;;;;;;:50;;63001:82;62994:89;;62913:178;;;:::o;1222:156::-;1313:4;1366;1337:25;1350:5;1357:4;1337:12;:25::i;:::-;:33;1330:40;;1222:156;;;;;:::o;89665:112::-;89742:27;89752:2;89756:8;89742:27;;;;;;;;;;;;:9;:27::i;:::-;89665:112;;:::o;75793:2825::-;75935:27;75965;75984:7;75965:18;:27::i;:::-;75935:57;;76050:4;76009:45;;76025:19;76009:45;;;76005:86;;76063:28;;;;;;;;;;;;;;76005:86;76105:27;76134:23;76161:35;76188:7;76161:26;:35::i;:::-;76104:92;;;;76296:68;76321:15;76338:4;76344:19;:17;:19::i;:::-;76296:24;:68::i;:::-;76291:180;;76384:43;76401:4;76407:19;:17;:19::i;:::-;76384:16;:43::i;:::-;76379:92;;76436:35;;;;;;;;;;;;;;76379:92;76291:180;76502:1;76488:16;;:2;:16;;;76484:52;;76513:23;;;;;;;;;;;;;;76484:52;76549:43;76571:4;76577:2;76581:7;76590:1;76549:21;:43::i;:::-;76685:15;76682:160;;;76825:1;76804:19;76797:30;76682:160;77222:18;:24;77241:4;77222:24;;;;;;;;;;;;;;;;77220:26;;;;;;;;;;;;77291:18;:22;77310:2;77291:22;;;;;;;;;;;;;;;;77289:24;;;;;;;;;;;77613:146;77650:2;77699:45;77714:4;77720:2;77724:19;77699:14;:45::i;:::-;57813:8;77671:73;77613:18;:146::i;:::-;77584:17;:26;77602:7;77584:26;;;;;;;;;;;:175;;;;77930:1;57813:8;77879:19;:47;:52;77875:627;;77952:19;77984:1;77974:7;:11;77952:33;;78141:1;78107:17;:30;78125:11;78107:30;;;;;;;;;;;;:35;78103:384;;78245:13;;78230:11;:28;78226:242;;78425:19;78392:17;:30;78410:11;78392:30;;;;;;;;;;;:52;;;;78226:242;78103:384;77933:569;77875:627;78549:7;78545:2;78530:27;;78539:4;78530:27;;;;;;;;;;;;78568:42;78589:4;78595:2;78599:7;78608:1;78568:20;:42::i;:::-;75924:2694;;;75793:2825;;;:::o;78714:193::-;78860:39;78877:4;78883:2;78887:7;78860:39;;;;;;;;;;;;:16;:39::i;:::-;78714:193;;;:::o;68211:1275::-;68278:7;68298:12;68313:7;68298:22;;68381:4;68362:15;:13;:15::i;:::-;:23;68358:1061;;68415:13;;68408:4;:20;68404:1015;;;68453:14;68470:17;:23;68488:4;68470:23;;;;;;;;;;;;68453:40;;68587:1;57533:8;68559:6;:24;:29;68555:845;;69224:113;69241:1;69231:6;:11;69224:113;;69284:17;:25;69302:6;;;;;;;69284:25;;;;;;;;;;;;69275:34;;69224:113;;;69370:6;69363:13;;;;;;68555:845;68430:989;68404:1015;68358:1061;69447:31;;;;;;;;;;;;;;68211:1275;;;;:::o;43635:191::-;43709:16;43728:6;;;;;;;;;;;43709:25;;43754:8;43745:6;;:17;;;;;;;;;;;;;;;;;;43809:8;43778:40;;43799:8;43778:40;;;;;;;;;;;;43698:128;43635:191;:::o;67659:161::-;67727:21;;:::i;:::-;67768:44;67787:17;:24;67805:5;67787:24;;;;;;;;;;;;67768:18;:44::i;:::-;67761:51;;67659:161;;;:::o;61101:103::-;61156:7;61183:13;;61176:20;;61101:103;:::o;72712:234::-;72859:8;72807:18;:39;72826:19;:17;:19::i;:::-;72807:39;;;;;;;;;;;;;;;:49;72847:8;72807:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;72919:8;72883:55;;72898:19;:17;:19::i;:::-;72883:55;;;72929:8;72883:55;;;;;;:::i;:::-;;;;;;;;72712:234;;:::o;81996:716::-;82159:4;82205:2;82180:45;;;82226:19;:17;:19::i;:::-;82247:4;82253:7;82262:5;82180:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;82176:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82480:1;82463:6;:13;:18;82459:235;;82509:40;;;;;;;;;;;;;;82459:235;82652:6;82646:13;82637:6;82633:2;82629:15;82622:38;82176:529;82349:54;;;82339:64;;;:6;:64;;;;82332:71;;;81996:716;;;;;;:::o;67397:166::-;67467:21;;:::i;:::-;67508:47;67527:27;67546:7;67527:18;:27::i;:::-;67508:18;:47::i;:::-;67501:54;;67397:166;;;:::o;108396:108::-;108456:13;108489:7;108482:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108396:108;:::o;96040:1745::-;96105:17;96539:4;96532;96526:11;96522:22;96631:1;96625:4;96618:15;96706:4;96703:1;96699:12;96692:19;;96788:1;96783:3;96776:14;96892:3;97131:5;97113:428;97139:1;97113:428;;;97179:1;97174:3;97170:11;97163:18;;97350:2;97344:4;97340:13;97336:2;97332:22;97327:3;97319:36;97444:2;97438:4;97434:13;97426:21;;97511:4;97113:428;97501:25;97113:428;97117:21;97580:3;97575;97571:13;97695:4;97690:3;97686:14;97679:21;;97760:6;97755:3;97748:19;96144:1634;;;96040:1745;;;:::o;95833:105::-;95893:7;95920:10;95913:17;;95833:105;:::o;40926:98::-;40979:7;41006:10;40999:17;;40926:98;:::o;2021:296::-;2104:7;2124:20;2147:4;2124:27;;2167:9;2162:118;2186:5;:12;2182:1;:16;2162:118;;;2235:33;2245:12;2259:5;2265:1;2259:8;;;;;;;;:::i;:::-;;;;;;;;2235:9;:33::i;:::-;2220:48;;2200:3;;;;;:::i;:::-;;;;2162:118;;;;2297:12;2290:19;;;2021:296;;;;:::o;88892:689::-;89023:19;89029:2;89033:8;89023:5;:19::i;:::-;89102:1;89084:2;:14;;;:19;89080:483;;89124:11;89138:13;;89124:27;;89170:13;89192:8;89186:3;:14;89170:30;;89219:233;89250:62;89289:1;89293:2;89297:7;;;;;;89306:5;89250:30;:62::i;:::-;89245:167;;89348:40;;;;;;;;;;;;;;89245:167;89447:3;89439:5;:11;89219:233;;89534:3;89517:13;;:20;89513:34;;89539:8;;;89513:34;89105:458;;89080:483;88892:689;;;:::o;74688:485::-;74790:27;74819:23;74860:38;74901:15;:24;74917:7;74901:24;;;;;;;;;;;74860:65;;75078:18;75055:41;;75135:19;75129:26;75110:45;;75040:126;74688:485;;;:::o;73916:659::-;74065:11;74230:16;74223:5;74219:28;74210:37;;74390:16;74379:9;74375:32;74362:45;;74540:15;74529:9;74526:30;74518:5;74507:9;74504:20;74501:56;74491:66;;73916:659;;;;;:::o;80574:159::-;;;;;:::o;95142:311::-;95277:7;95297:16;57937:3;95323:19;:41;;95297:68;;57937:3;95391:31;95402:4;95408:2;95412:9;95391:10;:31::i;:::-;95383:40;;:62;;95376:69;;;95142:311;;;;;:::o;70034:450::-;70114:14;70282:16;70275:5;70271:28;70262:37;;70459:5;70445:11;70420:23;70416:41;70413:52;70406:5;70403:63;70393:73;;70034:450;;;;:::o;81398:158::-;;;;;:::o;69585:366::-;69651:31;;:::i;:::-;69728:6;69695:9;:14;;:41;;;;;;;;;;;57416:3;69781:6;:33;;69747:9;:24;;:68;;;;;;;;;;;69873:1;57533:8;69845:6;:24;:29;;69826:9;:16;;:48;;;;;;;;;;;57937:3;69914:6;:28;;69885:9;:19;;:58;;;;;;;;;;;69585:366;;;:::o;9459:149::-;9522:7;9553:1;9549;:5;:51;;9580:20;9595:1;9598;9580:14;:20::i;:::-;9549:51;;;9557:20;9572:1;9575;9557:14;:20::i;:::-;9549:51;9542:58;;9459:149;;;;:::o;83174:2966::-;83247:20;83270:13;;83247:36;;83310:1;83298:8;:13;83294:44;;83320:18;;;;;;;;;;;;;;83294:44;83351:61;83381:1;83385:2;83389:12;83403:8;83351:21;:61::i;:::-;83895:1;56895:2;83865:1;:26;;83864:32;83852:8;:45;83826:18;:22;83845:2;83826:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;84174:139;84211:2;84265:33;84288:1;84292:2;84296:1;84265:14;:33::i;:::-;84232:30;84253:8;84232:20;:30::i;:::-;:66;84174:18;:139::i;:::-;84140:17;:31;84158:12;84140:31;;;;;;;;;;;:173;;;;84330:16;84361:11;84390:8;84375:12;:23;84361:37;;84911:16;84907:2;84903:25;84891:37;;85283:12;85243:8;85202:1;85140:25;85081:1;85020;84993:335;85654:1;85640:12;85636:20;85594:346;85695:3;85686:7;85683:16;85594:346;;85913:7;85903:8;85900:1;85873:25;85870:1;85867;85862:59;85748:1;85739:7;85735:15;85724:26;;85594:346;;;85598:77;85985:1;85973:8;:13;85969:45;;85995:19;;;;;;;;;;;;;;85969:45;86047:3;86031:13;:19;;;;83600:2462;;86072:60;86101:1;86105:2;86109:12;86123:8;86072:20;:60::i;:::-;83236:2904;83174:2966;;:::o;94843:147::-;94980:6;94843:147;;;;;:::o;9616:268::-;9684:13;9791:1;9785:4;9778:15;9820:1;9814:4;9807:15;9861:4;9855;9845:21;9836:30;;9616:268;;;;:::o;70586:324::-;70656:14;70889:1;70879:8;70876:15;70850:24;70846:46;70836:56;;70586:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:77::-;5279:7;5308:5;5297:16;;5242:77;;;:::o;5325:122::-;5398:24;5416:5;5398:24;:::i;:::-;5391:5;5388:35;5378:63;;5437:1;5434;5427:12;5378:63;5325:122;:::o;5453:139::-;5499:5;5537:6;5524:20;5515:29;;5553:33;5580:5;5553:33;:::i;:::-;5453:139;;;;:::o;5598:329::-;5657:6;5706:2;5694:9;5685:7;5681:23;5677:32;5674:119;;;5712:79;;:::i;:::-;5674:119;5832:1;5857:53;5902:7;5893:6;5882:9;5878:22;5857:53;:::i;:::-;5847:63;;5803:117;5598:329;;;;:::o;5933:117::-;6042:1;6039;6032:12;6056:117;6165:1;6162;6155:12;6179:117;6288:1;6285;6278:12;6319:568;6392:8;6402:6;6452:3;6445:4;6437:6;6433:17;6429:27;6419:122;;6460:79;;:::i;:::-;6419:122;6573:6;6560:20;6550:30;;6603:18;6595:6;6592:30;6589:117;;;6625:79;;:::i;:::-;6589:117;6739:4;6731:6;6727:17;6715:29;;6793:3;6785:4;6777:6;6773:17;6763:8;6759:32;6756:41;6753:128;;;6800:79;;:::i;:::-;6753:128;6319:568;;;;;:::o;6893:704::-;6988:6;6996;7004;7053:2;7041:9;7032:7;7028:23;7024:32;7021:119;;;7059:79;;:::i;:::-;7021:119;7179:1;7204:53;7249:7;7240:6;7229:9;7225:22;7204:53;:::i;:::-;7194:63;;7150:117;7334:2;7323:9;7319:18;7306:32;7365:18;7357:6;7354:30;7351:117;;;7387:79;;:::i;:::-;7351:117;7500:80;7572:7;7563:6;7552:9;7548:22;7500:80;:::i;:::-;7482:98;;;;7277:313;6893:704;;;;;:::o;7603:619::-;7680:6;7688;7696;7745:2;7733:9;7724:7;7720:23;7716:32;7713:119;;;7751:79;;:::i;:::-;7713:119;7871:1;7896:53;7941:7;7932:6;7921:9;7917:22;7896:53;:::i;:::-;7886:63;;7842:117;7998:2;8024:53;8069:7;8060:6;8049:9;8045:22;8024:53;:::i;:::-;8014:63;;7969:118;8126:2;8152:53;8197:7;8188:6;8177:9;8173:22;8152:53;:::i;:::-;8142:63;;8097:118;7603:619;;;;;:::o;8228:60::-;8256:3;8277:5;8270:12;;8228:60;;;:::o;8294:142::-;8344:9;8377:53;8395:34;8404:24;8422:5;8404:24;:::i;:::-;8395:34;:::i;:::-;8377:53;:::i;:::-;8364:66;;8294:142;;;:::o;8442:126::-;8492:9;8525:37;8556:5;8525:37;:::i;:::-;8512:50;;8442:126;;;:::o;8574:157::-;8655:9;8688:37;8719:5;8688:37;:::i;:::-;8675:50;;8574:157;;;:::o;8737:193::-;8855:68;8917:5;8855:68;:::i;:::-;8850:3;8843:81;8737:193;;:::o;8936:284::-;9060:4;9098:2;9087:9;9083:18;9075:26;;9111:102;9210:1;9199:9;9195:17;9186:6;9111:102;:::i;:::-;8936:284;;;;:::o;9226:117::-;9335:1;9332;9325:12;9349:180;9397:77;9394:1;9387:88;9494:4;9491:1;9484:15;9518:4;9515:1;9508:15;9535:281;9618:27;9640:4;9618:27;:::i;:::-;9610:6;9606:40;9748:6;9736:10;9733:22;9712:18;9700:10;9697:34;9694:62;9691:88;;;9759:18;;:::i;:::-;9691:88;9799:10;9795:2;9788:22;9578:238;9535:281;;:::o;9822:129::-;9856:6;9883:20;;:::i;:::-;9873:30;;9912:33;9940:4;9932:6;9912:33;:::i;:::-;9822:129;;;:::o;9957:308::-;10019:4;10109:18;10101:6;10098:30;10095:56;;;10131:18;;:::i;:::-;10095:56;10169:29;10191:6;10169:29;:::i;:::-;10161:37;;10253:4;10247;10243:15;10235:23;;9957:308;;;:::o;10271:146::-;10368:6;10363:3;10358;10345:30;10409:1;10400:6;10395:3;10391:16;10384:27;10271:146;;;:::o;10423:425::-;10501:5;10526:66;10542:49;10584:6;10542:49;:::i;:::-;10526:66;:::i;:::-;10517:75;;10615:6;10608:5;10601:21;10653:4;10646:5;10642:16;10691:3;10682:6;10677:3;10673:16;10670:25;10667:112;;;10698:79;;:::i;:::-;10667:112;10788:54;10835:6;10830:3;10825;10788:54;:::i;:::-;10507:341;10423:425;;;;;:::o;10868:340::-;10924:5;10973:3;10966:4;10958:6;10954:17;10950:27;10940:122;;10981:79;;:::i;:::-;10940:122;11098:6;11085:20;11123:79;11198:3;11190:6;11183:4;11175:6;11171:17;11123:79;:::i;:::-;11114:88;;10930:278;10868:340;;;;:::o;11214:509::-;11283:6;11332:2;11320:9;11311:7;11307:23;11303:32;11300:119;;;11338:79;;:::i;:::-;11300:119;11486:1;11475:9;11471:17;11458:31;11516:18;11508:6;11505:30;11502:117;;;11538:79;;:::i;:::-;11502:117;11643:63;11698:7;11689:6;11678:9;11674:22;11643:63;:::i;:::-;11633:73;;11429:287;11214:509;;;;:::o;11746:568::-;11819:8;11829:6;11879:3;11872:4;11864:6;11860:17;11856:27;11846:122;;11887:79;;:::i;:::-;11846:122;12000:6;11987:20;11977:30;;12030:18;12022:6;12019:30;12016:117;;;12052:79;;:::i;:::-;12016:117;12166:4;12158:6;12154:17;12142:29;;12220:3;12212:4;12204:6;12200:17;12190:8;12186:32;12183:41;12180:128;;;12227:79;;:::i;:::-;12180:128;11746:568;;;;;:::o;12320:559::-;12406:6;12414;12463:2;12451:9;12442:7;12438:23;12434:32;12431:119;;;12469:79;;:::i;:::-;12431:119;12617:1;12606:9;12602:17;12589:31;12647:18;12639:6;12636:30;12633:117;;;12669:79;;:::i;:::-;12633:117;12782:80;12854:7;12845:6;12834:9;12830:22;12782:80;:::i;:::-;12764:98;;;;12560:312;12320:559;;;;;:::o;12885:146::-;12984:6;13018:5;13012:12;13002:22;;12885:146;;;:::o;13037:216::-;13168:11;13202:6;13197:3;13190:19;13242:4;13237:3;13233:14;13218:29;;13037:216;;;;:::o;13259:164::-;13358:4;13381:3;13373:11;;13411:4;13406:3;13402:14;13394:22;;13259:164;;;:::o;13429:108::-;13506:24;13524:5;13506:24;:::i;:::-;13501:3;13494:37;13429:108;;:::o;13543:101::-;13579:7;13619:18;13612:5;13608:30;13597:41;;13543:101;;;:::o;13650:105::-;13725:23;13742:5;13725:23;:::i;:::-;13720:3;13713:36;13650:105;;:::o;13761:99::-;13832:21;13847:5;13832:21;:::i;:::-;13827:3;13820:34;13761:99;;:::o;13866:91::-;13902:7;13942:8;13935:5;13931:20;13920:31;;13866:91;;;:::o;13963:105::-;14038:23;14055:5;14038:23;:::i;:::-;14033:3;14026:36;13963:105;;:::o;14146:866::-;14297:4;14292:3;14288:14;14384:4;14377:5;14373:16;14367:23;14403:63;14460:4;14455:3;14451:14;14437:12;14403:63;:::i;:::-;14312:164;14568:4;14561:5;14557:16;14551:23;14587:61;14642:4;14637:3;14633:14;14619:12;14587:61;:::i;:::-;14486:172;14742:4;14735:5;14731:16;14725:23;14761:57;14812:4;14807:3;14803:14;14789:12;14761:57;:::i;:::-;14668:160;14915:4;14908:5;14904:16;14898:23;14934:61;14989:4;14984:3;14980:14;14966:12;14934:61;:::i;:::-;14838:167;14266:746;14146:866;;:::o;15018:307::-;15151:10;15172:110;15278:3;15270:6;15172:110;:::i;:::-;15314:4;15309:3;15305:14;15291:28;;15018:307;;;;:::o;15331:145::-;15433:4;15465;15460:3;15456:14;15448:22;;15331:145;;;:::o;15558:988::-;15741:3;15770:86;15850:5;15770:86;:::i;:::-;15872:118;15983:6;15978:3;15872:118;:::i;:::-;15865:125;;16014:88;16096:5;16014:88;:::i;:::-;16125:7;16156:1;16141:380;16166:6;16163:1;16160:13;16141:380;;;16242:6;16236:13;16269:127;16392:3;16377:13;16269:127;:::i;:::-;16262:134;;16419:92;16504:6;16419:92;:::i;:::-;16409:102;;16201:320;16188:1;16185;16181:9;16176:14;;16141:380;;;16145:14;16537:3;16530:10;;15746:800;;;15558:988;;;;:::o;16552:501::-;16759:4;16797:2;16786:9;16782:18;16774:26;;16846:9;16840:4;16836:20;16832:1;16821:9;16817:17;16810:47;16874:172;17041:4;17032:6;16874:172;:::i;:::-;16866:180;;16552:501;;;;:::o;17059:329::-;17118:6;17167:2;17155:9;17146:7;17142:23;17138:32;17135:119;;;17173:79;;:::i;:::-;17135:119;17293:1;17318:53;17363:7;17354:6;17343:9;17339:22;17318:53;:::i;:::-;17308:63;;17264:117;17059:329;;;;:::o;17394:114::-;17461:6;17495:5;17489:12;17479:22;;17394:114;;;:::o;17514:184::-;17613:11;17647:6;17642:3;17635:19;17687:4;17682:3;17678:14;17663:29;;17514:184;;;;:::o;17704:132::-;17771:4;17794:3;17786:11;;17824:4;17819:3;17815:14;17807:22;;17704:132;;;:::o;17842:108::-;17919:24;17937:5;17919:24;:::i;:::-;17914:3;17907:37;17842:108;;:::o;17956:179::-;18025:10;18046:46;18088:3;18080:6;18046:46;:::i;:::-;18124:4;18119:3;18115:14;18101:28;;17956:179;;;;:::o;18141:113::-;18211:4;18243;18238:3;18234:14;18226:22;;18141:113;;;:::o;18290:732::-;18409:3;18438:54;18486:5;18438:54;:::i;:::-;18508:86;18587:6;18582:3;18508:86;:::i;:::-;18501:93;;18618:56;18668:5;18618:56;:::i;:::-;18697:7;18728:1;18713:284;18738:6;18735:1;18732:13;18713:284;;;18814:6;18808:13;18841:63;18900:3;18885:13;18841:63;:::i;:::-;18834:70;;18927:60;18980:6;18927:60;:::i;:::-;18917:70;;18773:224;18760:1;18757;18753:9;18748:14;;18713:284;;;18717:14;19013:3;19006:10;;18414:608;;;18290:732;;;;:::o;19028:373::-;19171:4;19209:2;19198:9;19194:18;19186:26;;19258:9;19252:4;19248:20;19244:1;19233:9;19229:17;19222:47;19286:108;19389:4;19380:6;19286:108;:::i;:::-;19278:116;;19028:373;;;;:::o;19407:619::-;19484:6;19492;19500;19549:2;19537:9;19528:7;19524:23;19520:32;19517:119;;;19555:79;;:::i;:::-;19517:119;19675:1;19700:53;19745:7;19736:6;19725:9;19721:22;19700:53;:::i;:::-;19690:63;;19646:117;19802:2;19828:53;19873:7;19864:6;19853:9;19849:22;19828:53;:::i;:::-;19818:63;;19773:118;19930:2;19956:53;20001:7;19992:6;19981:9;19977:22;19956:53;:::i;:::-;19946:63;;19901:118;19407:619;;;;;:::o;20032:116::-;20102:21;20117:5;20102:21;:::i;:::-;20095:5;20092:32;20082:60;;20138:1;20135;20128:12;20082:60;20032:116;:::o;20154:133::-;20197:5;20235:6;20222:20;20213:29;;20251:30;20275:5;20251:30;:::i;:::-;20154:133;;;;:::o;20293:468::-;20358:6;20366;20415:2;20403:9;20394:7;20390:23;20386:32;20383:119;;;20421:79;;:::i;:::-;20383:119;20541:1;20566:53;20611:7;20602:6;20591:9;20587:22;20566:53;:::i;:::-;20556:63;;20512:117;20668:2;20694:50;20736:7;20727:6;20716:9;20712:22;20694:50;:::i;:::-;20684:60;;20639:115;20293:468;;;;;:::o;20767:307::-;20828:4;20918:18;20910:6;20907:30;20904:56;;;20940:18;;:::i;:::-;20904:56;20978:29;21000:6;20978:29;:::i;:::-;20970:37;;21062:4;21056;21052:15;21044:23;;20767:307;;;:::o;21080:423::-;21157:5;21182:65;21198:48;21239:6;21198:48;:::i;:::-;21182:65;:::i;:::-;21173:74;;21270:6;21263:5;21256:21;21308:4;21301:5;21297:16;21346:3;21337:6;21332:3;21328:16;21325:25;21322:112;;;21353:79;;:::i;:::-;21322:112;21443:54;21490:6;21485:3;21480;21443:54;:::i;:::-;21163:340;21080:423;;;;;:::o;21522:338::-;21577:5;21626:3;21619:4;21611:6;21607:17;21603:27;21593:122;;21634:79;;:::i;:::-;21593:122;21751:6;21738:20;21776:78;21850:3;21842:6;21835:4;21827:6;21823:17;21776:78;:::i;:::-;21767:87;;21583:277;21522:338;;;;:::o;21866:943::-;21961:6;21969;21977;21985;22034:3;22022:9;22013:7;22009:23;22005:33;22002:120;;;22041:79;;:::i;:::-;22002:120;22161:1;22186:53;22231:7;22222:6;22211:9;22207:22;22186:53;:::i;:::-;22176:63;;22132:117;22288:2;22314:53;22359:7;22350:6;22339:9;22335:22;22314:53;:::i;:::-;22304:63;;22259:118;22416:2;22442:53;22487:7;22478:6;22467:9;22463:22;22442:53;:::i;:::-;22432:63;;22387:118;22572:2;22561:9;22557:18;22544:32;22603:18;22595:6;22592:30;22589:117;;;22625:79;;:::i;:::-;22589:117;22730:62;22784:7;22775:6;22764:9;22760:22;22730:62;:::i;:::-;22720:72;;22515:287;21866:943;;;;;;;:::o;22887:876::-;23048:4;23043:3;23039:14;23135:4;23128:5;23124:16;23118:23;23154:63;23211:4;23206:3;23202:14;23188:12;23154:63;:::i;:::-;23063:164;23319:4;23312:5;23308:16;23302:23;23338:61;23393:4;23388:3;23384:14;23370:12;23338:61;:::i;:::-;23237:172;23493:4;23486:5;23482:16;23476:23;23512:57;23563:4;23558:3;23554:14;23540:12;23512:57;:::i;:::-;23419:160;23666:4;23659:5;23655:16;23649:23;23685:61;23740:4;23735:3;23731:14;23717:12;23685:61;:::i;:::-;23589:167;23017:746;22887:876;;:::o;23769:351::-;23926:4;23964:3;23953:9;23949:19;23941:27;;23978:135;24110:1;24099:9;24095:17;24086:6;23978:135;:::i;:::-;23769:351;;;;:::o;24126:474::-;24194:6;24202;24251:2;24239:9;24230:7;24226:23;24222:32;24219:119;;;24257:79;;:::i;:::-;24219:119;24377:1;24402:53;24447:7;24438:6;24427:9;24423:22;24402:53;:::i;:::-;24392:63;;24348:117;24504:2;24530:53;24575:7;24566:6;24555:9;24551:22;24530:53;:::i;:::-;24520:63;;24475:118;24126:474;;;;;:::o;24606:118::-;24693:24;24711:5;24693:24;:::i;:::-;24688:3;24681:37;24606:118;;:::o;24730:222::-;24823:4;24861:2;24850:9;24846:18;24838:26;;24874:71;24942:1;24931:9;24927:17;24918:6;24874:71;:::i;:::-;24730:222;;;;:::o;24958:180::-;25006:77;25003:1;24996:88;25103:4;25100:1;25093:15;25127:4;25124:1;25117:15;25144:320;25188:6;25225:1;25219:4;25215:12;25205:22;;25272:1;25266:4;25262:12;25293:18;25283:81;;25349:4;25341:6;25337:17;25327:27;;25283:81;25411:2;25403:6;25400:14;25380:18;25377:38;25374:84;;25430:18;;:::i;:::-;25374:84;25195:269;25144:320;;;:::o;25470:180::-;25518:77;25515:1;25508:88;25615:4;25612:1;25605:15;25639:4;25636:1;25629:15;25656:191;25696:3;25715:20;25733:1;25715:20;:::i;:::-;25710:25;;25749:20;25767:1;25749:20;:::i;:::-;25744:25;;25792:1;25789;25785:9;25778:16;;25813:3;25810:1;25807:10;25804:36;;;25820:18;;:::i;:::-;25804:36;25656:191;;;;:::o;25853:94::-;25886:8;25934:5;25930:2;25926:14;25905:35;;25853:94;;;:::o;25953:::-;25992:7;26021:20;26035:5;26021:20;:::i;:::-;26010:31;;25953:94;;;:::o;26053:100::-;26092:7;26121:26;26141:5;26121:26;:::i;:::-;26110:37;;26053:100;;;:::o;26159:157::-;26264:45;26284:24;26302:5;26284:24;:::i;:::-;26264:45;:::i;:::-;26259:3;26252:58;26159:157;;:::o;26322:79::-;26361:7;26390:5;26379:16;;26322:79;;;:::o;26407:157::-;26512:45;26532:24;26550:5;26532:24;:::i;:::-;26512:45;:::i;:::-;26507:3;26500:58;26407:157;;:::o;26570:397::-;26710:3;26725:75;26796:3;26787:6;26725:75;:::i;:::-;26825:2;26820:3;26816:12;26809:19;;26838:75;26909:3;26900:6;26838:75;:::i;:::-;26938:2;26933:3;26929:12;26922:19;;26958:3;26951:10;;26570:397;;;;;:::o;26973:232::-;27113:34;27109:1;27101:6;27097:14;27090:58;27182:15;27177:2;27169:6;27165:15;27158:40;26973:232;:::o;27211:366::-;27353:3;27374:67;27438:2;27433:3;27374:67;:::i;:::-;27367:74;;27450:93;27539:3;27450:93;:::i;:::-;27568:2;27563:3;27559:12;27552:19;;27211:366;;;:::o;27583:419::-;27749:4;27787:2;27776:9;27772:18;27764:26;;27836:9;27830:4;27826:20;27822:1;27811:9;27807:17;27800:47;27864:131;27990:4;27864:131;:::i;:::-;27856:139;;27583:419;;;:::o;28008:410::-;28048:7;28071:20;28089:1;28071:20;:::i;:::-;28066:25;;28105:20;28123:1;28105:20;:::i;:::-;28100:25;;28160:1;28157;28153:9;28182:30;28200:11;28182:30;:::i;:::-;28171:41;;28361:1;28352:7;28348:15;28345:1;28342:22;28322:1;28315:9;28295:83;28272:139;;28391:18;;:::i;:::-;28272:139;28056:362;28008:410;;;;:::o;28424:168::-;28564:20;28560:1;28552:6;28548:14;28541:44;28424:168;:::o;28598:366::-;28740:3;28761:67;28825:2;28820:3;28761:67;:::i;:::-;28754:74;;28837:93;28926:3;28837:93;:::i;:::-;28955:2;28950:3;28946:12;28939:19;;28598:366;;;:::o;28970:419::-;29136:4;29174:2;29163:9;29159:18;29151:26;;29223:9;29217:4;29213:20;29209:1;29198:9;29194:17;29187:47;29251:131;29377:4;29251:131;:::i;:::-;29243:139;;28970:419;;;:::o;29395:141::-;29444:4;29467:3;29459:11;;29490:3;29487:1;29480:14;29524:4;29521:1;29511:18;29503:26;;29395:141;;;:::o;29542:93::-;29579:6;29626:2;29621;29614:5;29610:14;29606:23;29596:33;;29542:93;;;:::o;29641:107::-;29685:8;29735:5;29729:4;29725:16;29704:37;;29641:107;;;;:::o;29754:393::-;29823:6;29873:1;29861:10;29857:18;29896:97;29926:66;29915:9;29896:97;:::i;:::-;30014:39;30044:8;30033:9;30014:39;:::i;:::-;30002:51;;30086:4;30082:9;30075:5;30071:21;30062:30;;30135:4;30125:8;30121:19;30114:5;30111:30;30101:40;;29830:317;;29754:393;;;;;:::o;30153:142::-;30203:9;30236:53;30254:34;30263:24;30281:5;30263:24;:::i;:::-;30254:34;:::i;:::-;30236:53;:::i;:::-;30223:66;;30153:142;;;:::o;30301:75::-;30344:3;30365:5;30358:12;;30301:75;;;:::o;30382:269::-;30492:39;30523:7;30492:39;:::i;:::-;30553:91;30602:41;30626:16;30602:41;:::i;:::-;30594:6;30587:4;30581:11;30553:91;:::i;:::-;30547:4;30540:105;30458:193;30382:269;;;:::o;30657:73::-;30702:3;30657:73;:::o;30736:189::-;30813:32;;:::i;:::-;30854:65;30912:6;30904;30898:4;30854:65;:::i;:::-;30789:136;30736:189;;:::o;30931:186::-;30991:120;31008:3;31001:5;30998:14;30991:120;;;31062:39;31099:1;31092:5;31062:39;:::i;:::-;31035:1;31028:5;31024:13;31015:22;;30991:120;;;30931:186;;:::o;31123:543::-;31224:2;31219:3;31216:11;31213:446;;;31258:38;31290:5;31258:38;:::i;:::-;31342:29;31360:10;31342:29;:::i;:::-;31332:8;31328:44;31525:2;31513:10;31510:18;31507:49;;;31546:8;31531:23;;31507:49;31569:80;31625:22;31643:3;31625:22;:::i;:::-;31615:8;31611:37;31598:11;31569:80;:::i;:::-;31228:431;;31213:446;31123:543;;;:::o;31672:117::-;31726:8;31776:5;31770:4;31766:16;31745:37;;31672:117;;;;:::o;31795:169::-;31839:6;31872:51;31920:1;31916:6;31908:5;31905:1;31901:13;31872:51;:::i;:::-;31868:56;31953:4;31947;31943:15;31933:25;;31846:118;31795:169;;;;:::o;31969:295::-;32045:4;32191:29;32216:3;32210:4;32191:29;:::i;:::-;32183:37;;32253:3;32250:1;32246:11;32240:4;32237:21;32229:29;;31969:295;;;;:::o;32269:1395::-;32386:37;32419:3;32386:37;:::i;:::-;32488:18;32480:6;32477:30;32474:56;;;32510:18;;:::i;:::-;32474:56;32554:38;32586:4;32580:11;32554:38;:::i;:::-;32639:67;32699:6;32691;32685:4;32639:67;:::i;:::-;32733:1;32757:4;32744:17;;32789:2;32781:6;32778:14;32806:1;32801:618;;;;33463:1;33480:6;33477:77;;;33529:9;33524:3;33520:19;33514:26;33505:35;;33477:77;33580:67;33640:6;33633:5;33580:67;:::i;:::-;33574:4;33567:81;33436:222;32771:887;;32801:618;32853:4;32849:9;32841:6;32837:22;32887:37;32919:4;32887:37;:::i;:::-;32946:1;32960:208;32974:7;32971:1;32968:14;32960:208;;;33053:9;33048:3;33044:19;33038:26;33030:6;33023:42;33104:1;33096:6;33092:14;33082:24;;33151:2;33140:9;33136:18;33123:31;;32997:4;32994:1;32990:12;32985:17;;32960:208;;;33196:6;33187:7;33184:19;33181:179;;;33254:9;33249:3;33245:19;33239:26;33297:48;33339:4;33331:6;33327:17;33316:9;33297:48;:::i;:::-;33289:6;33282:64;33204:156;33181:179;33406:1;33402;33394:6;33390:14;33386:22;33380:4;33373:36;32808:611;;;32771:887;;32361:1303;;;32269:1395;;:::o;33670:180::-;33718:77;33715:1;33708:88;33815:4;33812:1;33805:15;33839:4;33836:1;33829:15;33856:148;33958:11;33995:3;33980:18;;33856:148;;;;:::o;34010:390::-;34116:3;34144:39;34177:5;34144:39;:::i;:::-;34199:89;34281:6;34276:3;34199:89;:::i;:::-;34192:96;;34297:65;34355:6;34350:3;34343:4;34336:5;34332:16;34297:65;:::i;:::-;34387:6;34382:3;34378:16;34371:23;;34120:280;34010:390;;;;:::o;34406:435::-;34586:3;34608:95;34699:3;34690:6;34608:95;:::i;:::-;34601:102;;34720:95;34811:3;34802:6;34720:95;:::i;:::-;34713:102;;34832:3;34825:10;;34406:435;;;;;:::o;34847:169::-;34987:21;34983:1;34975:6;34971:14;34964:45;34847:169;:::o;35022:366::-;35164:3;35185:67;35249:2;35244:3;35185:67;:::i;:::-;35178:74;;35261:93;35350:3;35261:93;:::i;:::-;35379:2;35374:3;35370:12;35363:19;;35022:366;;;:::o;35394:419::-;35560:4;35598:2;35587:9;35583:18;35575:26;;35647:9;35641:4;35637:20;35633:1;35622:9;35618:17;35611:47;35675:131;35801:4;35675:131;:::i;:::-;35667:139;;35394:419;;;:::o;35819:173::-;35959:25;35955:1;35947:6;35943:14;35936:49;35819:173;:::o;35998:366::-;36140:3;36161:67;36225:2;36220:3;36161:67;:::i;:::-;36154:74;;36237:93;36326:3;36237:93;:::i;:::-;36355:2;36350:3;36346:12;36339:19;;35998:366;;;:::o;36370:419::-;36536:4;36574:2;36563:9;36559:18;36551:26;;36623:9;36617:4;36613:20;36609:1;36598:9;36594:17;36587:47;36651:131;36777:4;36651:131;:::i;:::-;36643:139;;36370:419;;;:::o;36795:225::-;36935:34;36931:1;36923:6;36919:14;36912:58;37004:8;36999:2;36991:6;36987:15;36980:33;36795:225;:::o;37026:366::-;37168:3;37189:67;37253:2;37248:3;37189:67;:::i;:::-;37182:74;;37265:93;37354:3;37265:93;:::i;:::-;37383:2;37378:3;37374:12;37367:19;;37026:366;;;:::o;37398:419::-;37564:4;37602:2;37591:9;37587:18;37579:26;;37651:9;37645:4;37641:20;37637:1;37626:9;37622:17;37615:47;37679:131;37805:4;37679:131;:::i;:::-;37671:139;;37398:419;;;:::o;37823:332::-;37944:4;37982:2;37971:9;37967:18;37959:26;;37995:71;38063:1;38052:9;38048:17;38039:6;37995:71;:::i;:::-;38076:72;38144:2;38133:9;38129:18;38120:6;38076:72;:::i;:::-;37823:332;;;;;:::o;38161:137::-;38215:5;38246:6;38240:13;38231:22;;38262:30;38286:5;38262:30;:::i;:::-;38161:137;;;;:::o;38304:345::-;38371:6;38420:2;38408:9;38399:7;38395:23;38391:32;38388:119;;;38426:79;;:::i;:::-;38388:119;38546:1;38571:61;38624:7;38615:6;38604:9;38600:22;38571:61;:::i;:::-;38561:71;;38517:125;38304:345;;;;:::o;38655:182::-;38795:34;38791:1;38783:6;38779:14;38772:58;38655:182;:::o;38843:366::-;38985:3;39006:67;39070:2;39065:3;39006:67;:::i;:::-;38999:74;;39082:93;39171:3;39082:93;:::i;:::-;39200:2;39195:3;39191:12;39184:19;;38843:366;;;:::o;39215:419::-;39381:4;39419:2;39408:9;39404:18;39396:26;;39468:9;39462:4;39458:20;39454:1;39443:9;39439:17;39432:47;39496:131;39622:4;39496:131;:::i;:::-;39488:139;;39215:419;;;:::o;39640:98::-;39691:6;39725:5;39719:12;39709:22;;39640:98;;;:::o;39744:168::-;39827:11;39861:6;39856:3;39849:19;39901:4;39896:3;39892:14;39877:29;;39744:168;;;;:::o;39918:373::-;40004:3;40032:38;40064:5;40032:38;:::i;:::-;40086:70;40149:6;40144:3;40086:70;:::i;:::-;40079:77;;40165:65;40223:6;40218:3;40211:4;40204:5;40200:16;40165:65;:::i;:::-;40255:29;40277:6;40255:29;:::i;:::-;40250:3;40246:39;40239:46;;40008:283;39918:373;;;;:::o;40297:640::-;40492:4;40530:3;40519:9;40515:19;40507:27;;40544:71;40612:1;40601:9;40597:17;40588:6;40544:71;:::i;:::-;40625:72;40693:2;40682:9;40678:18;40669:6;40625:72;:::i;:::-;40707;40775:2;40764:9;40760:18;40751:6;40707:72;:::i;:::-;40826:9;40820:4;40816:20;40811:2;40800:9;40796:18;40789:48;40854:76;40925:4;40916:6;40854:76;:::i;:::-;40846:84;;40297:640;;;;;;;:::o;40943:141::-;40999:5;41030:6;41024:13;41015:22;;41046:32;41072:5;41046:32;:::i;:::-;40943:141;;;;:::o;41090:349::-;41159:6;41208:2;41196:9;41187:7;41183:23;41179:32;41176:119;;;41214:79;;:::i;:::-;41176:119;41334:1;41359:63;41414:7;41405:6;41394:9;41390:22;41359:63;:::i;:::-;41349:73;;41305:127;41090:349;;;;:::o;41445:233::-;41484:3;41507:24;41525:5;41507:24;:::i;:::-;41498:33;;41553:66;41546:5;41543:77;41540:103;;41623:18;;:::i;:::-;41540:103;41670:1;41663:5;41659:13;41652:20;;41445:233;;;:::o

Swarm Source

ipfs://d14051e6f51b490c2655e0154d0189ef1660e4eb27d76db8efe1b90ba3a86cf5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.