ETH Price: $2,937.29 (-4.25%)
Gas: 1 Gwei

The Vikings Game (Vikings Game - Season One)
 

Overview

TokenID

1029

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
vikingsgame

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-22
*/

// SPDX-License-Identifier: MIT

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/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.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) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 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 10, 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 * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.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 `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);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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





pragma solidity ^0.8.17;






contract vikingsgame is ERC721A, DefaultOperatorFilterer, Ownable{

    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public publicPrice = 0.01 ether; 
    uint256 public WLPrice = 0.01 ether; 
    bool public _publicActive = true; 
    bool public _WLActive = false; 
    bytes32 public merkleRoot;
    uint256 public maxBalance = 10000; 
    uint256 public maxMint = 20;         
    bool public _revealed = true;    
    string public notRevealedUri;
    string baseURI;
    string public baseExtension = "";    
    mapping(address => bool) public _mintedAddress; 
    mapping(uint256 => string) private _tokenURIs;

    constructor(
        string memory initBaseURI, 
        string memory initNotRevealedUri
    ) ERC721A("The Vikings Game", "Vikings Game - Season One") {
        setBaseURI(initBaseURI);
        setNotRevealedURI(initNotRevealedUri);
    }

    function setRoot(bytes32 _root) public onlyOwner {
        merkleRoot = _root;
    }

    function mintWL(bytes32[] calldata proof, uint256 tokenQuantity) public payable {
        require(_WLActive, "whitelist sale need to be activated");
        require(tokenQuantity <= maxMint, "max mint amount per session exceeded");
        require(
            totalSupply() + tokenQuantity <= MAX_SUPPLY,
            "max NFT limit exceeded"
        );
        require(
            balanceOf(msg.sender)  + tokenQuantity <= maxBalance, 
            "max balance exceeded"
        );       
        require(WLPrice * tokenQuantity <= msg.value, "not enough ether");            
        require(!_mintedAddress[msg.sender], "already minted"); 
        require(
            MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), 
            "user is not whitelisted"
        );   
        _safeMint(msg.sender, tokenQuantity); 
        _mintedAddress[msg.sender] = true;
    }

    function mintViking(uint256 tokenQuantity) public payable {
        require(_publicActive, "public sale has not started yet");
        require(tokenQuantity <= maxMint, "max mint amount per session exceeded");
        require(
            totalSupply() + tokenQuantity <= MAX_SUPPLY,
            "max NFT limit exceeded"
        );        
        require(
            balanceOf(msg.sender)  + tokenQuantity <= maxBalance, 
            "max balance exceeded"
        );
        require(tokenQuantity * publicPrice <= msg.value, "not enough ether");
        _safeMint(msg.sender, tokenQuantity);
    }

    function mintOwner(uint256 tokenQuantity) public onlyOwner {
        _safeMint(msg.sender, tokenQuantity);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "URI query failed");
        if (_revealed == false) {
            return notRevealedUri;
        }
        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        return
            string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }

    function publicSwitch() public onlyOwner {
        _publicActive = !_publicActive;
    }

    function whitelistSwitch() public onlyOwner {
        _WLActive = !_WLActive;
    }

    function revealSwitch() public onlyOwner {
        _revealed = !_revealed;
    }

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

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setWLPrice(uint256 _WLPrice) public onlyOwner {
        WLPrice = _WLPrice;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function setMaxBalance(uint256 _maxBalance) public onlyOwner {
        maxBalance = _maxBalance;
    }

    function setMaxMint(uint256 _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }

    function withdraw(address to) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(to).transfer(balance);
    }

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

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_WLActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintViking","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WLPrice","type":"uint256"}],"name":"setWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc10000600955662386f26fc10000600a556001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff021916908315150217905550612710600d556014600e556001600f60006101000a81548160ff02191690831515021790555060405180602001604052806000815250601290816200009691906200081c565b50348015620000a457600080fd5b5060405162004be238038062004be28339818101604052810190620000ca919062000a67565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020017f5468652056696b696e67732047616d65000000000000000000000000000000008152506040518060400160405280601981526020017f56696b696e67732047616d65202d20536561736f6e204f6e650000000000000081525081600290816200015e91906200081c565b5080600390816200017091906200081c565b5062000181620003ca60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200037e57801562000244576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200020a92919062000b31565b600060405180830381600087803b1580156200022557600080fd5b505af11580156200023a573d6000803e3d6000fd5b505050506200037d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002fe576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002c492919062000b31565b600060405180830381600087803b158015620002df57600080fd5b505af1158015620002f4573d6000803e3d6000fd5b505050506200037c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000347919062000b5e565b600060405180830381600087803b1580156200036257600080fd5b505af115801562000377573d6000803e3d6000fd5b505050505b5b5b5050620003a062000394620003cf60201b60201c565b620003d760201b60201c565b620003b1826200049d60201b60201c565b620003c281620004c260201b60201c565b505062000bfe565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004ad620004e760201b60201c565b8060119081620004be91906200081c565b5050565b620004d2620004e760201b60201c565b8060109081620004e391906200081c565b5050565b620004f7620003cf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200051d6200057860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000576576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200056d9062000bdc565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062457607f821691505b6020821081036200063a5762000639620005dc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000665565b620006b0868362000665565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006fd620006f7620006f184620006c8565b620006d2565b620006c8565b9050919050565b6000819050919050565b6200071983620006dc565b62000731620007288262000704565b84845462000672565b825550505050565b600090565b6200074862000739565b620007558184846200070e565b505050565b5b818110156200077d57620007716000826200073e565b6001810190506200075b565b5050565b601f821115620007cc57620007968162000640565b620007a18462000655565b81016020851015620007b1578190505b620007c9620007c08562000655565b8301826200075a565b50505b505050565b600082821c905092915050565b6000620007f160001984600802620007d1565b1980831691505092915050565b60006200080c8383620007de565b9150826002028217905092915050565b6200082782620005a2565b67ffffffffffffffff811115620008435762000842620005ad565b5b6200084f82546200060b565b6200085c82828562000781565b600060209050601f8311600181146200089457600084156200087f578287015190505b6200088b8582620007fe565b865550620008fb565b601f198416620008a48662000640565b60005b82811015620008ce57848901518255600182019150602085019450602081019050620008a7565b86831015620008ee5784890151620008ea601f891682620007de565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200093d8262000921565b810181811067ffffffffffffffff821117156200095f576200095e620005ad565b5b80604052505050565b60006200097462000903565b905062000982828262000932565b919050565b600067ffffffffffffffff821115620009a557620009a4620005ad565b5b620009b08262000921565b9050602081019050919050565b60005b83811015620009dd578082015181840152602081019050620009c0565b60008484015250505050565b600062000a00620009fa8462000987565b62000968565b90508281526020810184848401111562000a1f5762000a1e6200091c565b5b62000a2c848285620009bd565b509392505050565b600082601f83011262000a4c5762000a4b62000917565b5b815162000a5e848260208601620009e9565b91505092915050565b6000806040838503121562000a815762000a806200090d565b5b600083015167ffffffffffffffff81111562000aa25762000aa162000912565b5b62000ab08582860162000a34565b925050602083015167ffffffffffffffff81111562000ad45762000ad362000912565b5b62000ae28582860162000a34565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b198262000aec565b9050919050565b62000b2b8162000b0c565b82525050565b600060408201905062000b48600083018562000b20565b62000b57602083018462000b20565b9392505050565b600060208201905062000b75600083018462000b20565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000bc460208362000b7b565b915062000bd18262000b8c565b602082019050919050565b6000602082019050818103600083015262000bf78162000bb5565b9050919050565b613fd48062000c0e6000396000f3fe6080604052600436106102725760003560e01c80637501f7411161014f578063c6275255116100c1578063e020b2871161007a578063e020b287146108c3578063e985e9c5146108ee578063f1454ee71461092b578063f2c4ce1e14610947578063f2fde38b14610970578063f6a5b8e61461099957610272565b8063c6275255146107c9578063c6682862146107f2578063c87b56dd1461081d578063d63bdf671461085a578063da3ef23f14610871578063dab5f3401461089a57610272565b8063a22cb46511610113578063a22cb465146106da578063a945bf8014610703578063b0a04d3d1461072e578063b88d4fde14610759578063ba6c396c14610775578063bcd25ee5146107b257610272565b80637501f741146106145780638da5cb5b1461063f57806395d89b411461066a57806397db21f5146106955780639d51d9b7146106b157610272565b80633f165a7e116101e857806355f804b3116101ac57806355f804b3146105045780636352211e1461052d5780636ebeac851461056a57806370a0823114610595578063715018a6146105d257806373ad468a146105e957610272565b80633f165a7e1461045457806341f434341461046b57806342842e0e1461049657806351cff8d9146104b2578063547520fe146104db57610272565b806318160ddd1161023a57806318160ddd1461036357806323b872dd1461038e5780632a2888c3146103aa5780632eb4a7ab146103d557806332cb6b0c1461040057806333f88d221461042b57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612ba5565b6109c2565b6040516102ab9190612bed565b60405180910390f35b3480156102c057600080fd5b506102c9610a54565b6040516102d69190612c98565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612cf0565b610ae6565b6040516103139190612d5e565b60405180910390f35b34801561032857600080fd5b50610331610b65565b60405161033e9190612c98565b60405180910390f35b610361600480360381019061035c9190612da5565b610bf3565b005b34801561036f57600080fd5b50610378610c0c565b6040516103859190612df4565b60405180910390f35b6103a860048036038101906103a39190612e0f565b610c23565b005b3480156103b657600080fd5b506103bf610c72565b6040516103cc9190612bed565b60405180910390f35b3480156103e157600080fd5b506103ea610c85565b6040516103f79190612e7b565b60405180910390f35b34801561040c57600080fd5b50610415610c8b565b6040516104229190612df4565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612cf0565b610c91565b005b34801561046057600080fd5b50610469610ca6565b005b34801561047757600080fd5b50610480610cda565b60405161048d9190612ef5565b60405180910390f35b6104b060048036038101906104ab9190612e0f565b610cec565b005b3480156104be57600080fd5b506104d960048036038101906104d49190612f10565b610d3b565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190612cf0565b610d93565b005b34801561051057600080fd5b5061052b60048036038101906105269190613072565b610da5565b005b34801561053957600080fd5b50610554600480360381019061054f9190612cf0565b610dc0565b6040516105619190612d5e565b60405180910390f35b34801561057657600080fd5b5061057f610dd2565b60405161058c9190612bed565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190612f10565b610de5565b6040516105c99190612df4565b60405180910390f35b3480156105de57600080fd5b506105e7610e9d565b005b3480156105f557600080fd5b506105fe610eb1565b60405161060b9190612df4565b60405180910390f35b34801561062057600080fd5b50610629610eb7565b6040516106369190612df4565b60405180910390f35b34801561064b57600080fd5b50610654610ebd565b6040516106619190612d5e565b60405180910390f35b34801561067657600080fd5b5061067f610ee7565b60405161068c9190612c98565b60405180910390f35b6106af60048036038101906106aa919061311b565b610f79565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190612cf0565b6112b3565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906131a7565b6112c5565b005b34801561070f57600080fd5b506107186112de565b6040516107259190612df4565b60405180910390f35b34801561073a57600080fd5b506107436112e4565b6040516107509190612df4565b60405180910390f35b610773600480360381019061076e9190613288565b6112ea565b005b34801561078157600080fd5b5061079c60048036038101906107979190612f10565b61133b565b6040516107a99190612bed565b60405180910390f35b3480156107be57600080fd5b506107c761135b565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190612cf0565b61138f565b005b3480156107fe57600080fd5b506108076113a1565b6040516108149190612c98565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612cf0565b61142f565b6040516108519190612c98565b60405180910390f35b34801561086657600080fd5b5061086f611651565b005b34801561087d57600080fd5b5061089860048036038101906108939190613072565b611685565b005b3480156108a657600080fd5b506108c160048036038101906108bc9190613337565b6116a0565b005b3480156108cf57600080fd5b506108d86116b2565b6040516108e59190612bed565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613364565b6116c5565b6040516109229190612bed565b60405180910390f35b61094560048036038101906109409190612cf0565b611759565b005b34801561095357600080fd5b5061096e60048036038101906109699190613072565b6118f9565b005b34801561097c57600080fd5b5061099760048036038101906109929190612f10565b611914565b005b3480156109a557600080fd5b506109c060048036038101906109bb9190612cf0565b611997565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a63906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8f906133d3565b8015610adc5780601f10610ab157610100808354040283529160200191610adc565b820191906000526020600020905b815481529060010190602001808311610abf57829003601f168201915b5050505050905090565b6000610af1826119a9565b610b27576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60108054610b72906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e906133d3565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b505050505081565b81610bfd81611a08565b610c078383611b05565b505050565b6000610c16611c49565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6157610c6033611a08565b5b610c6c848484611c4e565b50505050565b600b60009054906101000a900460ff1681565b600c5481565b61271081565b610c99611f70565b610ca33382611fee565b50565b610cae611f70565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d2a57610d2933611a08565b5b610d3584848461200c565b50505050565b610d43611f70565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d8e573d6000803e3d6000fd5b505050565b610d9b611f70565b80600e8190555050565b610dad611f70565b8060119081610dbc91906135a6565b5050565b6000610dcb8261202c565b9050919050565b600f60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea5611f70565b610eaf60006120f8565b565b600d5481565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ef6906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f22906133d3565b8015610f6f5780601f10610f4457610100808354040283529160200191610f6f565b820191906000526020600020905b815481529060010190602001808311610f5257829003601f168201915b5050505050905090565b600b60019054906101000a900460ff16610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906136ea565b60405180910390fd5b600e5481111561100d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110049061377c565b60405180910390fd5b61271081611019610c0c565b61102391906137cb565b1115611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b9061384b565b60405180910390fd5b600d548161107133610de5565b61107b91906137cb565b11156110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b3906138b7565b60405180910390fd5b3481600a546110cb91906138d7565b111561110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390613965565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611190906139d1565b60405180910390fd5b61120d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54336040516020016111f29190613a39565b604051602081830303815290604052805190602001206121be565b61124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390613aa0565b60405180910390fd5b6112563382611fee565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6112bb611f70565b80600d8190555050565b816112cf81611a08565b6112d983836121d5565b505050565b60095481565b600a5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113285761132733611a08565b5b611334858585856122e0565b5050505050565b60136020528060005260406000206000915054906101000a900460ff1681565b611363611f70565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b611397611f70565b8060098190555050565b601280546113ae906133d3565b80601f01602080910402602001604051908101604052809291908181526020018280546113da906133d3565b80156114275780601f106113fc57610100808354040283529160200191611427565b820191906000526020600020905b81548152906001019060200180831161140a57829003601f168201915b505050505081565b606061143a826119a9565b611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613b0c565b60405180910390fd5b60001515600f60009054906101000a900460ff1615150361152657601080546114a1906133d3565b80601f01602080910402602001604051908101604052809291908181526020018280546114cd906133d3565b801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b5050505050905061164c565b6000601460008481526020019081526020016000208054611546906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611572906133d3565b80156115bf5780601f10611594576101008083540402835291602001916115bf565b820191906000526020600020905b8154815290600101906020018083116115a257829003601f168201915b5050505050905060006115d0612353565b905060008151036115e557819250505061164c565b60008251111561161a578082604051602001611602929190613b68565b6040516020818303038152906040529250505061164c565b80611624856123e5565b601260405160200161163893929190613c0f565b604051602081830303815290604052925050505b919050565b611659611f70565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61168d611f70565b806012908161169c91906135a6565b5050565b6116a8611f70565b80600c8190555050565b600b60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff166117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613c8c565b60405180910390fd5b600e548111156117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e49061377c565b60405180910390fd5b612710816117f9610c0c565b61180391906137cb565b1115611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061384b565b60405180910390fd5b600d548161185133610de5565b61185b91906137cb565b111561189c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611893906138b7565b60405180910390fd5b34600954826118ab91906138d7565b11156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613965565b60405180910390fd5b6118f63382611fee565b50565b611901611f70565b806010908161191091906135a6565b5050565b61191c611f70565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613d1e565b60405180910390fd5b611994816120f8565b50565b61199f611f70565b80600a8190555050565b6000816119b4611c49565b111580156119c3575060005482105b8015611a01575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b02576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611a7f929190613d3e565b602060405180830381865afa158015611a9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac09190613d7c565b611b0157806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611af89190612d5e565b60405180910390fd5b5b50565b6000611b1082610dc0565b90508073ffffffffffffffffffffffffffffffffffffffff16611b316124b3565b73ffffffffffffffffffffffffffffffffffffffff1614611b9457611b5d81611b586124b3565b6116c5565b611b93576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611c598261202c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cc0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611ccc846124bb565b91509150611ce28187611cdd6124b3565b6124e2565b611d2e57611cf786611cf26124b3565b6116c5565b611d2d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611da18686866001612526565b8015611dac57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e7a85611e5688888761252c565b7c020000000000000000000000000000000000000000000000000000000017612554565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f005760006001850190506000600460008381526020019081526020016000205403611efe576000548114611efd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f68868686600161257f565b505050505050565b611f78612585565b73ffffffffffffffffffffffffffffffffffffffff16611f96610ebd565b73ffffffffffffffffffffffffffffffffffffffff1614611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390613df5565b60405180910390fd5b565b61200882826040518060200160405280600081525061258d565b5050565b612027838383604051806020016040528060008152506112ea565b505050565b6000808290508061203b611c49565b116120c1576000548110156120c05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120be575b600081036120b457600460008360019003935083815260200190815260200160002054905061208a565b80925050506120f3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826121cb858461262a565b1490509392505050565b80600760006121e26124b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661228f6124b3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122d49190612bed565b60405180910390a35050565b6122eb848484610c23565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461234d5761231684848484612680565b61234c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060118054612362906133d3565b80601f016020809104026020016040519081016040528092919081815260200182805461238e906133d3565b80156123db5780601f106123b0576101008083540402835291602001916123db565b820191906000526020600020905b8154815290600101906020018083116123be57829003601f168201915b5050505050905090565b6060600060016123f4846127d0565b01905060008167ffffffffffffffff81111561241357612412612f47565b5b6040519080825280601f01601f1916602001820160405280156124455781602001600182028036833780820191505090505b509050600082602001820190505b6001156124a8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161249c5761249b613e15565b5b04945060008503612453575b819350505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612543868684612923565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612597838361292c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461262557600080549050600083820390505b6125d76000868380600101945086612680565b61260d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125c457816000541461262257600080fd5b50505b505050565b60008082905060005b8451811015612675576126608286838151811061265357612652613e44565b5b6020026020010151612ae7565b9150808061266d90613e73565b915050612633565b508091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126a66124b3565b8786866040518563ffffffff1660e01b81526004016126c89493929190613f10565b6020604051808303816000875af192505050801561270457506040513d601f19601f820116820180604052508101906127019190613f71565b60015b61277d573d8060008114612734576040519150601f19603f3d011682016040523d82523d6000602084013e612739565b606091505b506000815103612775576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061282e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161282457612823613e15565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061286b576d04ee2d6d415b85acef8100000000838161286157612860613e15565b5b0492506020810190505b662386f26fc10000831061289a57662386f26fc1000083816128905761288f613e15565b5b0492506010810190505b6305f5e10083106128c3576305f5e10083816128b9576128b8613e15565b5b0492506008810190505b61271083106128e85761271083816128de576128dd613e15565b5b0492506004810190505b6064831061290b576064838161290157612900613e15565b5b0492506002810190505b600a831061291a576001810190505b80915050919050565b60009392505050565b6000805490506000820361296c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129796000848385612526565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506129f0836129e1600086600061252c565b6129ea85612b12565b17612554565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612a9157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612a56565b5060008203612acc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ae2600084838561257f565b505050565b6000818310612aff57612afa8284612b22565b612b0a565b612b098383612b22565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b8281612b4d565b8114612b8d57600080fd5b50565b600081359050612b9f81612b79565b92915050565b600060208284031215612bbb57612bba612b43565b5b6000612bc984828501612b90565b91505092915050565b60008115159050919050565b612be781612bd2565b82525050565b6000602082019050612c026000830184612bde565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c42578082015181840152602081019050612c27565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c6a82612c08565b612c748185612c13565b9350612c84818560208601612c24565b612c8d81612c4e565b840191505092915050565b60006020820190508181036000830152612cb28184612c5f565b905092915050565b6000819050919050565b612ccd81612cba565b8114612cd857600080fd5b50565b600081359050612cea81612cc4565b92915050565b600060208284031215612d0657612d05612b43565b5b6000612d1484828501612cdb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d4882612d1d565b9050919050565b612d5881612d3d565b82525050565b6000602082019050612d736000830184612d4f565b92915050565b612d8281612d3d565b8114612d8d57600080fd5b50565b600081359050612d9f81612d79565b92915050565b60008060408385031215612dbc57612dbb612b43565b5b6000612dca85828601612d90565b9250506020612ddb85828601612cdb565b9150509250929050565b612dee81612cba565b82525050565b6000602082019050612e096000830184612de5565b92915050565b600080600060608486031215612e2857612e27612b43565b5b6000612e3686828701612d90565b9350506020612e4786828701612d90565b9250506040612e5886828701612cdb565b9150509250925092565b6000819050919050565b612e7581612e62565b82525050565b6000602082019050612e906000830184612e6c565b92915050565b6000819050919050565b6000612ebb612eb6612eb184612d1d565b612e96565b612d1d565b9050919050565b6000612ecd82612ea0565b9050919050565b6000612edf82612ec2565b9050919050565b612eef81612ed4565b82525050565b6000602082019050612f0a6000830184612ee6565b92915050565b600060208284031215612f2657612f25612b43565b5b6000612f3484828501612d90565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7f82612c4e565b810181811067ffffffffffffffff82111715612f9e57612f9d612f47565b5b80604052505050565b6000612fb1612b39565b9050612fbd8282612f76565b919050565b600067ffffffffffffffff821115612fdd57612fdc612f47565b5b612fe682612c4e565b9050602081019050919050565b82818337600083830152505050565b600061301561301084612fc2565b612fa7565b90508281526020810184848401111561303157613030612f42565b5b61303c848285612ff3565b509392505050565b600082601f83011261305957613058612f3d565b5b8135613069848260208601613002565b91505092915050565b60006020828403121561308857613087612b43565b5b600082013567ffffffffffffffff8111156130a6576130a5612b48565b5b6130b284828501613044565b91505092915050565b600080fd5b600080fd5b60008083601f8401126130db576130da612f3d565b5b8235905067ffffffffffffffff8111156130f8576130f76130bb565b5b602083019150836020820283011115613114576131136130c0565b5b9250929050565b60008060006040848603121561313457613133612b43565b5b600084013567ffffffffffffffff81111561315257613151612b48565b5b61315e868287016130c5565b9350935050602061317186828701612cdb565b9150509250925092565b61318481612bd2565b811461318f57600080fd5b50565b6000813590506131a18161317b565b92915050565b600080604083850312156131be576131bd612b43565b5b60006131cc85828601612d90565b92505060206131dd85828601613192565b9150509250929050565b600067ffffffffffffffff82111561320257613201612f47565b5b61320b82612c4e565b9050602081019050919050565b600061322b613226846131e7565b612fa7565b90508281526020810184848401111561324757613246612f42565b5b613252848285612ff3565b509392505050565b600082601f83011261326f5761326e612f3d565b5b813561327f848260208601613218565b91505092915050565b600080600080608085870312156132a2576132a1612b43565b5b60006132b087828801612d90565b94505060206132c187828801612d90565b93505060406132d287828801612cdb565b925050606085013567ffffffffffffffff8111156132f3576132f2612b48565b5b6132ff8782880161325a565b91505092959194509250565b61331481612e62565b811461331f57600080fd5b50565b6000813590506133318161330b565b92915050565b60006020828403121561334d5761334c612b43565b5b600061335b84828501613322565b91505092915050565b6000806040838503121561337b5761337a612b43565b5b600061338985828601612d90565b925050602061339a85828601612d90565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133eb57607f821691505b6020821081036133fe576133fd6133a4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613429565b6134708683613429565b95508019841693508086168417925050509392505050565b60006134a361349e61349984612cba565b612e96565b612cba565b9050919050565b6000819050919050565b6134bd83613488565b6134d16134c9826134aa565b848454613436565b825550505050565b600090565b6134e66134d9565b6134f18184846134b4565b505050565b5b818110156135155761350a6000826134de565b6001810190506134f7565b5050565b601f82111561355a5761352b81613404565b61353484613419565b81016020851015613543578190505b61355761354f85613419565b8301826134f6565b50505b505050565b600082821c905092915050565b600061357d6000198460080261355f565b1980831691505092915050565b6000613596838361356c565b9150826002028217905092915050565b6135af82612c08565b67ffffffffffffffff8111156135c8576135c7612f47565b5b6135d282546133d3565b6135dd828285613519565b600060209050601f83116001811461361057600084156135fe578287015190505b613608858261358a565b865550613670565b601f19841661361e86613404565b60005b8281101561364657848901518255600182019150602085019450602081019050613621565b86831015613663578489015161365f601f89168261356c565b8355505b6001600288020188555050505b505050505050565b7f77686974656c6973742073616c65206e65656420746f2062652061637469766160008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b60006136d4602383612c13565b91506136df82613678565b604082019050919050565b60006020820190508181036000830152613703816136c7565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000613766602483612c13565b91506137718261370a565b604082019050919050565b6000602082019050818103600083015261379581613759565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137d682612cba565b91506137e183612cba565b92508282019050808211156137f9576137f861379c565b5b92915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613835601683612c13565b9150613840826137ff565b602082019050919050565b6000602082019050818103600083015261386481613828565b9050919050565b7f6d61782062616c616e6365206578636565646564000000000000000000000000600082015250565b60006138a1601483612c13565b91506138ac8261386b565b602082019050919050565b600060208201905081810360008301526138d081613894565b9050919050565b60006138e282612cba565b91506138ed83612cba565b92508282026138fb81612cba565b915082820484148315176139125761391161379c565b5b5092915050565b7f6e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b600061394f601083612c13565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b60006139bb600e83612c13565b91506139c682613985565b602082019050919050565b600060208201905081810360008301526139ea816139ae565b9050919050565b60008160601b9050919050565b6000613a09826139f1565b9050919050565b6000613a1b826139fe565b9050919050565b613a33613a2e82612d3d565b613a10565b82525050565b6000613a458284613a22565b60148201915081905092915050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b6000613a8a601783612c13565b9150613a9582613a54565b602082019050919050565b60006020820190508181036000830152613ab981613a7d565b9050919050565b7f555249207175657279206661696c656400000000000000000000000000000000600082015250565b6000613af6601083612c13565b9150613b0182613ac0565b602082019050919050565b60006020820190508181036000830152613b2581613ae9565b9050919050565b600081905092915050565b6000613b4282612c08565b613b4c8185613b2c565b9350613b5c818560208601612c24565b80840191505092915050565b6000613b748285613b37565b9150613b808284613b37565b91508190509392505050565b60008154613b99816133d3565b613ba38186613b2c565b94506001821660008114613bbe5760018114613bd357613c06565b60ff1983168652811515820286019350613c06565b613bdc85613404565b60005b83811015613bfe57815481890152600182019150602081019050613bdf565b838801955050505b50505092915050565b6000613c1b8286613b37565b9150613c278285613b37565b9150613c338284613b8c565b9150819050949350505050565b7f7075626c69632073616c6520686173206e6f7420737461727465642079657400600082015250565b6000613c76601f83612c13565b9150613c8182613c40565b602082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d08602683612c13565b9150613d1382613cac565b604082019050919050565b60006020820190508181036000830152613d3781613cfb565b9050919050565b6000604082019050613d536000830185612d4f565b613d606020830184612d4f565b9392505050565b600081519050613d768161317b565b92915050565b600060208284031215613d9257613d91612b43565b5b6000613da084828501613d67565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ddf602083612c13565b9150613dea82613da9565b602082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613e7e82612cba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613eb057613eaf61379c565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613ee282613ebb565b613eec8185613ec6565b9350613efc818560208601612c24565b613f0581612c4e565b840191505092915050565b6000608082019050613f256000830187612d4f565b613f326020830186612d4f565b613f3f6040830185612de5565b8181036060830152613f518184613ed7565b905095945050505050565b600081519050613f6b81612b79565b92915050565b600060208284031215613f8757613f86612b43565b5b6000613f9584828501613f5c565b9150509291505056fea2646970667358221220a595896939cce871f98f50b0c7bab7509a77c8d194cde24042f4df5a2c73bf6064736f6c63430008110033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55524a594e396d414b59696a79697738625173557231655651557038446f647434323948526b5451633839662f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80637501f7411161014f578063c6275255116100c1578063e020b2871161007a578063e020b287146108c3578063e985e9c5146108ee578063f1454ee71461092b578063f2c4ce1e14610947578063f2fde38b14610970578063f6a5b8e61461099957610272565b8063c6275255146107c9578063c6682862146107f2578063c87b56dd1461081d578063d63bdf671461085a578063da3ef23f14610871578063dab5f3401461089a57610272565b8063a22cb46511610113578063a22cb465146106da578063a945bf8014610703578063b0a04d3d1461072e578063b88d4fde14610759578063ba6c396c14610775578063bcd25ee5146107b257610272565b80637501f741146106145780638da5cb5b1461063f57806395d89b411461066a57806397db21f5146106955780639d51d9b7146106b157610272565b80633f165a7e116101e857806355f804b3116101ac57806355f804b3146105045780636352211e1461052d5780636ebeac851461056a57806370a0823114610595578063715018a6146105d257806373ad468a146105e957610272565b80633f165a7e1461045457806341f434341461046b57806342842e0e1461049657806351cff8d9146104b2578063547520fe146104db57610272565b806318160ddd1161023a57806318160ddd1461036357806323b872dd1461038e5780632a2888c3146103aa5780632eb4a7ab146103d557806332cb6b0c1461040057806333f88d221461042b57610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063081c8c441461031c578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612ba5565b6109c2565b6040516102ab9190612bed565b60405180910390f35b3480156102c057600080fd5b506102c9610a54565b6040516102d69190612c98565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612cf0565b610ae6565b6040516103139190612d5e565b60405180910390f35b34801561032857600080fd5b50610331610b65565b60405161033e9190612c98565b60405180910390f35b610361600480360381019061035c9190612da5565b610bf3565b005b34801561036f57600080fd5b50610378610c0c565b6040516103859190612df4565b60405180910390f35b6103a860048036038101906103a39190612e0f565b610c23565b005b3480156103b657600080fd5b506103bf610c72565b6040516103cc9190612bed565b60405180910390f35b3480156103e157600080fd5b506103ea610c85565b6040516103f79190612e7b565b60405180910390f35b34801561040c57600080fd5b50610415610c8b565b6040516104229190612df4565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612cf0565b610c91565b005b34801561046057600080fd5b50610469610ca6565b005b34801561047757600080fd5b50610480610cda565b60405161048d9190612ef5565b60405180910390f35b6104b060048036038101906104ab9190612e0f565b610cec565b005b3480156104be57600080fd5b506104d960048036038101906104d49190612f10565b610d3b565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190612cf0565b610d93565b005b34801561051057600080fd5b5061052b60048036038101906105269190613072565b610da5565b005b34801561053957600080fd5b50610554600480360381019061054f9190612cf0565b610dc0565b6040516105619190612d5e565b60405180910390f35b34801561057657600080fd5b5061057f610dd2565b60405161058c9190612bed565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190612f10565b610de5565b6040516105c99190612df4565b60405180910390f35b3480156105de57600080fd5b506105e7610e9d565b005b3480156105f557600080fd5b506105fe610eb1565b60405161060b9190612df4565b60405180910390f35b34801561062057600080fd5b50610629610eb7565b6040516106369190612df4565b60405180910390f35b34801561064b57600080fd5b50610654610ebd565b6040516106619190612d5e565b60405180910390f35b34801561067657600080fd5b5061067f610ee7565b60405161068c9190612c98565b60405180910390f35b6106af60048036038101906106aa919061311b565b610f79565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190612cf0565b6112b3565b005b3480156106e657600080fd5b5061070160048036038101906106fc91906131a7565b6112c5565b005b34801561070f57600080fd5b506107186112de565b6040516107259190612df4565b60405180910390f35b34801561073a57600080fd5b506107436112e4565b6040516107509190612df4565b60405180910390f35b610773600480360381019061076e9190613288565b6112ea565b005b34801561078157600080fd5b5061079c60048036038101906107979190612f10565b61133b565b6040516107a99190612bed565b60405180910390f35b3480156107be57600080fd5b506107c761135b565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190612cf0565b61138f565b005b3480156107fe57600080fd5b506108076113a1565b6040516108149190612c98565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612cf0565b61142f565b6040516108519190612c98565b60405180910390f35b34801561086657600080fd5b5061086f611651565b005b34801561087d57600080fd5b5061089860048036038101906108939190613072565b611685565b005b3480156108a657600080fd5b506108c160048036038101906108bc9190613337565b6116a0565b005b3480156108cf57600080fd5b506108d86116b2565b6040516108e59190612bed565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613364565b6116c5565b6040516109229190612bed565b60405180910390f35b61094560048036038101906109409190612cf0565b611759565b005b34801561095357600080fd5b5061096e60048036038101906109699190613072565b6118f9565b005b34801561097c57600080fd5b5061099760048036038101906109929190612f10565b611914565b005b3480156109a557600080fd5b506109c060048036038101906109bb9190612cf0565b611997565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a63906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8f906133d3565b8015610adc5780601f10610ab157610100808354040283529160200191610adc565b820191906000526020600020905b815481529060010190602001808311610abf57829003601f168201915b5050505050905090565b6000610af1826119a9565b610b27576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60108054610b72906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9e906133d3565b8015610beb5780601f10610bc057610100808354040283529160200191610beb565b820191906000526020600020905b815481529060010190602001808311610bce57829003601f168201915b505050505081565b81610bfd81611a08565b610c078383611b05565b505050565b6000610c16611c49565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c6157610c6033611a08565b5b610c6c848484611c4e565b50505050565b600b60009054906101000a900460ff1681565b600c5481565b61271081565b610c99611f70565b610ca33382611fee565b50565b610cae611f70565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d2a57610d2933611a08565b5b610d3584848461200c565b50505050565b610d43611f70565b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d8e573d6000803e3d6000fd5b505050565b610d9b611f70565b80600e8190555050565b610dad611f70565b8060119081610dbc91906135a6565b5050565b6000610dcb8261202c565b9050919050565b600f60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea5611f70565b610eaf60006120f8565b565b600d5481565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ef6906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f22906133d3565b8015610f6f5780601f10610f4457610100808354040283529160200191610f6f565b820191906000526020600020905b815481529060010190602001808311610f5257829003601f168201915b5050505050905090565b600b60019054906101000a900460ff16610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906136ea565b60405180910390fd5b600e5481111561100d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110049061377c565b60405180910390fd5b61271081611019610c0c565b61102391906137cb565b1115611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b9061384b565b60405180910390fd5b600d548161107133610de5565b61107b91906137cb565b11156110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b3906138b7565b60405180910390fd5b3481600a546110cb91906138d7565b111561110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390613965565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611190906139d1565b60405180910390fd5b61120d838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54336040516020016111f29190613a39565b604051602081830303815290604052805190602001206121be565b61124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390613aa0565b60405180910390fd5b6112563382611fee565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b6112bb611f70565b80600d8190555050565b816112cf81611a08565b6112d983836121d5565b505050565b60095481565b600a5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113285761132733611a08565b5b611334858585856122e0565b5050505050565b60136020528060005260406000206000915054906101000a900460ff1681565b611363611f70565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b611397611f70565b8060098190555050565b601280546113ae906133d3565b80601f01602080910402602001604051908101604052809291908181526020018280546113da906133d3565b80156114275780601f106113fc57610100808354040283529160200191611427565b820191906000526020600020905b81548152906001019060200180831161140a57829003601f168201915b505050505081565b606061143a826119a9565b611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613b0c565b60405180910390fd5b60001515600f60009054906101000a900460ff1615150361152657601080546114a1906133d3565b80601f01602080910402602001604051908101604052809291908181526020018280546114cd906133d3565b801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b5050505050905061164c565b6000601460008481526020019081526020016000208054611546906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611572906133d3565b80156115bf5780601f10611594576101008083540402835291602001916115bf565b820191906000526020600020905b8154815290600101906020018083116115a257829003601f168201915b5050505050905060006115d0612353565b905060008151036115e557819250505061164c565b60008251111561161a578082604051602001611602929190613b68565b6040516020818303038152906040529250505061164c565b80611624856123e5565b601260405160200161163893929190613c0f565b604051602081830303815290604052925050505b919050565b611659611f70565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61168d611f70565b806012908161169c91906135a6565b5050565b6116a8611f70565b80600c8190555050565b600b60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff166117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613c8c565b60405180910390fd5b600e548111156117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e49061377c565b60405180910390fd5b612710816117f9610c0c565b61180391906137cb565b1115611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061384b565b60405180910390fd5b600d548161185133610de5565b61185b91906137cb565b111561189c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611893906138b7565b60405180910390fd5b34600954826118ab91906138d7565b11156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613965565b60405180910390fd5b6118f63382611fee565b50565b611901611f70565b806010908161191091906135a6565b5050565b61191c611f70565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613d1e565b60405180910390fd5b611994816120f8565b50565b61199f611f70565b80600a8190555050565b6000816119b4611c49565b111580156119c3575060005482105b8015611a01575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b02576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611a7f929190613d3e565b602060405180830381865afa158015611a9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac09190613d7c565b611b0157806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611af89190612d5e565b60405180910390fd5b5b50565b6000611b1082610dc0565b90508073ffffffffffffffffffffffffffffffffffffffff16611b316124b3565b73ffffffffffffffffffffffffffffffffffffffff1614611b9457611b5d81611b586124b3565b6116c5565b611b93576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611c598261202c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611cc0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611ccc846124bb565b91509150611ce28187611cdd6124b3565b6124e2565b611d2e57611cf786611cf26124b3565b6116c5565b611d2d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611da18686866001612526565b8015611dac57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e7a85611e5688888761252c565b7c020000000000000000000000000000000000000000000000000000000017612554565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611f005760006001850190506000600460008381526020019081526020016000205403611efe576000548114611efd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f68868686600161257f565b505050505050565b611f78612585565b73ffffffffffffffffffffffffffffffffffffffff16611f96610ebd565b73ffffffffffffffffffffffffffffffffffffffff1614611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390613df5565b60405180910390fd5b565b61200882826040518060200160405280600081525061258d565b5050565b612027838383604051806020016040528060008152506112ea565b505050565b6000808290508061203b611c49565b116120c1576000548110156120c05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120be575b600081036120b457600460008360019003935083815260200190815260200160002054905061208a565b80925050506120f3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826121cb858461262a565b1490509392505050565b80600760006121e26124b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661228f6124b3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122d49190612bed565b60405180910390a35050565b6122eb848484610c23565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461234d5761231684848484612680565b61234c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060118054612362906133d3565b80601f016020809104026020016040519081016040528092919081815260200182805461238e906133d3565b80156123db5780601f106123b0576101008083540402835291602001916123db565b820191906000526020600020905b8154815290600101906020018083116123be57829003601f168201915b5050505050905090565b6060600060016123f4846127d0565b01905060008167ffffffffffffffff81111561241357612412612f47565b5b6040519080825280601f01601f1916602001820160405280156124455781602001600182028036833780820191505090505b509050600082602001820190505b6001156124a8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161249c5761249b613e15565b5b04945060008503612453575b819350505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612543868684612923565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b612597838361292c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461262557600080549050600083820390505b6125d76000868380600101945086612680565b61260d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125c457816000541461262257600080fd5b50505b505050565b60008082905060005b8451811015612675576126608286838151811061265357612652613e44565b5b6020026020010151612ae7565b9150808061266d90613e73565b915050612633565b508091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126a66124b3565b8786866040518563ffffffff1660e01b81526004016126c89493929190613f10565b6020604051808303816000875af192505050801561270457506040513d601f19601f820116820180604052508101906127019190613f71565b60015b61277d573d8060008114612734576040519150601f19603f3d011682016040523d82523d6000602084013e612739565b606091505b506000815103612775576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061282e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161282457612823613e15565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061286b576d04ee2d6d415b85acef8100000000838161286157612860613e15565b5b0492506020810190505b662386f26fc10000831061289a57662386f26fc1000083816128905761288f613e15565b5b0492506010810190505b6305f5e10083106128c3576305f5e10083816128b9576128b8613e15565b5b0492506008810190505b61271083106128e85761271083816128de576128dd613e15565b5b0492506004810190505b6064831061290b576064838161290157612900613e15565b5b0492506002810190505b600a831061291a576001810190505b80915050919050565b60009392505050565b6000805490506000820361296c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129796000848385612526565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506129f0836129e1600086600061252c565b6129ea85612b12565b17612554565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612a9157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612a56565b5060008203612acc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ae2600084838561257f565b505050565b6000818310612aff57612afa8284612b22565b612b0a565b612b098383612b22565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b8281612b4d565b8114612b8d57600080fd5b50565b600081359050612b9f81612b79565b92915050565b600060208284031215612bbb57612bba612b43565b5b6000612bc984828501612b90565b91505092915050565b60008115159050919050565b612be781612bd2565b82525050565b6000602082019050612c026000830184612bde565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c42578082015181840152602081019050612c27565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c6a82612c08565b612c748185612c13565b9350612c84818560208601612c24565b612c8d81612c4e565b840191505092915050565b60006020820190508181036000830152612cb28184612c5f565b905092915050565b6000819050919050565b612ccd81612cba565b8114612cd857600080fd5b50565b600081359050612cea81612cc4565b92915050565b600060208284031215612d0657612d05612b43565b5b6000612d1484828501612cdb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d4882612d1d565b9050919050565b612d5881612d3d565b82525050565b6000602082019050612d736000830184612d4f565b92915050565b612d8281612d3d565b8114612d8d57600080fd5b50565b600081359050612d9f81612d79565b92915050565b60008060408385031215612dbc57612dbb612b43565b5b6000612dca85828601612d90565b9250506020612ddb85828601612cdb565b9150509250929050565b612dee81612cba565b82525050565b6000602082019050612e096000830184612de5565b92915050565b600080600060608486031215612e2857612e27612b43565b5b6000612e3686828701612d90565b9350506020612e4786828701612d90565b9250506040612e5886828701612cdb565b9150509250925092565b6000819050919050565b612e7581612e62565b82525050565b6000602082019050612e906000830184612e6c565b92915050565b6000819050919050565b6000612ebb612eb6612eb184612d1d565b612e96565b612d1d565b9050919050565b6000612ecd82612ea0565b9050919050565b6000612edf82612ec2565b9050919050565b612eef81612ed4565b82525050565b6000602082019050612f0a6000830184612ee6565b92915050565b600060208284031215612f2657612f25612b43565b5b6000612f3484828501612d90565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7f82612c4e565b810181811067ffffffffffffffff82111715612f9e57612f9d612f47565b5b80604052505050565b6000612fb1612b39565b9050612fbd8282612f76565b919050565b600067ffffffffffffffff821115612fdd57612fdc612f47565b5b612fe682612c4e565b9050602081019050919050565b82818337600083830152505050565b600061301561301084612fc2565b612fa7565b90508281526020810184848401111561303157613030612f42565b5b61303c848285612ff3565b509392505050565b600082601f83011261305957613058612f3d565b5b8135613069848260208601613002565b91505092915050565b60006020828403121561308857613087612b43565b5b600082013567ffffffffffffffff8111156130a6576130a5612b48565b5b6130b284828501613044565b91505092915050565b600080fd5b600080fd5b60008083601f8401126130db576130da612f3d565b5b8235905067ffffffffffffffff8111156130f8576130f76130bb565b5b602083019150836020820283011115613114576131136130c0565b5b9250929050565b60008060006040848603121561313457613133612b43565b5b600084013567ffffffffffffffff81111561315257613151612b48565b5b61315e868287016130c5565b9350935050602061317186828701612cdb565b9150509250925092565b61318481612bd2565b811461318f57600080fd5b50565b6000813590506131a18161317b565b92915050565b600080604083850312156131be576131bd612b43565b5b60006131cc85828601612d90565b92505060206131dd85828601613192565b9150509250929050565b600067ffffffffffffffff82111561320257613201612f47565b5b61320b82612c4e565b9050602081019050919050565b600061322b613226846131e7565b612fa7565b90508281526020810184848401111561324757613246612f42565b5b613252848285612ff3565b509392505050565b600082601f83011261326f5761326e612f3d565b5b813561327f848260208601613218565b91505092915050565b600080600080608085870312156132a2576132a1612b43565b5b60006132b087828801612d90565b94505060206132c187828801612d90565b93505060406132d287828801612cdb565b925050606085013567ffffffffffffffff8111156132f3576132f2612b48565b5b6132ff8782880161325a565b91505092959194509250565b61331481612e62565b811461331f57600080fd5b50565b6000813590506133318161330b565b92915050565b60006020828403121561334d5761334c612b43565b5b600061335b84828501613322565b91505092915050565b6000806040838503121561337b5761337a612b43565b5b600061338985828601612d90565b925050602061339a85828601612d90565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133eb57607f821691505b6020821081036133fe576133fd6133a4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613429565b6134708683613429565b95508019841693508086168417925050509392505050565b60006134a361349e61349984612cba565b612e96565b612cba565b9050919050565b6000819050919050565b6134bd83613488565b6134d16134c9826134aa565b848454613436565b825550505050565b600090565b6134e66134d9565b6134f18184846134b4565b505050565b5b818110156135155761350a6000826134de565b6001810190506134f7565b5050565b601f82111561355a5761352b81613404565b61353484613419565b81016020851015613543578190505b61355761354f85613419565b8301826134f6565b50505b505050565b600082821c905092915050565b600061357d6000198460080261355f565b1980831691505092915050565b6000613596838361356c565b9150826002028217905092915050565b6135af82612c08565b67ffffffffffffffff8111156135c8576135c7612f47565b5b6135d282546133d3565b6135dd828285613519565b600060209050601f83116001811461361057600084156135fe578287015190505b613608858261358a565b865550613670565b601f19841661361e86613404565b60005b8281101561364657848901518255600182019150602085019450602081019050613621565b86831015613663578489015161365f601f89168261356c565b8355505b6001600288020188555050505b505050505050565b7f77686974656c6973742073616c65206e65656420746f2062652061637469766160008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b60006136d4602383612c13565b91506136df82613678565b604082019050919050565b60006020820190508181036000830152613703816136c7565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000613766602483612c13565b91506137718261370a565b604082019050919050565b6000602082019050818103600083015261379581613759565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137d682612cba565b91506137e183612cba565b92508282019050808211156137f9576137f861379c565b5b92915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613835601683612c13565b9150613840826137ff565b602082019050919050565b6000602082019050818103600083015261386481613828565b9050919050565b7f6d61782062616c616e6365206578636565646564000000000000000000000000600082015250565b60006138a1601483612c13565b91506138ac8261386b565b602082019050919050565b600060208201905081810360008301526138d081613894565b9050919050565b60006138e282612cba565b91506138ed83612cba565b92508282026138fb81612cba565b915082820484148315176139125761391161379c565b5b5092915050565b7f6e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b600061394f601083612c13565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b60006139bb600e83612c13565b91506139c682613985565b602082019050919050565b600060208201905081810360008301526139ea816139ae565b9050919050565b60008160601b9050919050565b6000613a09826139f1565b9050919050565b6000613a1b826139fe565b9050919050565b613a33613a2e82612d3d565b613a10565b82525050565b6000613a458284613a22565b60148201915081905092915050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b6000613a8a601783612c13565b9150613a9582613a54565b602082019050919050565b60006020820190508181036000830152613ab981613a7d565b9050919050565b7f555249207175657279206661696c656400000000000000000000000000000000600082015250565b6000613af6601083612c13565b9150613b0182613ac0565b602082019050919050565b60006020820190508181036000830152613b2581613ae9565b9050919050565b600081905092915050565b6000613b4282612c08565b613b4c8185613b2c565b9350613b5c818560208601612c24565b80840191505092915050565b6000613b748285613b37565b9150613b808284613b37565b91508190509392505050565b60008154613b99816133d3565b613ba38186613b2c565b94506001821660008114613bbe5760018114613bd357613c06565b60ff1983168652811515820286019350613c06565b613bdc85613404565b60005b83811015613bfe57815481890152600182019150602081019050613bdf565b838801955050505b50505092915050565b6000613c1b8286613b37565b9150613c278285613b37565b9150613c338284613b8c565b9150819050949350505050565b7f7075626c69632073616c6520686173206e6f7420737461727465642079657400600082015250565b6000613c76601f83612c13565b9150613c8182613c40565b602082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d08602683612c13565b9150613d1382613cac565b604082019050919050565b60006020820190508181036000830152613d3781613cfb565b9050919050565b6000604082019050613d536000830185612d4f565b613d606020830184612d4f565b9392505050565b600081519050613d768161317b565b92915050565b600060208284031215613d9257613d91612b43565b5b6000613da084828501613d67565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ddf602083612c13565b9150613dea82613da9565b602082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613e7e82612cba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613eb057613eaf61379c565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613ee282613ebb565b613eec8185613ec6565b9350613efc818560208601612c24565b613f0581612c4e565b840191505092915050565b6000608082019050613f256000830187612d4f565b613f326020830186612d4f565b613f3f6040830185612de5565b8181036060830152613f518184613ed7565b905095945050505050565b600081519050613f6b81612b79565b92915050565b600060208284031215613f8757613f86612b43565b5b6000613f9584828501613f5c565b9150509291505056fea2646970667358221220a595896939cce871f98f50b0c7bab7509a77c8d194cde24042f4df5a2c73bf6064736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55524a594e396d414b59696a79697738625173557231655651557038446f647434323948526b5451633839662f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmURJYN9mAKYijyiw8bQsUr1eVQUp8Dodt429HRkTQc89f/
Arg [1] : initNotRevealedUri (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d55524a594e396d414b59696a7969773862517355723165
Arg [4] : 5651557038446f647434323948526b5451633839662f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

90896:5708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57819:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58721:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65212:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91375:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95830:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54472:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96003:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91143:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91220:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91004:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93478:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94477:82;;;;;;;;;;;;;:::i;:::-;;7709:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96182:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95493:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95393:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94683:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60114:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91336:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55656:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38598:103;;;;;;;;;;;;;:::i;:::-;;91252:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91293:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37950:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58897:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91930:919;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95281:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95646:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91053:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91100:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96369:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91474:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94384:85;;;;;;;;;;;;;:::i;:::-;;94795:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91431:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93600:678;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94286:90;;;;;;;;;;;;;:::i;:::-;;95145:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91836:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91183:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66161:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92857:613;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95011:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38856:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94911:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57819:639;57904:4;58243:10;58228:25;;:11;:25;;;;:102;;;;58320:10;58305:25;;:11;:25;;;;58228:102;:179;;;;58397:10;58382:25;;:11;:25;;;;58228:179;58208:199;;57819:639;;;:::o;58721:100::-;58775:13;58808:5;58801:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58721:100;:::o;65212:218::-;65288:7;65313:16;65321:7;65313;:16::i;:::-;65308:64;;65338:34;;;;;;;;;;;;;;65308:64;65392:15;:24;65408:7;65392:24;;;;;;;;;;;:30;;;;;;;;;;;;65385:37;;65212:218;;;:::o;91375:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;95830:165::-;95934:8;9491:30;9512:8;9491:20;:30::i;:::-;95955:32:::1;95969:8;95979:7;95955:13;:32::i;:::-;95830:165:::0;;;:::o;54472:323::-;54533:7;54761:15;:13;:15::i;:::-;54746:12;;54730:13;;:28;:46;54723:53;;54472:323;:::o;96003:171::-;96112:4;9225:10;9217:18;;:4;:18;;;9213:83;;9252:32;9273:10;9252:20;:32::i;:::-;9213:83;96129:37:::1;96148:4;96154:2;96158:7;96129:18;:37::i;:::-;96003:171:::0;;;;:::o;91143:32::-;;;;;;;;;;;;;:::o;91220:25::-;;;;:::o;91004:42::-;91041:5;91004:42;:::o;93478:114::-;37836:13;:11;:13::i;:::-;93548:36:::1;93558:10;93570:13;93548:9;:36::i;:::-;93478:114:::0;:::o;94477:82::-;37836:13;:11;:13::i;:::-;94542:9:::1;;;;;;;;;;;94541:10;94529:9;;:22;;;;;;;;;;;;;;;;;;94477:82::o:0;7709:143::-;125:42;7709:143;:::o;96182:179::-;96295:4;9225:10;9217:18;;:4;:18;;;9213:83;;9252:32;9273:10;9252:20;:32::i;:::-;9213:83;96312:41:::1;96335:4;96341:2;96345:7;96312:22;:41::i;:::-;96182:179:::0;;;;:::o;95493:145::-;37836:13;:11;:13::i;:::-;95551:15:::1;95569:21;95551:39;;95609:2;95601:20;;:29;95622:7;95601:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;95540:98;95493:145:::0;:::o;95393:92::-;37836:13;:11;:13::i;:::-;95469:8:::1;95459:7;:18;;;;95393:92:::0;:::o;94683:104::-;37836:13;:11;:13::i;:::-;94768:11:::1;94758:7;:21;;;;;;:::i;:::-;;94683:104:::0;:::o;60114:152::-;60186:7;60229:27;60248:7;60229:18;:27::i;:::-;60206:52;;60114:152;;;:::o;91336:28::-;;;;;;;;;;;;;:::o;55656:233::-;55728:7;55769:1;55752:19;;:5;:19;;;55748:60;;55780:28;;;;;;;;;;;;;;55748:60;49815:13;55826:18;:25;55845:5;55826:25;;;;;;;;;;;;;;;;:55;55819:62;;55656:233;;;:::o;38598:103::-;37836:13;:11;:13::i;:::-;38663:30:::1;38690:1;38663:18;:30::i;:::-;38598:103::o:0;91252:33::-;;;;:::o;91293:27::-;;;;:::o;37950:87::-;37996:7;38023:6;;;;;;;;;;;38016:13;;37950:87;:::o;58897:104::-;58953:13;58986:7;58979:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58897:104;:::o;91930:919::-;92029:9;;;;;;;;;;;92021:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;92114:7;;92097:13;:24;;92089:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;91041:5;92211:13;92195;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;92173:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;92363:10;;92346:13;92321:21;92331:10;92321:9;:21::i;:::-;:38;;;;:::i;:::-;:52;;92299:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;92475:9;92458:13;92448:7;;:23;;;;:::i;:::-;:36;;92440:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;92537:14;:26;92552:10;92537:26;;;;;;;;;;;;;;;;;;;;;;;;;92536:27;92528:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;92616:78;92635:5;;92616:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92642:10;;92681;92664:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;92654:39;;;;;;92616:18;:78::i;:::-;92594:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;92760:36;92770:10;92782:13;92760:9;:36::i;:::-;92837:4;92808:14;:26;92823:10;92808:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;91930:919;;;:::o;95281:104::-;37836:13;:11;:13::i;:::-;95366:11:::1;95353:10;:24;;;;95281:104:::0;:::o;95646:176::-;95750:8;9491:30;9512:8;9491:20;:30::i;:::-;95771:43:::1;95795:8;95805;95771:23;:43::i;:::-;95646:176:::0;;;:::o;91053:39::-;;;;:::o;91100:35::-;;;;:::o;96369:230::-;96528:4;9225:10;9217:18;;:4;:18;;;9213:83;;9252:32;9273:10;9252:20;:32::i;:::-;9213:83;96544:47:::1;96567:4;96573:2;96577:7;96586:4;96544:22;:47::i;:::-;96369:230:::0;;;;;:::o;91474:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;94384:85::-;37836:13;:11;:13::i;:::-;94452:9:::1;;;;;;;;;;;94451:10;94439:9;;:22;;;;;;;;;;;;;;;;;;94384:85::o:0;94795:108::-;37836:13;:11;:13::i;:::-;94883:12:::1;94869:11;:26;;;;94795:108:::0;:::o;91431:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;93600:678::-;93718:13;93757:16;93765:7;93757;:16::i;:::-;93749:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;93822:5;93809:18;;:9;;;;;;;;;;;:18;;;93805:72;;93851:14;93844:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93805:72;93887:23;93913:10;:19;93924:7;93913:19;;;;;;;;;;;93887:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93943:18;93964:10;:8;:10::i;:::-;93943:31;;94011:1;93995:4;93989:18;:23;93985:72;;94036:9;94029:16;;;;;;93985:72;94097:1;94077:9;94071:23;:27;94067:108;;;94146:4;94152:9;94129:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94115:48;;;;;;94067:108;94229:4;94235:18;:7;:16;:18::i;:::-;94255:13;94212:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94185:85;;;;93600:678;;;;:::o;94286:90::-;37836:13;:11;:13::i;:::-;94355::::1;;;;;;;;;;;94354:14;94338:13;;:30;;;;;;;;;;;;;;;;;;94286:90::o:0;95145:128::-;37836:13;:11;:13::i;:::-;95248:17:::1;95232:13;:33;;;;;;:::i;:::-;;95145:128:::0;:::o;91836:86::-;37836:13;:11;:13::i;:::-;91909:5:::1;91896:10;:18;;;;91836:86:::0;:::o;91183:29::-;;;;;;;;;;;;;:::o;66161:164::-;66258:4;66282:18;:25;66301:5;66282:25;;;;;;;;;;;;;;;:35;66308:8;66282:35;;;;;;;;;;;;;;;;;;;;;;;;;66275:42;;66161:164;;;;:::o;92857:613::-;92934:13;;;;;;;;;;;92926:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;93019:7;;93002:13;:24;;92994:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;91041:5;93116:13;93100;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;93078:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;93276:10;;93259:13;93234:21;93244:10;93234:9;:21::i;:::-;:38;;;;:::i;:::-;:52;;93212:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;93385:9;93370:11;;93354:13;:27;;;;:::i;:::-;:40;;93346:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;93426:36;93436:10;93448:13;93426:9;:36::i;:::-;92857:613;:::o;95011:126::-;37836:13;:11;:13::i;:::-;95114:15:::1;95097:14;:32;;;;;;:::i;:::-;;95011:126:::0;:::o;38856:201::-;37836:13;:11;:13::i;:::-;38965:1:::1;38945:22;;:8;:22;;::::0;38937:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39021:28;39040:8;39021:18;:28::i;:::-;38856:201:::0;:::o;94911:92::-;37836:13;:11;:13::i;:::-;94987:8:::1;94977:7;:18;;;;94911:92:::0;:::o;66583:282::-;66648:4;66704:7;66685:15;:13;:15::i;:::-;:26;;:66;;;;;66738:13;;66728:7;:23;66685:66;:153;;;;;66837:1;50591:8;66789:17;:26;66807:7;66789:26;;;;;;;;;;;;:44;:49;66685:153;66665:173;;66583:282;;;:::o;9634:647::-;9873:1;125:42;9825:45;;;:49;9821:453;;;125:42;10124;;;10175:4;10182:8;10124:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10119:144;;10238:8;10219:28;;;;;;;;;;;:::i;:::-;;;;;;;;10119:144;9821:453;9634:647;:::o;64645:408::-;64734:13;64750:16;64758:7;64750;:16::i;:::-;64734:32;;64806:5;64783:28;;:19;:17;:19::i;:::-;:28;;;64779:175;;64831:44;64848:5;64855:19;:17;:19::i;:::-;64831:16;:44::i;:::-;64826:128;;64903:35;;;;;;;;;;;;;;64826:128;64779:175;64999:2;64966:15;:24;64982:7;64966:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;65037:7;65033:2;65017:28;;65026:5;65017:28;;;;;;;;;;;;64723:330;64645:408;;:::o;53988:92::-;54044:7;53988:92;:::o;68851:2825::-;68993:27;69023;69042:7;69023:18;:27::i;:::-;68993:57;;69108:4;69067:45;;69083:19;69067:45;;;69063:86;;69121:28;;;;;;;;;;;;;;69063:86;69163:27;69192:23;69219:35;69246:7;69219:26;:35::i;:::-;69162:92;;;;69354:68;69379:15;69396:4;69402:19;:17;:19::i;:::-;69354:24;:68::i;:::-;69349:180;;69442:43;69459:4;69465:19;:17;:19::i;:::-;69442:16;:43::i;:::-;69437:92;;69494:35;;;;;;;;;;;;;;69437:92;69349:180;69560:1;69546:16;;:2;:16;;;69542:52;;69571:23;;;;;;;;;;;;;;69542:52;69607:43;69629:4;69635:2;69639:7;69648:1;69607:21;:43::i;:::-;69743:15;69740:160;;;69883:1;69862:19;69855:30;69740:160;70280:18;:24;70299:4;70280:24;;;;;;;;;;;;;;;;70278:26;;;;;;;;;;;;70349:18;:22;70368:2;70349:22;;;;;;;;;;;;;;;;70347:24;;;;;;;;;;;70671:146;70708:2;70757:45;70772:4;70778:2;70782:19;70757:14;:45::i;:::-;50871:8;70729:73;70671:18;:146::i;:::-;70642:17;:26;70660:7;70642:26;;;;;;;;;;;:175;;;;70988:1;50871:8;70937:19;:47;:52;70933:627;;71010:19;71042:1;71032:7;:11;71010:33;;71199:1;71165:17;:30;71183:11;71165:30;;;;;;;;;;;;:35;71161:384;;71303:13;;71288:11;:28;71284:242;;71483:19;71450:17;:30;71468:11;71450:30;;;;;;;;;;;:52;;;;71284:242;71161:384;70991:569;70933:627;71607:7;71603:2;71588:27;;71597:4;71588:27;;;;;;;;;;;;71626:42;71647:4;71653:2;71657:7;71666:1;71626:20;:42::i;:::-;68982:2694;;;68851:2825;;;:::o;38115:132::-;38190:12;:10;:12::i;:::-;38179:23;;:7;:5;:7::i;:::-;:23;;;38171:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38115:132::o;82723:112::-;82800:27;82810:2;82814:8;82800:27;;;;;;;;;;;;:9;:27::i;:::-;82723:112;;:::o;71772:193::-;71918:39;71935:4;71941:2;71945:7;71918:39;;;;;;;;;;;;:16;:39::i;:::-;71772:193;;;:::o;61269:1275::-;61336:7;61356:12;61371:7;61356:22;;61439:4;61420:15;:13;:15::i;:::-;:23;61416:1061;;61473:13;;61466:4;:20;61462:1015;;;61511:14;61528:17;:23;61546:4;61528:23;;;;;;;;;;;;61511:40;;61645:1;50591:8;61617:6;:24;:29;61613:845;;62282:113;62299:1;62289:6;:11;62282:113;;62342:17;:25;62360:6;;;;;;;62342:25;;;;;;;;;;;;62333:34;;62282:113;;;62428:6;62421:13;;;;;;61613:845;61488:989;61462:1015;61416:1061;62505:31;;;;;;;;;;;;;;61269:1275;;;;:::o;39217:191::-;39291:16;39310:6;;;;;;;;;;;39291:25;;39336:8;39327:6;;:17;;;;;;;;;;;;;;;;;;39391:8;39360:40;;39381:8;39360:40;;;;;;;;;;;;39280:128;39217:191;:::o;12284:190::-;12409:4;12462;12433:25;12446:5;12453:4;12433:12;:25::i;:::-;:33;12426:40;;12284:190;;;;;:::o;65770:234::-;65917:8;65865:18;:39;65884:19;:17;:19::i;:::-;65865:39;;;;;;;;;;;;;;;:49;65905:8;65865:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;65977:8;65941:55;;65956:19;:17;:19::i;:::-;65941:55;;;65987:8;65941:55;;;;;;:::i;:::-;;;;;;;;65770:234;;:::o;72563:407::-;72738:31;72751:4;72757:2;72761:7;72738:12;:31::i;:::-;72802:1;72784:2;:14;;;:19;72780:183;;72823:56;72854:4;72860:2;72864:7;72873:5;72823:30;:56::i;:::-;72818:145;;72907:40;;;;;;;;;;;;;;72818:145;72780:183;72563:407;;;;:::o;94567:108::-;94627:13;94660:7;94653:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94567:108;:::o;33928:716::-;33984:13;34035:14;34072:1;34052:17;34063:5;34052:10;:17::i;:::-;:21;34035:38;;34088:20;34122:6;34111:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34088:41;;34144:11;34273:6;34269:2;34265:15;34257:6;34253:28;34246:35;;34310:288;34317:4;34310:288;;;34342:5;;;;;;;;34484:8;34479:2;34472:5;34468:14;34463:30;34458:3;34450:44;34540:2;34531:11;;;;;;:::i;:::-;;;;;34574:1;34565:5;:10;34310:288;34561:21;34310:288;34619:6;34612:13;;;;;33928:716;;;:::o;88891:105::-;88951:7;88978:10;88971:17;;88891:105;:::o;67746:485::-;67848:27;67877:23;67918:38;67959:15;:24;67975:7;67959:24;;;;;;;;;;;67918:65;;68136:18;68113:41;;68193:19;68187:26;68168:45;;68098:126;67746:485;;;:::o;66974:659::-;67123:11;67288:16;67281:5;67277:28;67268:37;;67448:16;67437:9;67433:32;67420:45;;67598:15;67587:9;67584:30;67576:5;67565:9;67562:20;67559:56;67549:66;;66974:659;;;;;:::o;73632:159::-;;;;;:::o;88200:311::-;88335:7;88355:16;50995:3;88381:19;:41;;88355:68;;50995:3;88449:31;88460:4;88466:2;88470:9;88449:10;:31::i;:::-;88441:40;;:62;;88434:69;;;88200:311;;;;;:::o;63092:450::-;63172:14;63340:16;63333:5;63329:28;63320:37;;63517:5;63503:11;63478:23;63474:41;63471:52;63464:5;63461:63;63451:73;;63092:450;;;;:::o;74456:158::-;;;;;:::o;36501:98::-;36554:7;36581:10;36574:17;;36501:98;:::o;81950:689::-;82081:19;82087:2;82091:8;82081:5;:19::i;:::-;82160:1;82142:2;:14;;;:19;82138:483;;82182:11;82196:13;;82182:27;;82228:13;82250:8;82244:3;:14;82228:30;;82277:233;82308:62;82347:1;82351:2;82355:7;;;;;;82364:5;82308:30;:62::i;:::-;82303:167;;82406:40;;;;;;;;;;;;;;82303:167;82505:3;82497:5;:11;82277:233;;82592:3;82575:13;;:20;82571:34;;82597:8;;;82571:34;82163:458;;82138:483;81950:689;;;:::o;13151:296::-;13234:7;13254:20;13277:4;13254:27;;13297:9;13292:118;13316:5;:12;13312:1;:16;13292:118;;;13365:33;13375:12;13389:5;13395:1;13389:8;;;;;;;;:::i;:::-;;;;;;;;13365:9;:33::i;:::-;13350:48;;13330:3;;;;;:::i;:::-;;;;13292:118;;;;13427:12;13420:19;;;13151:296;;;;:::o;75054:716::-;75217:4;75263:2;75238:45;;;75284:19;:17;:19::i;:::-;75305:4;75311:7;75320:5;75238:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;75234:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75538:1;75521:6;:13;:18;75517:235;;75567:40;;;;;;;;;;;;;;75517:235;75710:6;75704:13;75695:6;75691:2;75687:15;75680:38;75234:529;75407:54;;;75397:64;;;:6;:64;;;;75390:71;;;75054:716;;;;;;:::o;30794:922::-;30847:7;30867:14;30884:1;30867:18;;30934:6;30925:5;:15;30921:102;;30970:6;30961:15;;;;;;:::i;:::-;;;;;31005:2;30995:12;;;;30921:102;31050:6;31041:5;:15;31037:102;;31086:6;31077:15;;;;;;:::i;:::-;;;;;31121:2;31111:12;;;;31037:102;31166:6;31157:5;:15;31153:102;;31202:6;31193:15;;;;;;:::i;:::-;;;;;31237:2;31227:12;;;;31153:102;31282:5;31273;:14;31269:99;;31317:5;31308:14;;;;;;:::i;:::-;;;;;31351:1;31341:11;;;;31269:99;31395:5;31386;:14;31382:99;;31430:5;31421:14;;;;;;:::i;:::-;;;;;31464:1;31454:11;;;;31382:99;31508:5;31499;:14;31495:99;;31543:5;31534:14;;;;;;:::i;:::-;;;;;31577:1;31567:11;;;;31495:99;31621:5;31612;:14;31608:66;;31657:1;31647:11;;;;31608:66;31702:6;31695:13;;;30794:922;;;:::o;87901:147::-;88038:6;87901:147;;;;;:::o;76232:2966::-;76305:20;76328:13;;76305:36;;76368:1;76356:8;:13;76352:44;;76378:18;;;;;;;;;;;;;;76352:44;76409:61;76439:1;76443:2;76447:12;76461:8;76409:21;:61::i;:::-;76953:1;49953:2;76923:1;:26;;76922:32;76910:8;:45;76884:18;:22;76903:2;76884:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;77232:139;77269:2;77323:33;77346:1;77350:2;77354:1;77323:14;:33::i;:::-;77290:30;77311:8;77290:20;:30::i;:::-;:66;77232:18;:139::i;:::-;77198:17;:31;77216:12;77198:31;;;;;;;;;;;:173;;;;77388:16;77419:11;77448:8;77433:12;:23;77419:37;;77969:16;77965:2;77961:25;77949:37;;78341:12;78301:8;78260:1;78198:25;78139:1;78078;78051:335;78712:1;78698:12;78694:20;78652:346;78753:3;78744:7;78741:16;78652:346;;78971:7;78961:8;78958:1;78931:25;78928:1;78925;78920:59;78806:1;78797:7;78793:15;78782:26;;78652:346;;;78656:77;79043:1;79031:8;:13;79027:45;;79053:19;;;;;;;;;;;;;;79027:45;79105:3;79089:13;:19;;;;76658:2462;;79130:60;79159:1;79163:2;79167:12;79181:8;79130:20;:60::i;:::-;76294:2904;76232:2966;;:::o;20191:149::-;20254:7;20285:1;20281;:5;:51;;20312:20;20327:1;20330;20312:14;:20::i;:::-;20281:51;;;20289:20;20304:1;20307;20289:14;:20::i;:::-;20281:51;20274:58;;20191:149;;;;:::o;63644:324::-;63714:14;63947:1;63937:8;63934:15;63908:24;63904:46;63894:56;;63644:324;;;:::o;20348:268::-;20416:13;20523:1;20517:4;20510:15;20552:1;20546:4;20539:15;20593:4;20587;20577:21;20568:30;;20348:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518: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:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:77::-;5904:7;5933:5;5922:16;;5867:77;;;:::o;5950:118::-;6037:24;6055:5;6037:24;:::i;:::-;6032:3;6025:37;5950:118;;:::o;6074:222::-;6167:4;6205:2;6194:9;6190:18;6182:26;;6218:71;6286:1;6275:9;6271:17;6262:6;6218:71;:::i;:::-;6074:222;;;;:::o;6302:60::-;6330:3;6351:5;6344:12;;6302:60;;;:::o;6368:142::-;6418:9;6451:53;6469:34;6478:24;6496:5;6478:24;:::i;:::-;6469:34;:::i;:::-;6451:53;:::i;:::-;6438:66;;6368:142;;;:::o;6516:126::-;6566:9;6599:37;6630:5;6599:37;:::i;:::-;6586:50;;6516:126;;;:::o;6648:157::-;6729:9;6762:37;6793:5;6762:37;:::i;:::-;6749:50;;6648:157;;;:::o;6811:193::-;6929:68;6991:5;6929:68;:::i;:::-;6924:3;6917:81;6811:193;;:::o;7010:284::-;7134:4;7172:2;7161:9;7157:18;7149:26;;7185:102;7284:1;7273:9;7269:17;7260:6;7185:102;:::i;:::-;7010:284;;;;:::o;7300:329::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:53;7604:7;7595:6;7584:9;7580:22;7559:53;:::i;:::-;7549:63;;7505:117;7300:329;;;;:::o;7635:117::-;7744:1;7741;7734:12;7758:117;7867:1;7864;7857:12;7881:180;7929:77;7926:1;7919:88;8026:4;8023:1;8016:15;8050:4;8047:1;8040:15;8067:281;8150:27;8172:4;8150:27;:::i;:::-;8142:6;8138:40;8280:6;8268:10;8265:22;8244:18;8232:10;8229:34;8226:62;8223:88;;;8291:18;;:::i;:::-;8223:88;8331:10;8327:2;8320:22;8110:238;8067:281;;:::o;8354:129::-;8388:6;8415:20;;:::i;:::-;8405:30;;8444:33;8472:4;8464:6;8444:33;:::i;:::-;8354:129;;;:::o;8489:308::-;8551:4;8641:18;8633:6;8630:30;8627:56;;;8663:18;;:::i;:::-;8627:56;8701:29;8723:6;8701:29;:::i;:::-;8693:37;;8785:4;8779;8775:15;8767:23;;8489:308;;;:::o;8803:146::-;8900:6;8895:3;8890;8877:30;8941:1;8932:6;8927:3;8923:16;8916:27;8803:146;;;:::o;8955:425::-;9033:5;9058:66;9074:49;9116:6;9074:49;:::i;:::-;9058:66;:::i;:::-;9049:75;;9147:6;9140:5;9133:21;9185:4;9178:5;9174:16;9223:3;9214:6;9209:3;9205:16;9202:25;9199:112;;;9230:79;;:::i;:::-;9199:112;9320:54;9367:6;9362:3;9357;9320:54;:::i;:::-;9039:341;8955:425;;;;;:::o;9400:340::-;9456:5;9505:3;9498:4;9490:6;9486:17;9482:27;9472:122;;9513:79;;:::i;:::-;9472:122;9630:6;9617:20;9655:79;9730:3;9722:6;9715:4;9707:6;9703:17;9655:79;:::i;:::-;9646:88;;9462:278;9400:340;;;;:::o;9746:509::-;9815:6;9864:2;9852:9;9843:7;9839:23;9835:32;9832:119;;;9870:79;;:::i;:::-;9832:119;10018:1;10007:9;10003:17;9990:31;10048:18;10040:6;10037:30;10034:117;;;10070:79;;:::i;:::-;10034:117;10175:63;10230:7;10221:6;10210:9;10206:22;10175:63;:::i;:::-;10165:73;;9961:287;9746:509;;;;:::o;10261:117::-;10370:1;10367;10360:12;10384:117;10493:1;10490;10483:12;10524:568;10597:8;10607:6;10657:3;10650:4;10642:6;10638:17;10634:27;10624:122;;10665:79;;:::i;:::-;10624:122;10778:6;10765:20;10755:30;;10808:18;10800:6;10797:30;10794:117;;;10830:79;;:::i;:::-;10794:117;10944:4;10936:6;10932:17;10920:29;;10998:3;10990:4;10982:6;10978:17;10968:8;10964:32;10961:41;10958:128;;;11005:79;;:::i;:::-;10958:128;10524:568;;;;;:::o;11098:704::-;11193:6;11201;11209;11258:2;11246:9;11237:7;11233:23;11229:32;11226:119;;;11264:79;;:::i;:::-;11226:119;11412:1;11401:9;11397:17;11384:31;11442:18;11434:6;11431:30;11428:117;;;11464:79;;:::i;:::-;11428:117;11577:80;11649:7;11640:6;11629:9;11625:22;11577:80;:::i;:::-;11559:98;;;;11355:312;11706:2;11732:53;11777:7;11768:6;11757:9;11753:22;11732:53;:::i;:::-;11722:63;;11677:118;11098:704;;;;;:::o;11808:116::-;11878:21;11893:5;11878:21;:::i;:::-;11871:5;11868:32;11858:60;;11914:1;11911;11904:12;11858:60;11808:116;:::o;11930:133::-;11973:5;12011:6;11998:20;11989:29;;12027:30;12051:5;12027:30;:::i;:::-;11930:133;;;;:::o;12069:468::-;12134:6;12142;12191:2;12179:9;12170:7;12166:23;12162:32;12159:119;;;12197:79;;:::i;:::-;12159:119;12317:1;12342:53;12387:7;12378:6;12367:9;12363:22;12342:53;:::i;:::-;12332:63;;12288:117;12444:2;12470:50;12512:7;12503:6;12492:9;12488:22;12470:50;:::i;:::-;12460:60;;12415:115;12069:468;;;;;:::o;12543:307::-;12604:4;12694:18;12686:6;12683:30;12680:56;;;12716:18;;:::i;:::-;12680:56;12754:29;12776:6;12754:29;:::i;:::-;12746:37;;12838:4;12832;12828:15;12820:23;;12543:307;;;:::o;12856:423::-;12933:5;12958:65;12974:48;13015:6;12974:48;:::i;:::-;12958:65;:::i;:::-;12949:74;;13046:6;13039:5;13032:21;13084:4;13077:5;13073:16;13122:3;13113:6;13108:3;13104:16;13101:25;13098:112;;;13129:79;;:::i;:::-;13098:112;13219:54;13266:6;13261:3;13256;13219:54;:::i;:::-;12939:340;12856:423;;;;;:::o;13298:338::-;13353:5;13402:3;13395:4;13387:6;13383:17;13379:27;13369:122;;13410:79;;:::i;:::-;13369:122;13527:6;13514:20;13552:78;13626:3;13618:6;13611:4;13603:6;13599:17;13552:78;:::i;:::-;13543:87;;13359:277;13298:338;;;;:::o;13642:943::-;13737:6;13745;13753;13761;13810:3;13798:9;13789:7;13785:23;13781:33;13778:120;;;13817:79;;:::i;:::-;13778:120;13937:1;13962:53;14007:7;13998:6;13987:9;13983:22;13962:53;:::i;:::-;13952:63;;13908:117;14064:2;14090:53;14135:7;14126:6;14115:9;14111:22;14090:53;:::i;:::-;14080:63;;14035:118;14192:2;14218:53;14263:7;14254:6;14243:9;14239:22;14218:53;:::i;:::-;14208:63;;14163:118;14348:2;14337:9;14333:18;14320:32;14379:18;14371:6;14368:30;14365:117;;;14401:79;;:::i;:::-;14365:117;14506:62;14560:7;14551:6;14540:9;14536:22;14506:62;:::i;:::-;14496:72;;14291:287;13642:943;;;;;;;:::o;14591:122::-;14664:24;14682:5;14664:24;:::i;:::-;14657:5;14654:35;14644:63;;14703:1;14700;14693:12;14644:63;14591:122;:::o;14719:139::-;14765:5;14803:6;14790:20;14781:29;;14819:33;14846:5;14819:33;:::i;:::-;14719:139;;;;:::o;14864:329::-;14923:6;14972:2;14960:9;14951:7;14947:23;14943:32;14940:119;;;14978:79;;:::i;:::-;14940:119;15098:1;15123:53;15168:7;15159:6;15148:9;15144:22;15123:53;:::i;:::-;15113:63;;15069:117;14864:329;;;;:::o;15199:474::-;15267:6;15275;15324:2;15312:9;15303:7;15299:23;15295:32;15292:119;;;15330:79;;:::i;:::-;15292:119;15450:1;15475:53;15520:7;15511:6;15500:9;15496:22;15475:53;:::i;:::-;15465:63;;15421:117;15577:2;15603:53;15648:7;15639:6;15628:9;15624:22;15603:53;:::i;:::-;15593:63;;15548:118;15199:474;;;;;:::o;15679:180::-;15727:77;15724:1;15717:88;15824:4;15821:1;15814:15;15848:4;15845:1;15838:15;15865:320;15909:6;15946:1;15940:4;15936:12;15926:22;;15993:1;15987:4;15983:12;16014:18;16004:81;;16070:4;16062:6;16058:17;16048:27;;16004:81;16132:2;16124:6;16121:14;16101:18;16098:38;16095:84;;16151:18;;:::i;:::-;16095:84;15916:269;15865:320;;;:::o;16191:141::-;16240:4;16263:3;16255:11;;16286:3;16283:1;16276:14;16320:4;16317:1;16307:18;16299:26;;16191:141;;;:::o;16338:93::-;16375:6;16422:2;16417;16410:5;16406:14;16402:23;16392:33;;16338:93;;;:::o;16437:107::-;16481:8;16531:5;16525:4;16521:16;16500:37;;16437:107;;;;:::o;16550:393::-;16619:6;16669:1;16657:10;16653:18;16692:97;16722:66;16711:9;16692:97;:::i;:::-;16810:39;16840:8;16829:9;16810:39;:::i;:::-;16798:51;;16882:4;16878:9;16871:5;16867:21;16858:30;;16931:4;16921:8;16917:19;16910:5;16907:30;16897:40;;16626:317;;16550:393;;;;;:::o;16949:142::-;16999:9;17032:53;17050:34;17059:24;17077:5;17059:24;:::i;:::-;17050:34;:::i;:::-;17032:53;:::i;:::-;17019:66;;16949:142;;;:::o;17097:75::-;17140:3;17161:5;17154:12;;17097:75;;;:::o;17178:269::-;17288:39;17319:7;17288:39;:::i;:::-;17349:91;17398:41;17422:16;17398:41;:::i;:::-;17390:6;17383:4;17377:11;17349:91;:::i;:::-;17343:4;17336:105;17254:193;17178:269;;;:::o;17453:73::-;17498:3;17453:73;:::o;17532:189::-;17609:32;;:::i;:::-;17650:65;17708:6;17700;17694:4;17650:65;:::i;:::-;17585:136;17532:189;;:::o;17727:186::-;17787:120;17804:3;17797:5;17794:14;17787:120;;;17858:39;17895:1;17888:5;17858:39;:::i;:::-;17831:1;17824:5;17820:13;17811:22;;17787:120;;;17727:186;;:::o;17919:543::-;18020:2;18015:3;18012:11;18009:446;;;18054:38;18086:5;18054:38;:::i;:::-;18138:29;18156:10;18138:29;:::i;:::-;18128:8;18124:44;18321:2;18309:10;18306:18;18303:49;;;18342:8;18327:23;;18303:49;18365:80;18421:22;18439:3;18421:22;:::i;:::-;18411:8;18407:37;18394:11;18365:80;:::i;:::-;18024:431;;18009:446;17919:543;;;:::o;18468:117::-;18522:8;18572:5;18566:4;18562:16;18541:37;;18468:117;;;;:::o;18591:169::-;18635:6;18668:51;18716:1;18712:6;18704:5;18701:1;18697:13;18668:51;:::i;:::-;18664:56;18749:4;18743;18739:15;18729:25;;18642:118;18591:169;;;;:::o;18765:295::-;18841:4;18987:29;19012:3;19006:4;18987:29;:::i;:::-;18979:37;;19049:3;19046:1;19042:11;19036:4;19033:21;19025:29;;18765:295;;;;:::o;19065:1395::-;19182:37;19215:3;19182:37;:::i;:::-;19284:18;19276:6;19273:30;19270:56;;;19306:18;;:::i;:::-;19270:56;19350:38;19382:4;19376:11;19350:38;:::i;:::-;19435:67;19495:6;19487;19481:4;19435:67;:::i;:::-;19529:1;19553:4;19540:17;;19585:2;19577:6;19574:14;19602:1;19597:618;;;;20259:1;20276:6;20273:77;;;20325:9;20320:3;20316:19;20310:26;20301:35;;20273:77;20376:67;20436:6;20429:5;20376:67;:::i;:::-;20370:4;20363:81;20232:222;19567:887;;19597:618;19649:4;19645:9;19637:6;19633:22;19683:37;19715:4;19683:37;:::i;:::-;19742:1;19756:208;19770:7;19767:1;19764:14;19756:208;;;19849:9;19844:3;19840:19;19834:26;19826:6;19819:42;19900:1;19892:6;19888:14;19878:24;;19947:2;19936:9;19932:18;19919:31;;19793:4;19790:1;19786:12;19781:17;;19756:208;;;19992:6;19983:7;19980:19;19977:179;;;20050:9;20045:3;20041:19;20035:26;20093:48;20135:4;20127:6;20123:17;20112:9;20093:48;:::i;:::-;20085:6;20078:64;20000:156;19977:179;20202:1;20198;20190:6;20186:14;20182:22;20176:4;20169:36;19604:611;;;19567:887;;19157:1303;;;19065:1395;;:::o;20466:222::-;20606:34;20602:1;20594:6;20590:14;20583:58;20675:5;20670:2;20662:6;20658:15;20651:30;20466:222;:::o;20694:366::-;20836:3;20857:67;20921:2;20916:3;20857:67;:::i;:::-;20850:74;;20933:93;21022:3;20933:93;:::i;:::-;21051:2;21046:3;21042:12;21035:19;;20694:366;;;:::o;21066:419::-;21232:4;21270:2;21259:9;21255:18;21247:26;;21319:9;21313:4;21309:20;21305:1;21294:9;21290:17;21283:47;21347:131;21473:4;21347:131;:::i;:::-;21339:139;;21066:419;;;:::o;21491:223::-;21631:34;21627:1;21619:6;21615:14;21608:58;21700:6;21695:2;21687:6;21683:15;21676:31;21491:223;:::o;21720:366::-;21862:3;21883:67;21947:2;21942:3;21883:67;:::i;:::-;21876:74;;21959:93;22048:3;21959:93;:::i;:::-;22077:2;22072:3;22068:12;22061:19;;21720:366;;;:::o;22092:419::-;22258:4;22296:2;22285:9;22281:18;22273:26;;22345:9;22339:4;22335:20;22331:1;22320:9;22316:17;22309:47;22373:131;22499:4;22373:131;:::i;:::-;22365:139;;22092:419;;;:::o;22517:180::-;22565:77;22562:1;22555:88;22662:4;22659:1;22652:15;22686:4;22683:1;22676:15;22703:191;22743:3;22762:20;22780:1;22762:20;:::i;:::-;22757:25;;22796:20;22814:1;22796:20;:::i;:::-;22791:25;;22839:1;22836;22832:9;22825:16;;22860:3;22857:1;22854:10;22851:36;;;22867:18;;:::i;:::-;22851:36;22703:191;;;;:::o;22900:172::-;23040:24;23036:1;23028:6;23024:14;23017:48;22900:172;:::o;23078:366::-;23220:3;23241:67;23305:2;23300:3;23241:67;:::i;:::-;23234:74;;23317:93;23406:3;23317:93;:::i;:::-;23435:2;23430:3;23426:12;23419:19;;23078:366;;;:::o;23450:419::-;23616:4;23654:2;23643:9;23639:18;23631:26;;23703:9;23697:4;23693:20;23689:1;23678:9;23674:17;23667:47;23731:131;23857:4;23731:131;:::i;:::-;23723:139;;23450:419;;;:::o;23875:170::-;24015:22;24011:1;24003:6;23999:14;23992:46;23875:170;:::o;24051:366::-;24193:3;24214:67;24278:2;24273:3;24214:67;:::i;:::-;24207:74;;24290:93;24379:3;24290:93;:::i;:::-;24408:2;24403:3;24399:12;24392:19;;24051:366;;;:::o;24423:419::-;24589:4;24627:2;24616:9;24612:18;24604:26;;24676:9;24670:4;24666:20;24662:1;24651:9;24647:17;24640:47;24704:131;24830:4;24704:131;:::i;:::-;24696:139;;24423:419;;;:::o;24848:410::-;24888:7;24911:20;24929:1;24911:20;:::i;:::-;24906:25;;24945:20;24963:1;24945:20;:::i;:::-;24940:25;;25000:1;24997;24993:9;25022:30;25040:11;25022:30;:::i;:::-;25011:41;;25201:1;25192:7;25188:15;25185:1;25182:22;25162:1;25155:9;25135:83;25112:139;;25231:18;;:::i;:::-;25112:139;24896:362;24848:410;;;;:::o;25264:166::-;25404:18;25400:1;25392:6;25388:14;25381:42;25264:166;:::o;25436:366::-;25578:3;25599:67;25663:2;25658:3;25599:67;:::i;:::-;25592:74;;25675:93;25764:3;25675:93;:::i;:::-;25793:2;25788:3;25784:12;25777:19;;25436:366;;;:::o;25808:419::-;25974:4;26012:2;26001:9;25997:18;25989:26;;26061:9;26055:4;26051:20;26047:1;26036:9;26032:17;26025:47;26089:131;26215:4;26089:131;:::i;:::-;26081:139;;25808:419;;;:::o;26233:164::-;26373:16;26369:1;26361:6;26357:14;26350:40;26233:164;:::o;26403:366::-;26545:3;26566:67;26630:2;26625:3;26566:67;:::i;:::-;26559:74;;26642:93;26731:3;26642:93;:::i;:::-;26760:2;26755:3;26751:12;26744:19;;26403:366;;;:::o;26775:419::-;26941:4;26979:2;26968:9;26964:18;26956:26;;27028:9;27022:4;27018:20;27014:1;27003:9;26999:17;26992:47;27056:131;27182:4;27056:131;:::i;:::-;27048:139;;26775:419;;;:::o;27200:94::-;27233:8;27281:5;27277:2;27273:14;27252:35;;27200:94;;;:::o;27300:::-;27339:7;27368:20;27382:5;27368:20;:::i;:::-;27357:31;;27300:94;;;:::o;27400:100::-;27439:7;27468:26;27488:5;27468:26;:::i;:::-;27457:37;;27400:100;;;:::o;27506:157::-;27611:45;27631:24;27649:5;27631:24;:::i;:::-;27611:45;:::i;:::-;27606:3;27599:58;27506:157;;:::o;27669:256::-;27781:3;27796:75;27867:3;27858:6;27796:75;:::i;:::-;27896:2;27891:3;27887:12;27880:19;;27916:3;27909:10;;27669:256;;;;:::o;27931:173::-;28071:25;28067:1;28059:6;28055:14;28048:49;27931:173;:::o;28110:366::-;28252:3;28273:67;28337:2;28332:3;28273:67;:::i;:::-;28266:74;;28349:93;28438:3;28349:93;:::i;:::-;28467:2;28462:3;28458:12;28451:19;;28110:366;;;:::o;28482:419::-;28648:4;28686:2;28675:9;28671:18;28663:26;;28735:9;28729:4;28725:20;28721:1;28710:9;28706:17;28699:47;28763:131;28889:4;28763:131;:::i;:::-;28755:139;;28482:419;;;:::o;28907:166::-;29047:18;29043:1;29035:6;29031:14;29024:42;28907:166;:::o;29079:366::-;29221:3;29242:67;29306:2;29301:3;29242:67;:::i;:::-;29235:74;;29318:93;29407:3;29318:93;:::i;:::-;29436:2;29431:3;29427:12;29420:19;;29079:366;;;:::o;29451:419::-;29617:4;29655:2;29644:9;29640:18;29632:26;;29704:9;29698:4;29694:20;29690:1;29679:9;29675:17;29668:47;29732:131;29858:4;29732:131;:::i;:::-;29724:139;;29451:419;;;:::o;29876:148::-;29978:11;30015:3;30000:18;;29876:148;;;;:::o;30030:390::-;30136:3;30164:39;30197:5;30164:39;:::i;:::-;30219:89;30301:6;30296:3;30219:89;:::i;:::-;30212:96;;30317:65;30375:6;30370:3;30363:4;30356:5;30352:16;30317:65;:::i;:::-;30407:6;30402:3;30398:16;30391:23;;30140:280;30030:390;;;;:::o;30426:435::-;30606:3;30628:95;30719:3;30710:6;30628:95;:::i;:::-;30621:102;;30740:95;30831:3;30822:6;30740:95;:::i;:::-;30733:102;;30852:3;30845:10;;30426:435;;;;;:::o;30891:874::-;30994:3;31031:5;31025:12;31060:36;31086:9;31060:36;:::i;:::-;31112:89;31194:6;31189:3;31112:89;:::i;:::-;31105:96;;31232:1;31221:9;31217:17;31248:1;31243:166;;;;31423:1;31418:341;;;;31210:549;;31243:166;31327:4;31323:9;31312;31308:25;31303:3;31296:38;31389:6;31382:14;31375:22;31367:6;31363:35;31358:3;31354:45;31347:52;;31243:166;;31418:341;31485:38;31517:5;31485:38;:::i;:::-;31545:1;31559:154;31573:6;31570:1;31567:13;31559:154;;;31647:7;31641:14;31637:1;31632:3;31628:11;31621:35;31697:1;31688:7;31684:15;31673:26;;31595:4;31592:1;31588:12;31583:17;;31559:154;;;31742:6;31737:3;31733:16;31726:23;;31425:334;;31210:549;;30998:767;;30891:874;;;;:::o;31771:589::-;31996:3;32018:95;32109:3;32100:6;32018:95;:::i;:::-;32011:102;;32130:95;32221:3;32212:6;32130:95;:::i;:::-;32123:102;;32242:92;32330:3;32321:6;32242:92;:::i;:::-;32235:99;;32351:3;32344:10;;31771:589;;;;;;:::o;32366:181::-;32506:33;32502:1;32494:6;32490:14;32483:57;32366:181;:::o;32553:366::-;32695:3;32716:67;32780:2;32775:3;32716:67;:::i;:::-;32709:74;;32792:93;32881:3;32792:93;:::i;:::-;32910:2;32905:3;32901:12;32894:19;;32553:366;;;:::o;32925:419::-;33091:4;33129:2;33118:9;33114:18;33106:26;;33178:9;33172:4;33168:20;33164:1;33153:9;33149:17;33142:47;33206:131;33332:4;33206:131;:::i;:::-;33198:139;;32925:419;;;:::o;33350:225::-;33490:34;33486:1;33478:6;33474:14;33467:58;33559:8;33554:2;33546:6;33542:15;33535:33;33350:225;:::o;33581:366::-;33723:3;33744:67;33808:2;33803:3;33744:67;:::i;:::-;33737:74;;33820:93;33909:3;33820:93;:::i;:::-;33938:2;33933:3;33929:12;33922:19;;33581:366;;;:::o;33953:419::-;34119:4;34157:2;34146:9;34142:18;34134:26;;34206:9;34200:4;34196:20;34192:1;34181:9;34177:17;34170:47;34234:131;34360:4;34234:131;:::i;:::-;34226:139;;33953:419;;;:::o;34378:332::-;34499:4;34537:2;34526:9;34522:18;34514:26;;34550:71;34618:1;34607:9;34603:17;34594:6;34550:71;:::i;:::-;34631:72;34699:2;34688:9;34684:18;34675:6;34631:72;:::i;:::-;34378:332;;;;;:::o;34716:137::-;34770:5;34801:6;34795:13;34786:22;;34817:30;34841:5;34817:30;:::i;:::-;34716:137;;;;:::o;34859:345::-;34926:6;34975:2;34963:9;34954:7;34950:23;34946:32;34943:119;;;34981:79;;:::i;:::-;34943:119;35101:1;35126:61;35179:7;35170:6;35159:9;35155:22;35126:61;:::i;:::-;35116:71;;35072:125;34859:345;;;;:::o;35210:182::-;35350:34;35346:1;35338:6;35334:14;35327:58;35210:182;:::o;35398:366::-;35540:3;35561:67;35625:2;35620:3;35561:67;:::i;:::-;35554:74;;35637:93;35726:3;35637:93;:::i;:::-;35755:2;35750:3;35746:12;35739:19;;35398:366;;;:::o;35770:419::-;35936:4;35974:2;35963:9;35959:18;35951:26;;36023:9;36017:4;36013:20;36009:1;35998:9;35994:17;35987:47;36051:131;36177:4;36051:131;:::i;:::-;36043:139;;35770:419;;;:::o;36195:180::-;36243:77;36240:1;36233:88;36340:4;36337:1;36330:15;36364:4;36361:1;36354:15;36381:180;36429:77;36426:1;36419:88;36526:4;36523:1;36516:15;36550:4;36547:1;36540:15;36567:233;36606:3;36629:24;36647:5;36629:24;:::i;:::-;36620:33;;36675:66;36668:5;36665:77;36662:103;;36745:18;;:::i;:::-;36662:103;36792:1;36785:5;36781:13;36774:20;;36567:233;;;:::o;36806:98::-;36857:6;36891:5;36885:12;36875:22;;36806:98;;;:::o;36910:168::-;36993:11;37027:6;37022:3;37015:19;37067:4;37062:3;37058:14;37043:29;;36910:168;;;;:::o;37084:373::-;37170:3;37198:38;37230:5;37198:38;:::i;:::-;37252:70;37315:6;37310:3;37252:70;:::i;:::-;37245:77;;37331:65;37389:6;37384:3;37377:4;37370:5;37366:16;37331:65;:::i;:::-;37421:29;37443:6;37421:29;:::i;:::-;37416:3;37412:39;37405:46;;37174:283;37084:373;;;;:::o;37463:640::-;37658:4;37696:3;37685:9;37681:19;37673:27;;37710:71;37778:1;37767:9;37763:17;37754:6;37710:71;:::i;:::-;37791:72;37859:2;37848:9;37844:18;37835:6;37791:72;:::i;:::-;37873;37941:2;37930:9;37926:18;37917:6;37873:72;:::i;:::-;37992:9;37986:4;37982:20;37977:2;37966:9;37962:18;37955:48;38020:76;38091:4;38082:6;38020:76;:::i;:::-;38012:84;;37463:640;;;;;;;:::o;38109:141::-;38165:5;38196:6;38190:13;38181:22;;38212:32;38238:5;38212:32;:::i;:::-;38109:141;;;;:::o;38256:349::-;38325:6;38374:2;38362:9;38353:7;38349:23;38345:32;38342:119;;;38380:79;;:::i;:::-;38342:119;38500:1;38525:63;38580:7;38571:6;38560:9;38556:22;38525:63;:::i;:::-;38515:73;;38471:127;38256:349;;;;:::o

Swarm Source

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

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