ETH Price: $3,355.75 (-2.86%)
Gas: 3 Gwei

Token

NinjitSu (NJS)
 

Overview

Max Total Supply

2,725 NJS

Holders

645

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
themichaelsaylor.eth
Balance
4 NJS
0xae35a3992ee35279f91053adfc66f8ec42c2bdf7
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:
NinjitSu

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-01-31
*/

// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(operatorFilterRegistry.isOperatorAllowed(
                    address(this),
                    msg.sender
                ) &&
                    operatorFilterRegistry.isOperatorAllowed(
                        address(this),
                        from
                    ))
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


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

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

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


// OpenZeppelin Contracts (last updated v4.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: contracts/IERC721A.sol


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

pragma solidity ^0.8.13;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

    // ==============================
    //        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);
}
// File: contracts/ERC721A.sol


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

pragma solidity ^0.8.13;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * 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;
    }

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: contracts/ninja.sol

//SPDX-License-Identifier: MIT
// pragma solidity ^0.8.9;
pragma solidity >=0.7.0 <0.9.0;







contract NinjitSu is ERC721A, Ownable, DefaultOperatorFilterer {
    using Strings for uint256;
    
    uint256 public constant MAX_SUPPLY = 5000;
    uint256 public constant P1_SUPPLY = 2500;

    uint256 public phase = 0;

    bytes32 public merkleRoot;

    uint256 public whitelistPrice = 0.0055 ether;
    uint256 public publicPrice = 0.0075 ether;
    uint256 public maxMintPerTx = 5;
    uint256 public maxWLMintPerWallet = 5;
    
    string public baseURI;

    bool private reveal = false;

    mapping(address => uint) public whitelistMintedTracker;

    constructor() ERC721A("NinjitSu", "NJS") {}

    /**
     * @notice token start from id 1
     */
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    /**
     * @notice team mint
     */
    function teamMint(address[] memory to, uint quantity) external onlyOwner {
        require((to.length * quantity) + totalSupply() <= MAX_SUPPLY, "Sold out");

        for(uint i = 0; i < to.length; i++){
            _mint(to[i], quantity);
        }
    }

    /**
     * @notice whitelist mint
     */
    function whitelistMint(uint quantity, bytes32[] memory proof) external payable {
        require(phase == 1, "whitelist is close.");
        
        require(MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Not whitelisted.");       
        
        _mint(quantity);
    }

    /**
     * @notice public mint
     */
    function publicMint(uint quantity) external payable {
        require(phase == 2 , "Public Sales is close.");
        _mint(quantity);
    }

    /**
     * @notice mint
     */
    function _mint(uint quantity) internal {

        require(quantity <= maxMintPerTx && quantity > 0, "Hit max mint per transaction.");

        if (phase == 1) {
            require(msg.value >= whitelistPrice * quantity, "Not enough ETH to mint");

            require(whitelistMintedTracker[_msgSender()] + quantity <= maxWLMintPerWallet, "Hit the max mint.");

            require(quantity + totalSupply() <= P1_SUPPLY, "P1 Sold out");

            whitelistMintedTracker[_msgSender()] += quantity;
        } else if (phase == 2) {
            require(msg.value >= publicPrice * quantity, "Not enough ETH to mint");

            require(quantity + totalSupply() <= MAX_SUPPLY, "Total Sold out");
        }
                
        _mint(_msgSender(), quantity);
    }

    /**
     * @notice set whitelist merkle root
     */
    function setMerkleRoot(bytes32 _rootHash) external onlyOwner {
        merkleRoot = _rootHash;
    }

    /**
     * @notice set max mint per transaction
     */
    function setMaxMintPerTx(uint256 _setMaxTx) external onlyOwner {
        maxMintPerTx = _setMaxTx;
    }

    /**
     * @notice set max mint per wallet
     */
    function setMaxWLMintPerWallet(uint256 _setMaxWLMint) external onlyOwner {
        maxWLMintPerWallet = _setMaxWLMint;
    }
    
    /**
     * @notice set whitelist price
     */
    function setWhitelistPrice(uint256 _price) external onlyOwner {
        whitelistPrice = _price;
    }

    /**
     * @notice set public price
     */
    function setPublicPrice(uint256 _price) external onlyOwner {
        publicPrice = _price;
    }

    /**
     * @notice set reveal
     */
    function switchReveal() external onlyOwner {
        reveal = !reveal;
    }

    /**
     * @notice set base uri
     */
    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
    }

    /**
     * @notice switch phase 
     */
    function switchPhase(uint256 phaseNumber) external onlyOwner {
        require(phaseNumber >= 0 && phaseNumber < 3 , "Phase out of range 0 - 2");
        phase = phaseNumber;
    }

    /**
     * @notice token URI
     */
    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        if (reveal) {
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _tokenId.toString())) : '';
        } else {
            return string(abi.encodePacked(baseURI));
        }
    }

    /**
     * @notice transfer funds
     */
    function withdrawal() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"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":"P1_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_setMaxTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_setMaxWLMint","type":"uint256"}],"name":"setMaxWLMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWhitelistPrice","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":[{"internalType":"uint256","name":"phaseNumber","type":"uint256"}],"name":"switchPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintedTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060095566138a388a43c000600b55661aa535d3d0c000600c556005600d556005600e556000601060006101000a81548160ff0219169083151502179055503480156200005157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f4e696e6a697453750000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e4a5300000000000000000000000000000000000000000000000000000000008152508160029081620000e691906200067f565b508060039081620000f891906200067f565b50620001096200032e60201b60201c565b600081905550505062000131620001256200033760201b60201c565b6200033f60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000326578015620001ec576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b2929190620007ab565b600060405180830381600087803b158015620001cd57600080fd5b505af1158015620001e2573d6000803e3d6000fd5b5050505062000325565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200026c929190620007ab565b600060405180830381600087803b1580156200028757600080fd5b505af11580156200029c573d6000803e3d6000fd5b5050505062000324565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ef9190620007d8565b600060405180830381600087803b1580156200030a57600080fd5b505af11580156200031f573d6000803e3d6000fd5b505050505b5b5b5050620007f5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048757607f821691505b6020821081036200049d576200049c6200043f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004c8565b620005138683620004c8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005606200055a62000554846200052b565b62000535565b6200052b565b9050919050565b6000819050919050565b6200057c836200053f565b620005946200058b8262000567565b848454620004d5565b825550505050565b600090565b620005ab6200059c565b620005b881848462000571565b505050565b5b81811015620005e057620005d4600082620005a1565b600181019050620005be565b5050565b601f8211156200062f57620005f981620004a3565b6200060484620004b8565b8101602085101562000614578190505b6200062c6200062385620004b8565b830182620005bd565b50505b505050565b600082821c905092915050565b6000620006546000198460080262000634565b1980831691505092915050565b60006200066f838362000641565b9150826002028217905092915050565b6200068a8262000405565b67ffffffffffffffff811115620006a657620006a562000410565b5b620006b282546200046e565b620006bf828285620005e4565b600060209050601f831160018114620006f75760008415620006e2578287015190505b620006ee858262000661565b8655506200075e565b601f1984166200070786620004a3565b60005b8281101562000731578489015182556001820191506020850194506020810190506200070a565b868310156200075157848901516200074d601f89168262000641565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007938262000766565b9050919050565b620007a58162000786565b82525050565b6000604082019050620007c260008301856200079a565b620007d160208301846200079a565b9392505050565b6000602082019050620007ef60008301846200079a565b92915050565b6140ab80620008056000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063c6275255116100ab578063e985e9c51161006f578063e985e9c5146107f9578063ec5a2d4514610836578063f2dc824c1461084d578063f2fde38b14610876578063fc1a1c361461089f57610230565b8063c627525514610735578063c87b56dd1461075e578063d2cab0561461079b578063d4e93292146107b7578063de7fcb1d146107ce57610230565b8063a22cb465116100f2578063a22cb46514610650578063a945bf8014610679578063afd4c663146106a4578063b1c9fe6e146106e1578063b88d4fde1461070c57610230565b8063715018a614610591578063717d57d3146105a85780637cb64759146105d15780638da5cb5b146105fa57806395d89b411461062557610230565b806332cb6b0c116101bc57806363e547171161018057806363e54717146104ac578063694b4849146104d55780636be8926f146105005780636c0360eb1461052957806370a082311461055457610230565b806332cb6b0c146103c957806342842e0e146103f457806355f804b31461041d578063616cdb1e146104465780636352211e1461046f57610230565b806314d14dcf1161020357806314d14dcf1461030357806318160ddd1461032e57806323b872dd146103595780632db11544146103825780632eb4a7ab1461039e57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612ad1565b6108ca565b6040516102699190612b19565b60405180910390f35b34801561027e57600080fd5b5061028761095c565b6040516102949190612bc4565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612c1c565b6109ee565b6040516102d19190612c8a565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612cd1565b610a6a565b005b34801561030f57600080fd5b50610318610c10565b6040516103259190612d20565b60405180910390f35b34801561033a57600080fd5b50610343610c16565b6040516103509190612d20565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612d3b565b610c2d565b005b61039c60048036038101906103979190612c1c565b610e13565b005b3480156103aa57600080fd5b506103b3610e64565b6040516103c09190612da7565b60405180910390f35b3480156103d557600080fd5b506103de610e6a565b6040516103eb9190612d20565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612d3b565b610e70565b005b34801561042957600080fd5b50610444600480360381019061043f9190612ef7565b611056565b005b34801561045257600080fd5b5061046d60048036038101906104689190612c1c565b611071565b005b34801561047b57600080fd5b5061049660048036038101906104919190612c1c565b611083565b6040516104a39190612c8a565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612c1c565b611095565b005b3480156104e157600080fd5b506104ea6110f7565b6040516104f79190612d20565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612c1c565b6110fd565b005b34801561053557600080fd5b5061053e61110f565b60405161054b9190612bc4565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190612f40565b61119d565b6040516105889190612d20565b60405180910390f35b34801561059d57600080fd5b506105a6611231565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612c1c565b611245565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190612f99565b611257565b005b34801561060657600080fd5b5061060f611269565b60405161061c9190612c8a565b60405180910390f35b34801561063157600080fd5b5061063a611293565b6040516106479190612bc4565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190612ff2565b611325565b005b34801561068557600080fd5b5061068e61149c565b60405161069b9190612d20565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190612f40565b6114a2565b6040516106d89190612d20565b60405180910390f35b3480156106ed57600080fd5b506106f66114ba565b6040516107039190612d20565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e91906130d3565b6114c0565b005b34801561074157600080fd5b5061075c60048036038101906107579190612c1c565b6116a9565b005b34801561076a57600080fd5b5061078560048036038101906107809190612c1c565b6116bb565b6040516107929190612bc4565b60405180910390f35b6107b560048036038101906107b0919061321e565b6117a1565b005b3480156107c357600080fd5b506107cc611865565b005b3480156107da57600080fd5b506107e36118bc565b6040516107f09190612d20565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b919061327a565b6118c2565b60405161082d9190612b19565b60405180910390f35b34801561084257600080fd5b5061084b611956565b005b34801561085957600080fd5b50610874600480360381019061086f919061337d565b61198a565b005b34801561088257600080fd5b5061089d60048036038101906108989190612f40565b611a3d565b005b3480156108ab57600080fd5b506108b4611ac0565b6040516108c19190612d20565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109555750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461096b90613408565b80601f016020809104026020016040519081016040528092919081815260200182805461099790613408565b80156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b5050505050905090565b60006109f982611ac6565b610a2f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7582611b25565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adc576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afb611bf1565b73ffffffffffffffffffffffffffffffffffffffff1614610b5e57610b2781610b22611bf1565b6118c2565b610b5d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109c481565b6000610c20611bf9565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e01573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c9f57610c9a848484611c02565b610e0d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce8929190613439565b6020604051808303816000875af1158015610d07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2b9190613477565b8015610dbf57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d7b929190613439565b6020604051808303816000875af1158015610d9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbe9190613477565b5b610e0057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610df79190612c8a565b60405180910390fd5b5b610e0c848484611c02565b5b50505050565b600260095414610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f906134f0565b60405180910390fd5b610e6181611c12565b50565b600a5481565b61138881565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611044573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ee257610edd848484611ed3565b611050565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f2b929190613439565b6020604051808303816000875af1158015610f4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6e9190613477565b801561100257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610fbe929190613439565b6020604051808303816000875af1158015610fdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110019190613477565b5b61104357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161103a9190612c8a565b60405180910390fd5b5b61104f848484611ed3565b5b50505050565b61105e611ef3565b80600f908161106d91906136bc565b5050565b611079611ef3565b80600d8190555050565b600061108e82611b25565b9050919050565b61109d611ef3565b600081101580156110ae5750600381105b6110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906137da565b60405180910390fd5b8060098190555050565b600e5481565b611105611ef3565b80600e8190555050565b600f805461111c90613408565b80601f016020809104026020016040519081016040528092919081815260200182805461114890613408565b80156111955780601f1061116a57610100808354040283529160200191611195565b820191906000526020600020905b81548152906001019060200180831161117857829003601f168201915b505050505081565b6000806111a983611f71565b036111e0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611239611ef3565b6112436000611f7b565b565b61124d611ef3565b80600b8190555050565b61125f611ef3565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112a290613408565b80601f01602080910402602001604051908101604052809291908181526020018280546112ce90613408565b801561131b5780601f106112f05761010080835404028352916020019161131b565b820191906000526020600020905b8154815290600101906020018083116112fe57829003601f168201915b5050505050905090565b61132d611bf1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611391576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061139e611bf1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661144b611bf1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114909190612b19565b60405180910390a35050565b600c5481565b60116020528060005260406000206000915090505481565b60095481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611695573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115335761152e85858585612041565b6116a2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161157c929190613439565b6020604051808303816000875af115801561159b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115bf9190613477565b801561165357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161160f929190613439565b6020604051808303816000875af115801561162e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116529190613477565b5b61169457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161168b9190612c8a565b60405180910390fd5b5b6116a185858585612041565b5b5050505050565b6116b1611ef3565b80600c8190555050565b60606116c682611ac6565b611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc9061386c565b60405180910390fd5b601060009054906101000a900460ff1615611778576000600f805461172990613408565b9050036117455760405180602001604052806000815250611771565b600f611750836120b4565b60405160200161176192919061394b565b6040516020818303038152906040525b905061179c565b600f60405160200161178a919061396f565b60405160208183030381529060405290505b919050565b6001600954146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906139d2565b60405180910390fd5b61181981600a54336040516020016117fe9190613a3a565b60405160208183030381529060405280519060200120612182565b611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613aa1565b60405180910390fd5b61186182611c12565b5050565b61186d611ef3565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156118b8573d6000803e3d6000fd5b5050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61195e611ef3565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b611992611ef3565b61138861199d610c16565b8284516119aa9190613af0565b6119b49190613b32565b11156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90613bb2565b60405180910390fd5b60005b8251811015611a3857611a25838281518110611a1757611a16613bd2565b5b602002602001015183612199565b8080611a3090613c01565b9150506119f8565b505050565b611a45611ef3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90613cbb565b60405180910390fd5b611abd81611f7b565b50565b600b5481565b600081611ad1611bf9565b11158015611ae0575060005482105b8015611b1e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611b34611bf9565b11611bba57600054811015611bb95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bb7575b60008103611bad576004600083600190039350838152602001908152602001600020549050611b83565b8092505050611bec565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b611c0d838383612347565b505050565b600d548111158015611c245750600081115b611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613d27565b60405180910390fd5b600160095403611e0c5780600b54611c7b9190613af0565b341015611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613d93565b60405180910390fd5b600e548160116000611ccd61270c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d129190613b32565b1115611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a90613dff565b60405180910390fd5b6109c4611d5e610c16565b82611d699190613b32565b1115611daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da190613e6b565b60405180910390fd5b8060116000611db761270c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e009190613b32565b92505081905550611ebf565b600260095403611ebe5780600c54611e249190613af0565b341015611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90613d93565b60405180910390fd5b611388611e71610c16565b82611e7c9190613b32565b1115611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490613ed7565b60405180910390fd5b5b5b611ed0611eca61270c565b82612199565b50565b611eee838383604051806020016040528060008152506114c0565b505050565b611efb61270c565b73ffffffffffffffffffffffffffffffffffffffff16611f19611269565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613f43565b60405180910390fd5b565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61204c848484612347565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120ae5761207784848484612714565b6120ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600060016120c384612864565b01905060008167ffffffffffffffff8111156120e2576120e1612dcc565b5b6040519080825280601f01601f1916602001820160405280156121145781602001600182028036833780820191505090505b509050600082602001820190505b600115612177578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161216b5761216a613f63565b5b04945060008503612122575b819350505050919050565b60008261218f85846129b7565b1490509392505050565b60008054905060006121aa84611f71565b036121e1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000820361221b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122286000848385612a0d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161228d60018414612a13565b901b60a042901b61229d85611f71565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122c3578160008190555050506123426000848385612a1d565b505050565b600061235282611b25565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123b9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612412611bf1565b73ffffffffffffffffffffffffffffffffffffffff16148061244157506124408661243b611bf1565b6118c2565b5b8061247e575061244f611bf1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806124b7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006124c286611f71565b036124f9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125068686866001612a0d565b600061251183611f71565b1461254d576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61261487611f71565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361269c576000600185019050600060046000838152602001908152602001600020540361269a576000548114612699578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127048686866001612a1d565b505050505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261273a611bf1565b8786866040518563ffffffff1660e01b815260040161275c9493929190613fe7565b6020604051808303816000875af192505050801561279857506040513d601f19601f820116820180604052508101906127959190614048565b60015b612811573d80600081146127c8576040519150601f19603f3d011682016040523d82523d6000602084013e6127cd565b606091505b506000815103612809576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106128c2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128b8576128b7613f63565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106128ff576d04ee2d6d415b85acef810000000083816128f5576128f4613f63565b5b0492506020810190505b662386f26fc10000831061292e57662386f26fc10000838161292457612923613f63565b5b0492506010810190505b6305f5e1008310612957576305f5e100838161294d5761294c613f63565b5b0492506008810190505b612710831061297c57612710838161297257612971613f63565b5b0492506004810190505b6064831061299f576064838161299557612994613f63565b5b0492506002810190505b600a83106129ae576001810190505b80915050919050565b60008082905060005b8451811015612a02576129ed828683815181106129e0576129df613bd2565b5b6020026020010151612a23565b915080806129fa90613c01565b9150506129c0565b508091505092915050565b50505050565b6000819050919050565b50505050565b6000818310612a3b57612a368284612a4e565b612a46565b612a458383612a4e565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612aae81612a79565b8114612ab957600080fd5b50565b600081359050612acb81612aa5565b92915050565b600060208284031215612ae757612ae6612a6f565b5b6000612af584828501612abc565b91505092915050565b60008115159050919050565b612b1381612afe565b82525050565b6000602082019050612b2e6000830184612b0a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b6e578082015181840152602081019050612b53565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b9682612b34565b612ba08185612b3f565b9350612bb0818560208601612b50565b612bb981612b7a565b840191505092915050565b60006020820190508181036000830152612bde8184612b8b565b905092915050565b6000819050919050565b612bf981612be6565b8114612c0457600080fd5b50565b600081359050612c1681612bf0565b92915050565b600060208284031215612c3257612c31612a6f565b5b6000612c4084828501612c07565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7482612c49565b9050919050565b612c8481612c69565b82525050565b6000602082019050612c9f6000830184612c7b565b92915050565b612cae81612c69565b8114612cb957600080fd5b50565b600081359050612ccb81612ca5565b92915050565b60008060408385031215612ce857612ce7612a6f565b5b6000612cf685828601612cbc565b9250506020612d0785828601612c07565b9150509250929050565b612d1a81612be6565b82525050565b6000602082019050612d356000830184612d11565b92915050565b600080600060608486031215612d5457612d53612a6f565b5b6000612d6286828701612cbc565b9350506020612d7386828701612cbc565b9250506040612d8486828701612c07565b9150509250925092565b6000819050919050565b612da181612d8e565b82525050565b6000602082019050612dbc6000830184612d98565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0482612b7a565b810181811067ffffffffffffffff82111715612e2357612e22612dcc565b5b80604052505050565b6000612e36612a65565b9050612e428282612dfb565b919050565b600067ffffffffffffffff821115612e6257612e61612dcc565b5b612e6b82612b7a565b9050602081019050919050565b82818337600083830152505050565b6000612e9a612e9584612e47565b612e2c565b905082815260208101848484011115612eb657612eb5612dc7565b5b612ec1848285612e78565b509392505050565b600082601f830112612ede57612edd612dc2565b5b8135612eee848260208601612e87565b91505092915050565b600060208284031215612f0d57612f0c612a6f565b5b600082013567ffffffffffffffff811115612f2b57612f2a612a74565b5b612f3784828501612ec9565b91505092915050565b600060208284031215612f5657612f55612a6f565b5b6000612f6484828501612cbc565b91505092915050565b612f7681612d8e565b8114612f8157600080fd5b50565b600081359050612f9381612f6d565b92915050565b600060208284031215612faf57612fae612a6f565b5b6000612fbd84828501612f84565b91505092915050565b612fcf81612afe565b8114612fda57600080fd5b50565b600081359050612fec81612fc6565b92915050565b6000806040838503121561300957613008612a6f565b5b600061301785828601612cbc565b925050602061302885828601612fdd565b9150509250929050565b600067ffffffffffffffff82111561304d5761304c612dcc565b5b61305682612b7a565b9050602081019050919050565b600061307661307184613032565b612e2c565b90508281526020810184848401111561309257613091612dc7565b5b61309d848285612e78565b509392505050565b600082601f8301126130ba576130b9612dc2565b5b81356130ca848260208601613063565b91505092915050565b600080600080608085870312156130ed576130ec612a6f565b5b60006130fb87828801612cbc565b945050602061310c87828801612cbc565b935050604061311d87828801612c07565b925050606085013567ffffffffffffffff81111561313e5761313d612a74565b5b61314a878288016130a5565b91505092959194509250565b600067ffffffffffffffff82111561317157613170612dcc565b5b602082029050602081019050919050565b600080fd5b600061319a61319584613156565b612e2c565b905080838252602082019050602084028301858111156131bd576131bc613182565b5b835b818110156131e657806131d28882612f84565b8452602084019350506020810190506131bf565b5050509392505050565b600082601f83011261320557613204612dc2565b5b8135613215848260208601613187565b91505092915050565b6000806040838503121561323557613234612a6f565b5b600061324385828601612c07565b925050602083013567ffffffffffffffff81111561326457613263612a74565b5b613270858286016131f0565b9150509250929050565b6000806040838503121561329157613290612a6f565b5b600061329f85828601612cbc565b92505060206132b085828601612cbc565b9150509250929050565b600067ffffffffffffffff8211156132d5576132d4612dcc565b5b602082029050602081019050919050565b60006132f96132f4846132ba565b612e2c565b9050808382526020820190506020840283018581111561331c5761331b613182565b5b835b8181101561334557806133318882612cbc565b84526020840193505060208101905061331e565b5050509392505050565b600082601f83011261336457613363612dc2565b5b81356133748482602086016132e6565b91505092915050565b6000806040838503121561339457613393612a6f565b5b600083013567ffffffffffffffff8111156133b2576133b1612a74565b5b6133be8582860161334f565b92505060206133cf85828601612c07565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342057607f821691505b602082108103613433576134326133d9565b5b50919050565b600060408201905061344e6000830185612c7b565b61345b6020830184612c7b565b9392505050565b60008151905061347181612fc6565b92915050565b60006020828403121561348d5761348c612a6f565b5b600061349b84828501613462565b91505092915050565b7f5075626c69632053616c657320697320636c6f73652e00000000000000000000600082015250565b60006134da601683612b3f565b91506134e5826134a4565b602082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613535565b61357c8683613535565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135b96135b46135af84612be6565b613594565b612be6565b9050919050565b6000819050919050565b6135d38361359e565b6135e76135df826135c0565b848454613542565b825550505050565b600090565b6135fc6135ef565b6136078184846135ca565b505050565b5b8181101561362b576136206000826135f4565b60018101905061360d565b5050565b601f8211156136705761364181613510565b61364a84613525565b81016020851015613659578190505b61366d61366585613525565b83018261360c565b50505b505050565b600082821c905092915050565b600061369360001984600802613675565b1980831691505092915050565b60006136ac8383613682565b9150826002028217905092915050565b6136c582612b34565b67ffffffffffffffff8111156136de576136dd612dcc565b5b6136e88254613408565b6136f382828561362f565b600060209050601f8311600181146137265760008415613714578287015190505b61371e85826136a0565b865550613786565b601f19841661373486613510565b60005b8281101561375c57848901518255600182019150602085019450602081019050613737565b868310156137795784890151613775601f891682613682565b8355505b6001600288020188555050505b505050505050565b7f5068617365206f7574206f662072616e67652030202d20320000000000000000600082015250565b60006137c4601883612b3f565b91506137cf8261378e565b602082019050919050565b600060208201905081810360008301526137f3816137b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613856602f83612b3f565b9150613861826137fa565b604082019050919050565b6000602082019050818103600083015261388581613849565b9050919050565b600081905092915050565b600081546138a481613408565b6138ae818661388c565b945060018216600081146138c957600181146138de57613911565b60ff1983168652811515820286019350613911565b6138e785613510565b60005b83811015613909578154818901526001820191506020810190506138ea565b838801955050505b50505092915050565b600061392582612b34565b61392f818561388c565b935061393f818560208601612b50565b80840191505092915050565b60006139578285613897565b9150613963828461391a565b91508190509392505050565b600061397b8284613897565b915081905092915050565b7f77686974656c69737420697320636c6f73652e00000000000000000000000000600082015250565b60006139bc601383612b3f565b91506139c782613986565b602082019050919050565b600060208201905081810360008301526139eb816139af565b9050919050565b60008160601b9050919050565b6000613a0a826139f2565b9050919050565b6000613a1c826139ff565b9050919050565b613a34613a2f82612c69565b613a11565b82525050565b6000613a468284613a23565b60148201915081905092915050565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b6000613a8b601083612b3f565b9150613a9682613a55565b602082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613afb82612be6565b9150613b0683612be6565b9250828202613b1481612be6565b91508282048414831517613b2b57613b2a613ac1565b5b5092915050565b6000613b3d82612be6565b9150613b4883612be6565b9250828201905080821115613b6057613b5f613ac1565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613b9c600883612b3f565b9150613ba782613b66565b602082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c0c82612be6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c3e57613c3d613ac1565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ca5602683612b3f565b9150613cb082613c49565b604082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b7f486974206d6178206d696e7420706572207472616e73616374696f6e2e000000600082015250565b6000613d11601d83612b3f565b9150613d1c82613cdb565b602082019050919050565b60006020820190508181036000830152613d4081613d04565b9050919050565b7f4e6f7420656e6f7567682045544820746f206d696e7400000000000000000000600082015250565b6000613d7d601683612b3f565b9150613d8882613d47565b602082019050919050565b60006020820190508181036000830152613dac81613d70565b9050919050565b7f48697420746865206d6178206d696e742e000000000000000000000000000000600082015250565b6000613de9601183612b3f565b9150613df482613db3565b602082019050919050565b60006020820190508181036000830152613e1881613ddc565b9050919050565b7f503120536f6c64206f7574000000000000000000000000000000000000000000600082015250565b6000613e55600b83612b3f565b9150613e6082613e1f565b602082019050919050565b60006020820190508181036000830152613e8481613e48565b9050919050565b7f546f74616c20536f6c64206f7574000000000000000000000000000000000000600082015250565b6000613ec1600e83612b3f565b9150613ecc82613e8b565b602082019050919050565b60006020820190508181036000830152613ef081613eb4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f2d602083612b3f565b9150613f3882613ef7565b602082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613fb982613f92565b613fc38185613f9d565b9350613fd3818560208601612b50565b613fdc81612b7a565b840191505092915050565b6000608082019050613ffc6000830187612c7b565b6140096020830186612c7b565b6140166040830185612d11565b81810360608301526140288184613fae565b905095945050505050565b60008151905061404281612aa5565b92915050565b60006020828403121561405e5761405d612a6f565b5b600061406c84828501614033565b9150509291505056fea2646970667358221220485e4aff959375f624eb0a20de29eb1072215f3f6381c6cd7f07dc469d103e9d64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063c6275255116100ab578063e985e9c51161006f578063e985e9c5146107f9578063ec5a2d4514610836578063f2dc824c1461084d578063f2fde38b14610876578063fc1a1c361461089f57610230565b8063c627525514610735578063c87b56dd1461075e578063d2cab0561461079b578063d4e93292146107b7578063de7fcb1d146107ce57610230565b8063a22cb465116100f2578063a22cb46514610650578063a945bf8014610679578063afd4c663146106a4578063b1c9fe6e146106e1578063b88d4fde1461070c57610230565b8063715018a614610591578063717d57d3146105a85780637cb64759146105d15780638da5cb5b146105fa57806395d89b411461062557610230565b806332cb6b0c116101bc57806363e547171161018057806363e54717146104ac578063694b4849146104d55780636be8926f146105005780636c0360eb1461052957806370a082311461055457610230565b806332cb6b0c146103c957806342842e0e146103f457806355f804b31461041d578063616cdb1e146104465780636352211e1461046f57610230565b806314d14dcf1161020357806314d14dcf1461030357806318160ddd1461032e57806323b872dd146103595780632db11544146103825780632eb4a7ab1461039e57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612ad1565b6108ca565b6040516102699190612b19565b60405180910390f35b34801561027e57600080fd5b5061028761095c565b6040516102949190612bc4565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612c1c565b6109ee565b6040516102d19190612c8a565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612cd1565b610a6a565b005b34801561030f57600080fd5b50610318610c10565b6040516103259190612d20565b60405180910390f35b34801561033a57600080fd5b50610343610c16565b6040516103509190612d20565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612d3b565b610c2d565b005b61039c60048036038101906103979190612c1c565b610e13565b005b3480156103aa57600080fd5b506103b3610e64565b6040516103c09190612da7565b60405180910390f35b3480156103d557600080fd5b506103de610e6a565b6040516103eb9190612d20565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612d3b565b610e70565b005b34801561042957600080fd5b50610444600480360381019061043f9190612ef7565b611056565b005b34801561045257600080fd5b5061046d60048036038101906104689190612c1c565b611071565b005b34801561047b57600080fd5b5061049660048036038101906104919190612c1c565b611083565b6040516104a39190612c8a565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612c1c565b611095565b005b3480156104e157600080fd5b506104ea6110f7565b6040516104f79190612d20565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612c1c565b6110fd565b005b34801561053557600080fd5b5061053e61110f565b60405161054b9190612bc4565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190612f40565b61119d565b6040516105889190612d20565b60405180910390f35b34801561059d57600080fd5b506105a6611231565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612c1c565b611245565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190612f99565b611257565b005b34801561060657600080fd5b5061060f611269565b60405161061c9190612c8a565b60405180910390f35b34801561063157600080fd5b5061063a611293565b6040516106479190612bc4565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190612ff2565b611325565b005b34801561068557600080fd5b5061068e61149c565b60405161069b9190612d20565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190612f40565b6114a2565b6040516106d89190612d20565b60405180910390f35b3480156106ed57600080fd5b506106f66114ba565b6040516107039190612d20565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e91906130d3565b6114c0565b005b34801561074157600080fd5b5061075c60048036038101906107579190612c1c565b6116a9565b005b34801561076a57600080fd5b5061078560048036038101906107809190612c1c565b6116bb565b6040516107929190612bc4565b60405180910390f35b6107b560048036038101906107b0919061321e565b6117a1565b005b3480156107c357600080fd5b506107cc611865565b005b3480156107da57600080fd5b506107e36118bc565b6040516107f09190612d20565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b919061327a565b6118c2565b60405161082d9190612b19565b60405180910390f35b34801561084257600080fd5b5061084b611956565b005b34801561085957600080fd5b50610874600480360381019061086f919061337d565b61198a565b005b34801561088257600080fd5b5061089d60048036038101906108989190612f40565b611a3d565b005b3480156108ab57600080fd5b506108b4611ac0565b6040516108c19190612d20565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109555750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461096b90613408565b80601f016020809104026020016040519081016040528092919081815260200182805461099790613408565b80156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b5050505050905090565b60006109f982611ac6565b610a2f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7582611b25565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adc576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afb611bf1565b73ffffffffffffffffffffffffffffffffffffffff1614610b5e57610b2781610b22611bf1565b6118c2565b610b5d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109c481565b6000610c20611bf9565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e01573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c9f57610c9a848484611c02565b610e0d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce8929190613439565b6020604051808303816000875af1158015610d07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2b9190613477565b8015610dbf57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610d7b929190613439565b6020604051808303816000875af1158015610d9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbe9190613477565b5b610e0057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610df79190612c8a565b60405180910390fd5b5b610e0c848484611c02565b5b50505050565b600260095414610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f906134f0565b60405180910390fd5b610e6181611c12565b50565b600a5481565b61138881565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611044573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ee257610edd848484611ed3565b611050565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f2b929190613439565b6020604051808303816000875af1158015610f4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6e9190613477565b801561100257506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610fbe929190613439565b6020604051808303816000875af1158015610fdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110019190613477565b5b61104357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161103a9190612c8a565b60405180910390fd5b5b61104f848484611ed3565b5b50505050565b61105e611ef3565b80600f908161106d91906136bc565b5050565b611079611ef3565b80600d8190555050565b600061108e82611b25565b9050919050565b61109d611ef3565b600081101580156110ae5750600381105b6110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e4906137da565b60405180910390fd5b8060098190555050565b600e5481565b611105611ef3565b80600e8190555050565b600f805461111c90613408565b80601f016020809104026020016040519081016040528092919081815260200182805461114890613408565b80156111955780601f1061116a57610100808354040283529160200191611195565b820191906000526020600020905b81548152906001019060200180831161117857829003601f168201915b505050505081565b6000806111a983611f71565b036111e0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611239611ef3565b6112436000611f7b565b565b61124d611ef3565b80600b8190555050565b61125f611ef3565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112a290613408565b80601f01602080910402602001604051908101604052809291908181526020018280546112ce90613408565b801561131b5780601f106112f05761010080835404028352916020019161131b565b820191906000526020600020905b8154815290600101906020018083116112fe57829003601f168201915b5050505050905090565b61132d611bf1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611391576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061139e611bf1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661144b611bf1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114909190612b19565b60405180910390a35050565b600c5481565b60116020528060005260406000206000915090505481565b60095481565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611695573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115335761152e85858585612041565b6116a2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161157c929190613439565b6020604051808303816000875af115801561159b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115bf9190613477565b801561165357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161160f929190613439565b6020604051808303816000875af115801561162e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116529190613477565b5b61169457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161168b9190612c8a565b60405180910390fd5b5b6116a185858585612041565b5b5050505050565b6116b1611ef3565b80600c8190555050565b60606116c682611ac6565b611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc9061386c565b60405180910390fd5b601060009054906101000a900460ff1615611778576000600f805461172990613408565b9050036117455760405180602001604052806000815250611771565b600f611750836120b4565b60405160200161176192919061394b565b6040516020818303038152906040525b905061179c565b600f60405160200161178a919061396f565b60405160208183030381529060405290505b919050565b6001600954146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906139d2565b60405180910390fd5b61181981600a54336040516020016117fe9190613a3a565b60405160208183030381529060405280519060200120612182565b611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613aa1565b60405180910390fd5b61186182611c12565b5050565b61186d611ef3565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156118b8573d6000803e3d6000fd5b5050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61195e611ef3565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b611992611ef3565b61138861199d610c16565b8284516119aa9190613af0565b6119b49190613b32565b11156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90613bb2565b60405180910390fd5b60005b8251811015611a3857611a25838281518110611a1757611a16613bd2565b5b602002602001015183612199565b8080611a3090613c01565b9150506119f8565b505050565b611a45611ef3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90613cbb565b60405180910390fd5b611abd81611f7b565b50565b600b5481565b600081611ad1611bf9565b11158015611ae0575060005482105b8015611b1e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611b34611bf9565b11611bba57600054811015611bb95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bb7575b60008103611bad576004600083600190039350838152602001908152602001600020549050611b83565b8092505050611bec565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b611c0d838383612347565b505050565b600d548111158015611c245750600081115b611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613d27565b60405180910390fd5b600160095403611e0c5780600b54611c7b9190613af0565b341015611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613d93565b60405180910390fd5b600e548160116000611ccd61270c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d129190613b32565b1115611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a90613dff565b60405180910390fd5b6109c4611d5e610c16565b82611d699190613b32565b1115611daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da190613e6b565b60405180910390fd5b8060116000611db761270c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e009190613b32565b92505081905550611ebf565b600260095403611ebe5780600c54611e249190613af0565b341015611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90613d93565b60405180910390fd5b611388611e71610c16565b82611e7c9190613b32565b1115611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490613ed7565b60405180910390fd5b5b5b611ed0611eca61270c565b82612199565b50565b611eee838383604051806020016040528060008152506114c0565b505050565b611efb61270c565b73ffffffffffffffffffffffffffffffffffffffff16611f19611269565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613f43565b60405180910390fd5b565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61204c848484612347565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120ae5761207784848484612714565b6120ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600060016120c384612864565b01905060008167ffffffffffffffff8111156120e2576120e1612dcc565b5b6040519080825280601f01601f1916602001820160405280156121145781602001600182028036833780820191505090505b509050600082602001820190505b600115612177578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161216b5761216a613f63565b5b04945060008503612122575b819350505050919050565b60008261218f85846129b7565b1490509392505050565b60008054905060006121aa84611f71565b036121e1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000820361221b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122286000848385612a0d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161228d60018414612a13565b901b60a042901b61229d85611f71565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106122c3578160008190555050506123426000848385612a1d565b505050565b600061235282611b25565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123b9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612412611bf1565b73ffffffffffffffffffffffffffffffffffffffff16148061244157506124408661243b611bf1565b6118c2565b5b8061247e575061244f611bf1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806124b7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006124c286611f71565b036124f9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125068686866001612a0d565b600061251183611f71565b1461254d576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61261487611f71565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361269c576000600185019050600060046000838152602001908152602001600020540361269a576000548114612699578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127048686866001612a1d565b505050505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261273a611bf1565b8786866040518563ffffffff1660e01b815260040161275c9493929190613fe7565b6020604051808303816000875af192505050801561279857506040513d601f19601f820116820180604052508101906127959190614048565b60015b612811573d80600081146127c8576040519150601f19603f3d011682016040523d82523d6000602084013e6127cd565b606091505b506000815103612809576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106128c2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128b8576128b7613f63565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106128ff576d04ee2d6d415b85acef810000000083816128f5576128f4613f63565b5b0492506020810190505b662386f26fc10000831061292e57662386f26fc10000838161292457612923613f63565b5b0492506010810190505b6305f5e1008310612957576305f5e100838161294d5761294c613f63565b5b0492506008810190505b612710831061297c57612710838161297257612971613f63565b5b0492506004810190505b6064831061299f576064838161299557612994613f63565b5b0492506002810190505b600a83106129ae576001810190505b80915050919050565b60008082905060005b8451811015612a02576129ed828683815181106129e0576129df613bd2565b5b6020026020010151612a23565b915080806129fa90613c01565b9150506129c0565b508091505092915050565b50505050565b6000819050919050565b50505050565b6000818310612a3b57612a368284612a4e565b612a46565b612a458383612a4e565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612aae81612a79565b8114612ab957600080fd5b50565b600081359050612acb81612aa5565b92915050565b600060208284031215612ae757612ae6612a6f565b5b6000612af584828501612abc565b91505092915050565b60008115159050919050565b612b1381612afe565b82525050565b6000602082019050612b2e6000830184612b0a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b6e578082015181840152602081019050612b53565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b9682612b34565b612ba08185612b3f565b9350612bb0818560208601612b50565b612bb981612b7a565b840191505092915050565b60006020820190508181036000830152612bde8184612b8b565b905092915050565b6000819050919050565b612bf981612be6565b8114612c0457600080fd5b50565b600081359050612c1681612bf0565b92915050565b600060208284031215612c3257612c31612a6f565b5b6000612c4084828501612c07565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7482612c49565b9050919050565b612c8481612c69565b82525050565b6000602082019050612c9f6000830184612c7b565b92915050565b612cae81612c69565b8114612cb957600080fd5b50565b600081359050612ccb81612ca5565b92915050565b60008060408385031215612ce857612ce7612a6f565b5b6000612cf685828601612cbc565b9250506020612d0785828601612c07565b9150509250929050565b612d1a81612be6565b82525050565b6000602082019050612d356000830184612d11565b92915050565b600080600060608486031215612d5457612d53612a6f565b5b6000612d6286828701612cbc565b9350506020612d7386828701612cbc565b9250506040612d8486828701612c07565b9150509250925092565b6000819050919050565b612da181612d8e565b82525050565b6000602082019050612dbc6000830184612d98565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e0482612b7a565b810181811067ffffffffffffffff82111715612e2357612e22612dcc565b5b80604052505050565b6000612e36612a65565b9050612e428282612dfb565b919050565b600067ffffffffffffffff821115612e6257612e61612dcc565b5b612e6b82612b7a565b9050602081019050919050565b82818337600083830152505050565b6000612e9a612e9584612e47565b612e2c565b905082815260208101848484011115612eb657612eb5612dc7565b5b612ec1848285612e78565b509392505050565b600082601f830112612ede57612edd612dc2565b5b8135612eee848260208601612e87565b91505092915050565b600060208284031215612f0d57612f0c612a6f565b5b600082013567ffffffffffffffff811115612f2b57612f2a612a74565b5b612f3784828501612ec9565b91505092915050565b600060208284031215612f5657612f55612a6f565b5b6000612f6484828501612cbc565b91505092915050565b612f7681612d8e565b8114612f8157600080fd5b50565b600081359050612f9381612f6d565b92915050565b600060208284031215612faf57612fae612a6f565b5b6000612fbd84828501612f84565b91505092915050565b612fcf81612afe565b8114612fda57600080fd5b50565b600081359050612fec81612fc6565b92915050565b6000806040838503121561300957613008612a6f565b5b600061301785828601612cbc565b925050602061302885828601612fdd565b9150509250929050565b600067ffffffffffffffff82111561304d5761304c612dcc565b5b61305682612b7a565b9050602081019050919050565b600061307661307184613032565b612e2c565b90508281526020810184848401111561309257613091612dc7565b5b61309d848285612e78565b509392505050565b600082601f8301126130ba576130b9612dc2565b5b81356130ca848260208601613063565b91505092915050565b600080600080608085870312156130ed576130ec612a6f565b5b60006130fb87828801612cbc565b945050602061310c87828801612cbc565b935050604061311d87828801612c07565b925050606085013567ffffffffffffffff81111561313e5761313d612a74565b5b61314a878288016130a5565b91505092959194509250565b600067ffffffffffffffff82111561317157613170612dcc565b5b602082029050602081019050919050565b600080fd5b600061319a61319584613156565b612e2c565b905080838252602082019050602084028301858111156131bd576131bc613182565b5b835b818110156131e657806131d28882612f84565b8452602084019350506020810190506131bf565b5050509392505050565b600082601f83011261320557613204612dc2565b5b8135613215848260208601613187565b91505092915050565b6000806040838503121561323557613234612a6f565b5b600061324385828601612c07565b925050602083013567ffffffffffffffff81111561326457613263612a74565b5b613270858286016131f0565b9150509250929050565b6000806040838503121561329157613290612a6f565b5b600061329f85828601612cbc565b92505060206132b085828601612cbc565b9150509250929050565b600067ffffffffffffffff8211156132d5576132d4612dcc565b5b602082029050602081019050919050565b60006132f96132f4846132ba565b612e2c565b9050808382526020820190506020840283018581111561331c5761331b613182565b5b835b8181101561334557806133318882612cbc565b84526020840193505060208101905061331e565b5050509392505050565b600082601f83011261336457613363612dc2565b5b81356133748482602086016132e6565b91505092915050565b6000806040838503121561339457613393612a6f565b5b600083013567ffffffffffffffff8111156133b2576133b1612a74565b5b6133be8582860161334f565b92505060206133cf85828601612c07565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342057607f821691505b602082108103613433576134326133d9565b5b50919050565b600060408201905061344e6000830185612c7b565b61345b6020830184612c7b565b9392505050565b60008151905061347181612fc6565b92915050565b60006020828403121561348d5761348c612a6f565b5b600061349b84828501613462565b91505092915050565b7f5075626c69632053616c657320697320636c6f73652e00000000000000000000600082015250565b60006134da601683612b3f565b91506134e5826134a4565b602082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613535565b61357c8683613535565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135b96135b46135af84612be6565b613594565b612be6565b9050919050565b6000819050919050565b6135d38361359e565b6135e76135df826135c0565b848454613542565b825550505050565b600090565b6135fc6135ef565b6136078184846135ca565b505050565b5b8181101561362b576136206000826135f4565b60018101905061360d565b5050565b601f8211156136705761364181613510565b61364a84613525565b81016020851015613659578190505b61366d61366585613525565b83018261360c565b50505b505050565b600082821c905092915050565b600061369360001984600802613675565b1980831691505092915050565b60006136ac8383613682565b9150826002028217905092915050565b6136c582612b34565b67ffffffffffffffff8111156136de576136dd612dcc565b5b6136e88254613408565b6136f382828561362f565b600060209050601f8311600181146137265760008415613714578287015190505b61371e85826136a0565b865550613786565b601f19841661373486613510565b60005b8281101561375c57848901518255600182019150602085019450602081019050613737565b868310156137795784890151613775601f891682613682565b8355505b6001600288020188555050505b505050505050565b7f5068617365206f7574206f662072616e67652030202d20320000000000000000600082015250565b60006137c4601883612b3f565b91506137cf8261378e565b602082019050919050565b600060208201905081810360008301526137f3816137b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613856602f83612b3f565b9150613861826137fa565b604082019050919050565b6000602082019050818103600083015261388581613849565b9050919050565b600081905092915050565b600081546138a481613408565b6138ae818661388c565b945060018216600081146138c957600181146138de57613911565b60ff1983168652811515820286019350613911565b6138e785613510565b60005b83811015613909578154818901526001820191506020810190506138ea565b838801955050505b50505092915050565b600061392582612b34565b61392f818561388c565b935061393f818560208601612b50565b80840191505092915050565b60006139578285613897565b9150613963828461391a565b91508190509392505050565b600061397b8284613897565b915081905092915050565b7f77686974656c69737420697320636c6f73652e00000000000000000000000000600082015250565b60006139bc601383612b3f565b91506139c782613986565b602082019050919050565b600060208201905081810360008301526139eb816139af565b9050919050565b60008160601b9050919050565b6000613a0a826139f2565b9050919050565b6000613a1c826139ff565b9050919050565b613a34613a2f82612c69565b613a11565b82525050565b6000613a468284613a23565b60148201915081905092915050565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b6000613a8b601083612b3f565b9150613a9682613a55565b602082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613afb82612be6565b9150613b0683612be6565b9250828202613b1481612be6565b91508282048414831517613b2b57613b2a613ac1565b5b5092915050565b6000613b3d82612be6565b9150613b4883612be6565b9250828201905080821115613b6057613b5f613ac1565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613b9c600883612b3f565b9150613ba782613b66565b602082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c0c82612be6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c3e57613c3d613ac1565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ca5602683612b3f565b9150613cb082613c49565b604082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b7f486974206d6178206d696e7420706572207472616e73616374696f6e2e000000600082015250565b6000613d11601d83612b3f565b9150613d1c82613cdb565b602082019050919050565b60006020820190508181036000830152613d4081613d04565b9050919050565b7f4e6f7420656e6f7567682045544820746f206d696e7400000000000000000000600082015250565b6000613d7d601683612b3f565b9150613d8882613d47565b602082019050919050565b60006020820190508181036000830152613dac81613d70565b9050919050565b7f48697420746865206d6178206d696e742e000000000000000000000000000000600082015250565b6000613de9601183612b3f565b9150613df482613db3565b602082019050919050565b60006020820190508181036000830152613e1881613ddc565b9050919050565b7f503120536f6c64206f7574000000000000000000000000000000000000000000600082015250565b6000613e55600b83612b3f565b9150613e6082613e1f565b602082019050919050565b60006020820190508181036000830152613e8481613e48565b9050919050565b7f546f74616c20536f6c64206f7574000000000000000000000000000000000000600082015250565b6000613ec1600e83612b3f565b9150613ecc82613e8b565b602082019050919050565b60006020820190508181036000830152613ef081613eb4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f2d602083612b3f565b9150613f3882613ef7565b602082019050919050565b60006020820190508181036000830152613f5c81613f20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613fb982613f92565b613fc38185613f9d565b9350613fd3818560208601612b50565b613fdc81612b7a565b840191505092915050565b6000608082019050613ffc6000830187612c7b565b6140096020830186612c7b565b6140166040830185612d11565b81810360608301526140288184613fae565b905095945050505050565b60008151905061404281612aa5565b92915050565b60006020828403121561405e5761405d612a6f565b5b600061406c84828501614033565b9150509291505056fea2646970667358221220485e4aff959375f624eb0a20de29eb1072215f3f6381c6cd7f07dc469d103e9d64736f6c63430008110033

Deployed Bytecode Sourcemap

71918:5157:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46211:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51234:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53302:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52762:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72074:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45265:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76526:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73449:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72156:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72026:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76697:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75479:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74668:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51023:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75625:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72327:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74840:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72377:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46890:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32337:103;;;;;;;;;;;;;:::i;:::-;;75032:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74495:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31689:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51403:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53578:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72241:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72443:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72123:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76876:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75195:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75860:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73084:311;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76371:147;;;;;;;;;;;;;:::i;:::-;;72289:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53957:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75346:78;;;;;;;;;;;;;:::i;:::-;;72766:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32595:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72190:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46211:615;46296:4;46611:10;46596:25;;:11;:25;;;;:102;;;;46688:10;46673:25;;:11;:25;;;;46596:102;:179;;;;46765:10;46750:25;;:11;:25;;;;46596:179;46576:199;;46211:615;;;:::o;51234:100::-;51288:13;51321:5;51314:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51234:100;:::o;53302:204::-;53370:7;53395:16;53403:7;53395;:16::i;:::-;53390:64;;53420:34;;;;;;;;;;;;;;53390:64;53474:15;:24;53490:7;53474:24;;;;;;;;;;;;;;;;;;;;;53467:31;;53302:204;;;:::o;52762:474::-;52835:13;52867:27;52886:7;52867:18;:27::i;:::-;52835:61;;52917:5;52911:11;;:2;:11;;;52907:48;;52931:24;;;;;;;;;;;;;;52907:48;52995:5;52972:28;;:19;:17;:19::i;:::-;:28;;;52968:175;;53020:44;53037:5;53044:19;:17;:19::i;:::-;53020:16;:44::i;:::-;53015:128;;53092:35;;;;;;;;;;;;;;53015:128;52968:175;53182:2;53155:15;:24;53171:7;53155:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;53220:7;53216:2;53200:28;;53209:5;53200:28;;;;;;;;;;;;52824:412;52762:474;;:::o;72074:40::-;72110:4;72074:40;:::o;45265:315::-;45318:7;45546:15;:13;:15::i;:::-;45531:12;;45515:13;;:28;:46;45508:53;;45265:315;:::o;76526:163::-;76627:4;3719:1;2399:42;3673:43;;;:47;3669:789;;;3960:10;3952:18;;:4;:18;;;3948:85;;76644:37:::1;76663:4;76669:2;76673:7;76644:18;:37::i;:::-;4011:7:::0;;3948:85;2399:42;4071:40;;;4142:4;4170:10;4071:128;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;;2399:42;4224:40;;;4299:4;4331;4224:134;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4071:287;4047:400;;4420:10;4401:30;;;;;;;;;;;:::i;:::-;;;;;;;;4047:400;3669:789;76644:37:::1;76663:4;76669:2;76673:7;76644:18;:37::i;:::-;76526:163:::0;;;;;:::o;73449:143::-;73529:1;73520:5;;:10;73512:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;73569:15;73575:8;73569:5;:15::i;:::-;73449:143;:::o;72156:25::-;;;;:::o;72026:41::-;72063:4;72026:41;:::o;76697:171::-;76802:4;3719:1;2399:42;3673:43;;;:47;3669:789;;;3960:10;3952:18;;:4;:18;;;3948:85;;76819:41:::1;76842:4;76848:2;76852:7;76819:22;:41::i;:::-;4011:7:::0;;3948:85;2399:42;4071:40;;;4142:4;4170:10;4071:128;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;;2399:42;4224:40;;;4299:4;4331;4224:134;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4071:287;4047:400;;4420:10;4401:30;;;;;;;;;;;:::i;:::-;;;;;;;;4047:400;3669:789;76819:41:::1;76842:4;76848:2;76852:7;76819:22;:41::i;:::-;76697:171:::0;;;;;:::o;75479:90::-;31575:13;:11;:13::i;:::-;75558:3:::1;75548:7;:13;;;;;;:::i;:::-;;75479:90:::0;:::o;74668:106::-;31575:13;:11;:13::i;:::-;74757:9:::1;74742:12;:24;;;;74668:106:::0;:::o;51023:144::-;51087:7;51130:27;51149:7;51130:18;:27::i;:::-;51107:52;;51023:144;;;:::o;75625:183::-;31575:13;:11;:13::i;:::-;75720:1:::1;75705:11;:16;;:35;;;;;75739:1;75725:11;:15;75705:35;75697:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;75789:11;75781:5;:19;;;;75625:183:::0;:::o;72327:37::-;;;;:::o;74840:126::-;31575:13;:11;:13::i;:::-;74945::::1;74924:18;:34;;;;74840:126:::0;:::o;72377:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46890:234::-;46954:7;47006:1;46978:24;46996:5;46978:17;:24::i;:::-;:29;46974:70;;47016:28;;;;;;;;;;;;;;46974:70;42229:13;47062:18;:25;47081:5;47062:25;;;;;;;;;;;;;;;;:54;47055:61;;46890:234;;;:::o;32337:103::-;31575:13;:11;:13::i;:::-;32402:30:::1;32429:1;32402:18;:30::i;:::-;32337:103::o:0;75032:104::-;31575:13;:11;:13::i;:::-;75122:6:::1;75105:14;:23;;;;75032:104:::0;:::o;74495:102::-;31575:13;:11;:13::i;:::-;74580:9:::1;74567:10;:22;;;;74495:102:::0;:::o;31689:87::-;31735:7;31762:6;;;;;;;;;;;31755:13;;31689:87;:::o;51403:104::-;51459:13;51492:7;51485:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51403:104;:::o;53578:308::-;53689:19;:17;:19::i;:::-;53677:31;;:8;:31;;;53673:61;;53717:17;;;;;;;;;;;;;;53673:61;53799:8;53747:18;:39;53766:19;:17;:19::i;:::-;53747:39;;;;;;;;;;;;;;;:49;53787:8;53747:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;53859:8;53823:55;;53838:19;:17;:19::i;:::-;53823:55;;;53869:8;53823:55;;;;;;:::i;:::-;;;;;;;;53578:308;;:::o;72241:41::-;;;;:::o;72443:54::-;;;;;;;;;;;;;;;;;:::o;72123:24::-;;;;:::o;76876:196::-;77000:4;3719:1;2399:42;3673:43;;;:47;3669:789;;;3960:10;3952:18;;:4;:18;;;3948:85;;77017:47:::1;77040:4;77046:2;77050:7;77059:4;77017:22;:47::i;:::-;4011:7:::0;;3948:85;2399:42;4071:40;;;4142:4;4170:10;4071:128;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;;2399:42;4224:40;;;4299:4;4331;4224:134;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4071:287;4047:400;;4420:10;4401:30;;;;;;;;;;;:::i;:::-;;;;;;;;4047:400;3669:789;77017:47:::1;77040:4;77046:2;77050:7;77059:4;77017:22;:47::i;:::-;76876:196:::0;;;;;;:::o;75195:98::-;31575:13;:11;:13::i;:::-;75279:6:::1;75265:11;:20;;;;75195:98:::0;:::o;75860:454::-;75979:13;76018:17;76026:8;76018:7;:17::i;:::-;76010:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;76104:6;;;;;;;;;;;76100:207;;;76159:1;76140:7;76134:21;;;;;:::i;:::-;;;:26;:88;;;;;;;;;;;;;;;;;76187:7;76196:19;:8;:17;:19::i;:::-;76170:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76134:88;76127:95;;;;76100:207;76286:7;76269:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;76255:40;;75860:454;;;;:::o;73084:311::-;73191:1;73182:5;;:10;73174:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;73245:78;73264:5;73271:10;;73310;73293:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;73283:39;;;;;;73245:18;:78::i;:::-;73237:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;73372:15;73378:8;73372:5;:15::i;:::-;73084:311;;:::o;76371:147::-;31575:13;:11;:13::i;:::-;76423:15:::1;76441:21;76423:39;;76481:10;76473:28;;:37;76502:7;76473:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;76412:106;76371:147::o:0;72289:31::-;;;;:::o;53957:164::-;54054:4;54078:18;:25;54097:5;54078:25;;;;;;;;;;;;;;;:35;54104:8;54078:35;;;;;;;;;;;;;;;;;;;;;;;;;54071:42;;53957:164;;;;:::o;75346:78::-;31575:13;:11;:13::i;:::-;75410:6:::1;;;;;;;;;;;75409:7;75400:6;;:16;;;;;;;;;;;;;;;;;;75346:78::o:0;72766:261::-;31575:13;:11;:13::i;:::-;72063:4:::1;72883:13;:11;:13::i;:::-;72871:8;72859:2;:9;:20;;;;:::i;:::-;72858:38;;;;:::i;:::-;:52;;72850:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;72940:6;72936:84;72956:2;:9;72952:1;:13;72936:84;;;72986:22;72992:2;72995:1;72992:5;;;;;;;;:::i;:::-;;;;;;;;72999:8;72986:5;:22::i;:::-;72967:3;;;;;:::i;:::-;;;;72936:84;;;;72766:261:::0;;:::o;32595:201::-;31575:13;:11;:13::i;:::-;32704:1:::1;32684:22;;:8;:22;;::::0;32676:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;32760:28;32779:8;32760:18;:28::i;:::-;32595:201:::0;:::o;72190:44::-;;;;:::o;55336:273::-;55393:4;55449:7;55430:15;:13;:15::i;:::-;:26;;:66;;;;;55483:13;;55473:7;:23;55430:66;:152;;;;;55581:1;42999:8;55534:17;:26;55552:7;55534:26;;;;;;;;;;;;:43;:48;55430:152;55410:172;;55336:273;;;:::o;48538:1129::-;48605:7;48625:12;48640:7;48625:22;;48708:4;48689:15;:13;:15::i;:::-;:23;48685:915;;48742:13;;48735:4;:20;48731:869;;;48780:14;48797:17;:23;48815:4;48797:23;;;;;;;;;;;;48780:40;;48913:1;42999:8;48886:6;:23;:28;48882:699;;49405:113;49422:1;49412:6;:11;49405:113;;49465:17;:25;49483:6;;;;;;;49465:25;;;;;;;;;;;;49456:34;;49405:113;;;49551:6;49544:13;;;;;;48882:699;48757:843;48731:869;48685:915;49628:31;;;;;;;;;;;;;;48538:1129;;;;:::o;69604:105::-;69664:7;69691:10;69684:17;;69604:105;:::o;72613:101::-;72678:7;72705:1;72698:8;;72613:101;:::o;54188:170::-;54322:28;54332:4;54338:2;54342:7;54322:9;:28::i;:::-;54188:170;;;:::o;73639:788::-;73711:12;;73699:8;:24;;:40;;;;;73738:1;73727:8;:12;73699:40;73691:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;73799:1;73790:5;;:10;73786:576;;73855:8;73838:14;;:25;;;;:::i;:::-;73825:9;:38;;73817:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;73966:18;;73954:8;73915:22;:36;73938:12;:10;:12::i;:::-;73915:36;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;:69;;73907:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;72110:4;74042:13;:11;:13::i;:::-;74031:8;:24;;;;:::i;:::-;:37;;74023:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;74141:8;74101:22;:36;74124:12;:10;:12::i;:::-;74101:36;;;;;;;;;;;;;;;;:48;;;;;;;:::i;:::-;;;;;;;;73786:576;;;74180:1;74171:5;;:10;74167:195;;74233:8;74219:11;;:22;;;;:::i;:::-;74206:9;:35;;74198:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;72063:4;74304:13;:11;:13::i;:::-;74293:8;:24;;;;:::i;:::-;:38;;74285:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;74167:195;73786:576;74390:29;74396:12;:10;:12::i;:::-;74410:8;74390:5;:29::i;:::-;73639:788;:::o;54429:185::-;54567:39;54584:4;54590:2;54594:7;54567:39;;;;;;;;;;;;:16;:39::i;:::-;54429:185;;;:::o;31854:132::-;31929:12;:10;:12::i;:::-;31918:23;;:7;:5;:7::i;:::-;:23;;;31910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31854:132::o;52323:148::-;52387:14;52448:5;52438:15;;52323:148;;;:::o;32956:191::-;33030:16;33049:6;;;;;;;;;;;33030:25;;33075:8;33066:6;;:17;;;;;;;;;;;;;;;;;;33130:8;33099:40;;33120:8;33099:40;;;;;;;;;;;;33019:128;32956:191;:::o;54685:396::-;54852:28;54862:4;54868:2;54872:7;54852:9;:28::i;:::-;54913:1;54895:2;:14;;;:19;54891:183;;54934:56;54965:4;54971:2;54975:7;54984:5;54934:30;:56::i;:::-;54929:145;;55018:40;;;;;;;;;;;;;;54929:145;54891:183;54685:396;;;;:::o;27667:716::-;27723:13;27774:14;27811:1;27791:17;27802:5;27791:10;:17::i;:::-;:21;27774:38;;27827:20;27861:6;27850:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27827:41;;27883:11;28012:6;28008:2;28004:15;27996:6;27992:28;27985:35;;28049:288;28056:4;28049:288;;;28081:5;;;;;;;;28223:8;28218:2;28211:5;28207:14;28202:30;28197:3;28189:44;28279:2;28270:11;;;;;;:::i;:::-;;;;;28313:1;28304:5;:10;28049:288;28300:21;28049:288;28358:6;28351:13;;;;;27667:716;;;:::o;6023:190::-;6148:4;6201;6172:25;6185:5;6192:4;6172:12;:25::i;:::-;:33;6165:40;;6023:190;;;;;:::o;58675:1666::-;58740:20;58763:13;;58740:36;;58816:1;58791:21;58809:2;58791:17;:21::i;:::-;:26;58787:58;;58826:19;;;;;;;;;;;;;;58787:58;58872:1;58860:8;:13;58856:44;;58882:18;;;;;;;;;;;;;;58856:44;58913:61;58943:1;58947:2;58951:12;58965:8;58913:21;:61::i;:::-;59517:1;42366:2;59488:1;:25;;59487:31;59475:8;:44;59449:18;:22;59468:2;59449:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;43146:3;59918:29;59945:1;59933:8;:13;59918:14;:29::i;:::-;:56;;42883:3;59855:15;:41;;59813:21;59831:2;59813:17;:21::i;:::-;:84;:162;59762:17;:31;59780:12;59762:31;;;;;;;;;;;:213;;;;59992:20;60015:12;59992:35;;60042:11;60071:8;60056:12;:23;60042:37;;60096:111;60148:14;;;;;;60144:2;60123:40;;60140:1;60123:40;;;;;;;;;;;;60202:3;60187:12;:18;60096:111;;60239:12;60223:13;:28;;;;59226:1037;;60273:60;60302:1;60306:2;60310:12;60324:8;60273:20;:60::i;:::-;58729:1612;58675:1666;;:::o;60595:2654::-;60710:27;60740;60759:7;60740:18;:27::i;:::-;60710:57;;60825:4;60784:45;;60800:19;60784:45;;;60780:86;;60838:28;;;;;;;;;;;;;;60780:86;60879:23;60905:15;:24;60921:7;60905:24;;;;;;;;;;;;;;;;;;;;;60879:50;;60942:22;60991:4;60968:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;61012:43;61029:4;61035:19;:17;:19::i;:::-;61012:16;:43::i;:::-;60968:87;:142;;;;61091:19;:17;:19::i;:::-;61072:38;;:15;:38;;;60968:142;60942:169;;61129:17;61124:66;;61155:35;;;;;;;;;;;;;;61124:66;61230:1;61205:21;61223:2;61205:17;:21::i;:::-;:26;61201:62;;61240:23;;;;;;;;;;;;;;61201:62;61276:43;61298:4;61304:2;61308:7;61317:1;61276:21;:43::i;:::-;61427:1;61389:34;61407:15;61389:17;:34::i;:::-;:39;61385:103;;61452:15;:24;61468:7;61452:24;;;;;;;;;;;;61445:31;;;;;;;;;;;61385:103;61855:18;:24;61874:4;61855:24;;;;;;;;;;;;;;;;61853:26;;;;;;;;;;;;61924:18;:22;61943:2;61924:22;;;;;;;;;;;;;;;;61922:24;;;;;;;;;;;43281:8;42883:3;62305:15;:41;;62263:21;62281:2;62263:17;:21::i;:::-;:84;:128;62217:17;:26;62235:7;62217:26;;;;;;;;;;;:174;;;;62561:1;43281:8;62511:19;:46;:51;62507:626;;62583:19;62615:1;62605:7;:11;62583:33;;62772:1;62738:17;:30;62756:11;62738:30;;;;;;;;;;;;:35;62734:384;;62876:13;;62861:11;:28;62857:242;;63056:19;63023:17;:30;63041:11;63023:30;;;;;;;;;;;:52;;;;62857:242;62734:384;62564:569;62507:626;63180:7;63176:2;63161:27;;63170:4;63161:27;;;;;;;;;;;;63199:42;63220:4;63226:2;63230:7;63239:1;63199:20;:42::i;:::-;60699:2550;;;60595:2654;;;:::o;30240:98::-;30293:7;30320:10;30313:17;;30240:98;:::o;67073:716::-;67236:4;67282:2;67257:45;;;67303:19;:17;:19::i;:::-;67324:4;67330:7;67339:5;67257:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67253:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67557:1;67540:6;:13;:18;67536:235;;67586:40;;;;;;;;;;;;;;67536:235;67729:6;67723:13;67714:6;67710:2;67706:15;67699:38;67253:529;67426:54;;;67416:64;;;:6;:64;;;;67409:71;;;67073:716;;;;;;:::o;24533:922::-;24586:7;24606:14;24623:1;24606:18;;24673:6;24664:5;:15;24660:102;;24709:6;24700:15;;;;;;:::i;:::-;;;;;24744:2;24734:12;;;;24660:102;24789:6;24780:5;:15;24776:102;;24825:6;24816:15;;;;;;:::i;:::-;;;;;24860:2;24850:12;;;;24776:102;24905:6;24896:5;:15;24892:102;;24941:6;24932:15;;;;;;:::i;:::-;;;;;24976:2;24966:12;;;;24892:102;25021:5;25012;:14;25008:99;;25056:5;25047:14;;;;;;:::i;:::-;;;;;25090:1;25080:11;;;;25008:99;25134:5;25125;:14;25121:99;;25169:5;25160:14;;;;;;:::i;:::-;;;;;25203:1;25193:11;;;;25121:99;25247:5;25238;:14;25234:99;;25282:5;25273:14;;;;;;:::i;:::-;;;;;25316:1;25306:11;;;;25234:99;25360:5;25351;:14;25347:66;;25396:1;25386:11;;;;25347:66;25441:6;25434:13;;;24533:922;;;:::o;6890:296::-;6973:7;6993:20;7016:4;6993:27;;7036:9;7031:118;7055:5;:12;7051:1;:16;7031:118;;;7104:33;7114:12;7128:5;7134:1;7128:8;;;;;;;;:::i;:::-;;;;;;;;7104:9;:33::i;:::-;7089:48;;7069:3;;;;;:::i;:::-;;;;7031:118;;;;7166:12;7159:19;;;6890:296;;;;:::o;68437:159::-;;;;;:::o;52558:142::-;52616:14;52677:5;52667:15;;52558:142;;;:::o;69255:158::-;;;;;:::o;13930:149::-;13993:7;14024:1;14020;:5;:51;;14051:20;14066:1;14069;14051:14;:20::i;:::-;14020:51;;;14028:20;14043:1;14046;14028:14;:20::i;:::-;14020:51;14013:58;;13930:149;;;;:::o;14087:268::-;14155:13;14262:1;14256:4;14249:15;14291:1;14285:4;14278:15;14332:4;14326;14316:21;14307:30;;14087: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:117::-;6411:1;6408;6401:12;6425:117;6534:1;6531;6524:12;6548:180;6596:77;6593:1;6586:88;6693:4;6690:1;6683:15;6717:4;6714:1;6707:15;6734:281;6817:27;6839:4;6817:27;:::i;:::-;6809:6;6805:40;6947:6;6935:10;6932:22;6911:18;6899:10;6896:34;6893:62;6890:88;;;6958:18;;:::i;:::-;6890:88;6998:10;6994:2;6987:22;6777:238;6734:281;;:::o;7021:129::-;7055:6;7082:20;;:::i;:::-;7072:30;;7111:33;7139:4;7131:6;7111:33;:::i;:::-;7021:129;;;:::o;7156:308::-;7218:4;7308:18;7300:6;7297:30;7294:56;;;7330:18;;:::i;:::-;7294:56;7368:29;7390:6;7368:29;:::i;:::-;7360:37;;7452:4;7446;7442:15;7434:23;;7156:308;;;:::o;7470:146::-;7567:6;7562:3;7557;7544:30;7608:1;7599:6;7594:3;7590:16;7583:27;7470:146;;;:::o;7622:425::-;7700:5;7725:66;7741:49;7783:6;7741:49;:::i;:::-;7725:66;:::i;:::-;7716:75;;7814:6;7807:5;7800:21;7852:4;7845:5;7841:16;7890:3;7881:6;7876:3;7872:16;7869:25;7866:112;;;7897:79;;:::i;:::-;7866:112;7987:54;8034:6;8029:3;8024;7987:54;:::i;:::-;7706:341;7622:425;;;;;:::o;8067:340::-;8123:5;8172:3;8165:4;8157:6;8153:17;8149:27;8139:122;;8180:79;;:::i;:::-;8139:122;8297:6;8284:20;8322:79;8397:3;8389:6;8382:4;8374:6;8370:17;8322:79;:::i;:::-;8313:88;;8129:278;8067:340;;;;:::o;8413:509::-;8482:6;8531:2;8519:9;8510:7;8506:23;8502:32;8499:119;;;8537:79;;:::i;:::-;8499:119;8685:1;8674:9;8670:17;8657:31;8715:18;8707:6;8704:30;8701:117;;;8737:79;;:::i;:::-;8701:117;8842:63;8897:7;8888:6;8877:9;8873:22;8842:63;:::i;:::-;8832:73;;8628:287;8413:509;;;;:::o;8928:329::-;8987:6;9036:2;9024:9;9015:7;9011:23;9007:32;9004:119;;;9042:79;;:::i;:::-;9004:119;9162:1;9187:53;9232:7;9223:6;9212:9;9208:22;9187:53;:::i;:::-;9177:63;;9133:117;8928:329;;;;:::o;9263:122::-;9336:24;9354:5;9336:24;:::i;:::-;9329:5;9326:35;9316:63;;9375:1;9372;9365:12;9316:63;9263:122;:::o;9391:139::-;9437:5;9475:6;9462:20;9453:29;;9491:33;9518:5;9491:33;:::i;:::-;9391:139;;;;:::o;9536:329::-;9595:6;9644:2;9632:9;9623:7;9619:23;9615:32;9612:119;;;9650:79;;:::i;:::-;9612:119;9770:1;9795:53;9840:7;9831:6;9820:9;9816:22;9795:53;:::i;:::-;9785:63;;9741:117;9536:329;;;;:::o;9871:116::-;9941:21;9956:5;9941:21;:::i;:::-;9934:5;9931:32;9921:60;;9977:1;9974;9967:12;9921:60;9871:116;:::o;9993:133::-;10036:5;10074:6;10061:20;10052:29;;10090:30;10114:5;10090:30;:::i;:::-;9993:133;;;;:::o;10132:468::-;10197:6;10205;10254:2;10242:9;10233:7;10229:23;10225:32;10222:119;;;10260:79;;:::i;:::-;10222:119;10380:1;10405:53;10450:7;10441:6;10430:9;10426:22;10405:53;:::i;:::-;10395:63;;10351:117;10507:2;10533:50;10575:7;10566:6;10555:9;10551:22;10533:50;:::i;:::-;10523:60;;10478:115;10132:468;;;;;:::o;10606:307::-;10667:4;10757:18;10749:6;10746:30;10743:56;;;10779:18;;:::i;:::-;10743:56;10817:29;10839:6;10817:29;:::i;:::-;10809:37;;10901:4;10895;10891:15;10883:23;;10606:307;;;:::o;10919:423::-;10996:5;11021:65;11037:48;11078:6;11037:48;:::i;:::-;11021:65;:::i;:::-;11012:74;;11109:6;11102:5;11095:21;11147:4;11140:5;11136:16;11185:3;11176:6;11171:3;11167:16;11164:25;11161:112;;;11192:79;;:::i;:::-;11161:112;11282:54;11329:6;11324:3;11319;11282:54;:::i;:::-;11002:340;10919:423;;;;;:::o;11361:338::-;11416:5;11465:3;11458:4;11450:6;11446:17;11442:27;11432:122;;11473:79;;:::i;:::-;11432:122;11590:6;11577:20;11615:78;11689:3;11681:6;11674:4;11666:6;11662:17;11615:78;:::i;:::-;11606:87;;11422:277;11361:338;;;;:::o;11705:943::-;11800:6;11808;11816;11824;11873:3;11861:9;11852:7;11848:23;11844:33;11841:120;;;11880:79;;:::i;:::-;11841:120;12000:1;12025:53;12070:7;12061:6;12050:9;12046:22;12025:53;:::i;:::-;12015:63;;11971:117;12127:2;12153:53;12198:7;12189:6;12178:9;12174:22;12153:53;:::i;:::-;12143:63;;12098:118;12255:2;12281:53;12326:7;12317:6;12306:9;12302:22;12281:53;:::i;:::-;12271:63;;12226:118;12411:2;12400:9;12396:18;12383:32;12442:18;12434:6;12431:30;12428:117;;;12464:79;;:::i;:::-;12428:117;12569:62;12623:7;12614:6;12603:9;12599:22;12569:62;:::i;:::-;12559:72;;12354:287;11705:943;;;;;;;:::o;12654:311::-;12731:4;12821:18;12813:6;12810:30;12807:56;;;12843:18;;:::i;:::-;12807:56;12893:4;12885:6;12881:17;12873:25;;12953:4;12947;12943:15;12935:23;;12654:311;;;:::o;12971:117::-;13080:1;13077;13070:12;13111:710;13207:5;13232:81;13248:64;13305:6;13248:64;:::i;:::-;13232:81;:::i;:::-;13223:90;;13333:5;13362:6;13355:5;13348:21;13396:4;13389:5;13385:16;13378:23;;13449:4;13441:6;13437:17;13429:6;13425:30;13478:3;13470:6;13467:15;13464:122;;;13497:79;;:::i;:::-;13464:122;13612:6;13595:220;13629:6;13624:3;13621:15;13595:220;;;13704:3;13733:37;13766:3;13754:10;13733:37;:::i;:::-;13728:3;13721:50;13800:4;13795:3;13791:14;13784:21;;13671:144;13655:4;13650:3;13646:14;13639:21;;13595:220;;;13599:21;13213:608;;13111:710;;;;;:::o;13844:370::-;13915:5;13964:3;13957:4;13949:6;13945:17;13941:27;13931:122;;13972:79;;:::i;:::-;13931:122;14089:6;14076:20;14114:94;14204:3;14196:6;14189:4;14181:6;14177:17;14114:94;:::i;:::-;14105:103;;13921:293;13844:370;;;;:::o;14220:684::-;14313:6;14321;14370:2;14358:9;14349:7;14345:23;14341:32;14338:119;;;14376:79;;:::i;:::-;14338:119;14496:1;14521:53;14566:7;14557:6;14546:9;14542:22;14521:53;:::i;:::-;14511:63;;14467:117;14651:2;14640:9;14636:18;14623:32;14682:18;14674:6;14671:30;14668:117;;;14704:79;;:::i;:::-;14668:117;14809:78;14879:7;14870:6;14859:9;14855:22;14809:78;:::i;:::-;14799:88;;14594:303;14220:684;;;;;:::o;14910:474::-;14978:6;14986;15035:2;15023:9;15014:7;15010:23;15006:32;15003:119;;;15041:79;;:::i;:::-;15003:119;15161:1;15186:53;15231:7;15222:6;15211:9;15207:22;15186:53;:::i;:::-;15176:63;;15132:117;15288:2;15314:53;15359:7;15350:6;15339:9;15335:22;15314:53;:::i;:::-;15304:63;;15259:118;14910:474;;;;;:::o;15390:311::-;15467:4;15557:18;15549:6;15546:30;15543:56;;;15579:18;;:::i;:::-;15543:56;15629:4;15621:6;15617:17;15609:25;;15689:4;15683;15679:15;15671:23;;15390:311;;;:::o;15724:710::-;15820:5;15845:81;15861:64;15918:6;15861:64;:::i;:::-;15845:81;:::i;:::-;15836:90;;15946:5;15975:6;15968:5;15961:21;16009:4;16002:5;15998:16;15991:23;;16062:4;16054:6;16050:17;16042:6;16038:30;16091:3;16083:6;16080:15;16077:122;;;16110:79;;:::i;:::-;16077:122;16225:6;16208:220;16242:6;16237:3;16234:15;16208:220;;;16317:3;16346:37;16379:3;16367:10;16346:37;:::i;:::-;16341:3;16334:50;16413:4;16408:3;16404:14;16397:21;;16284:144;16268:4;16263:3;16259:14;16252:21;;16208:220;;;16212:21;15826:608;;15724:710;;;;;:::o;16457:370::-;16528:5;16577:3;16570:4;16562:6;16558:17;16554:27;16544:122;;16585:79;;:::i;:::-;16544:122;16702:6;16689:20;16727:94;16817:3;16809:6;16802:4;16794:6;16790:17;16727:94;:::i;:::-;16718:103;;16534:293;16457:370;;;;:::o;16833:684::-;16926:6;16934;16983:2;16971:9;16962:7;16958:23;16954:32;16951:119;;;16989:79;;:::i;:::-;16951:119;17137:1;17126:9;17122:17;17109:31;17167:18;17159:6;17156:30;17153:117;;;17189:79;;:::i;:::-;17153:117;17294:78;17364:7;17355:6;17344:9;17340:22;17294:78;:::i;:::-;17284:88;;17080:302;17421:2;17447:53;17492:7;17483:6;17472:9;17468:22;17447:53;:::i;:::-;17437:63;;17392:118;16833:684;;;;;:::o;17523:180::-;17571:77;17568:1;17561:88;17668:4;17665:1;17658:15;17692:4;17689:1;17682:15;17709:320;17753:6;17790:1;17784:4;17780:12;17770:22;;17837:1;17831:4;17827:12;17858:18;17848:81;;17914:4;17906:6;17902:17;17892:27;;17848:81;17976:2;17968:6;17965:14;17945:18;17942:38;17939:84;;17995:18;;:::i;:::-;17939:84;17760:269;17709:320;;;:::o;18035:332::-;18156:4;18194:2;18183:9;18179:18;18171:26;;18207:71;18275:1;18264:9;18260:17;18251:6;18207:71;:::i;:::-;18288:72;18356:2;18345:9;18341:18;18332:6;18288:72;:::i;:::-;18035:332;;;;;:::o;18373:137::-;18427:5;18458:6;18452:13;18443:22;;18474:30;18498:5;18474:30;:::i;:::-;18373:137;;;;:::o;18516:345::-;18583:6;18632:2;18620:9;18611:7;18607:23;18603:32;18600:119;;;18638:79;;:::i;:::-;18600:119;18758:1;18783:61;18836:7;18827:6;18816:9;18812:22;18783:61;:::i;:::-;18773:71;;18729:125;18516:345;;;;:::o;18867:172::-;19007:24;19003:1;18995:6;18991:14;18984:48;18867:172;:::o;19045:366::-;19187:3;19208:67;19272:2;19267:3;19208:67;:::i;:::-;19201:74;;19284:93;19373:3;19284:93;:::i;:::-;19402:2;19397:3;19393:12;19386:19;;19045:366;;;:::o;19417:419::-;19583:4;19621:2;19610:9;19606:18;19598:26;;19670:9;19664:4;19660:20;19656:1;19645:9;19641:17;19634:47;19698:131;19824:4;19698:131;:::i;:::-;19690:139;;19417:419;;;:::o;19842:141::-;19891:4;19914:3;19906:11;;19937:3;19934:1;19927:14;19971:4;19968:1;19958:18;19950:26;;19842:141;;;:::o;19989:93::-;20026:6;20073:2;20068;20061:5;20057:14;20053:23;20043:33;;19989:93;;;:::o;20088:107::-;20132:8;20182:5;20176:4;20172:16;20151:37;;20088:107;;;;:::o;20201:393::-;20270:6;20320:1;20308:10;20304:18;20343:97;20373:66;20362:9;20343:97;:::i;:::-;20461:39;20491:8;20480:9;20461:39;:::i;:::-;20449:51;;20533:4;20529:9;20522:5;20518:21;20509:30;;20582:4;20572:8;20568:19;20561:5;20558:30;20548:40;;20277:317;;20201:393;;;;;:::o;20600:60::-;20628:3;20649:5;20642:12;;20600:60;;;:::o;20666:142::-;20716:9;20749:53;20767:34;20776:24;20794:5;20776:24;:::i;:::-;20767:34;:::i;:::-;20749:53;:::i;:::-;20736:66;;20666:142;;;:::o;20814:75::-;20857:3;20878:5;20871:12;;20814:75;;;:::o;20895:269::-;21005:39;21036:7;21005:39;:::i;:::-;21066:91;21115:41;21139:16;21115:41;:::i;:::-;21107:6;21100:4;21094:11;21066:91;:::i;:::-;21060:4;21053:105;20971:193;20895:269;;;:::o;21170:73::-;21215:3;21170:73;:::o;21249:189::-;21326:32;;:::i;:::-;21367:65;21425:6;21417;21411:4;21367:65;:::i;:::-;21302:136;21249:189;;:::o;21444:186::-;21504:120;21521:3;21514:5;21511:14;21504:120;;;21575:39;21612:1;21605:5;21575:39;:::i;:::-;21548:1;21541:5;21537:13;21528:22;;21504:120;;;21444:186;;:::o;21636:543::-;21737:2;21732:3;21729:11;21726:446;;;21771:38;21803:5;21771:38;:::i;:::-;21855:29;21873:10;21855:29;:::i;:::-;21845:8;21841:44;22038:2;22026:10;22023:18;22020:49;;;22059:8;22044:23;;22020:49;22082:80;22138:22;22156:3;22138:22;:::i;:::-;22128:8;22124:37;22111:11;22082:80;:::i;:::-;21741:431;;21726:446;21636:543;;;:::o;22185:117::-;22239:8;22289:5;22283:4;22279:16;22258:37;;22185:117;;;;:::o;22308:169::-;22352:6;22385:51;22433:1;22429:6;22421:5;22418:1;22414:13;22385:51;:::i;:::-;22381:56;22466:4;22460;22456:15;22446:25;;22359:118;22308:169;;;;:::o;22482:295::-;22558:4;22704:29;22729:3;22723:4;22704:29;:::i;:::-;22696:37;;22766:3;22763:1;22759:11;22753:4;22750:21;22742:29;;22482:295;;;;:::o;22782:1395::-;22899:37;22932:3;22899:37;:::i;:::-;23001:18;22993:6;22990:30;22987:56;;;23023:18;;:::i;:::-;22987:56;23067:38;23099:4;23093:11;23067:38;:::i;:::-;23152:67;23212:6;23204;23198:4;23152:67;:::i;:::-;23246:1;23270:4;23257:17;;23302:2;23294:6;23291:14;23319:1;23314:618;;;;23976:1;23993:6;23990:77;;;24042:9;24037:3;24033:19;24027:26;24018:35;;23990:77;24093:67;24153:6;24146:5;24093:67;:::i;:::-;24087:4;24080:81;23949:222;23284:887;;23314:618;23366:4;23362:9;23354:6;23350:22;23400:37;23432:4;23400:37;:::i;:::-;23459:1;23473:208;23487:7;23484:1;23481:14;23473:208;;;23566:9;23561:3;23557:19;23551:26;23543:6;23536:42;23617:1;23609:6;23605:14;23595:24;;23664:2;23653:9;23649:18;23636:31;;23510:4;23507:1;23503:12;23498:17;;23473:208;;;23709:6;23700:7;23697:19;23694:179;;;23767:9;23762:3;23758:19;23752:26;23810:48;23852:4;23844:6;23840:17;23829:9;23810:48;:::i;:::-;23802:6;23795:64;23717:156;23694:179;23919:1;23915;23907:6;23903:14;23899:22;23893:4;23886:36;23321:611;;;23284:887;;22874:1303;;;22782:1395;;:::o;24183:174::-;24323:26;24319:1;24311:6;24307:14;24300:50;24183:174;:::o;24363:366::-;24505:3;24526:67;24590:2;24585:3;24526:67;:::i;:::-;24519:74;;24602:93;24691:3;24602:93;:::i;:::-;24720:2;24715:3;24711:12;24704:19;;24363:366;;;:::o;24735:419::-;24901:4;24939:2;24928:9;24924:18;24916:26;;24988:9;24982:4;24978:20;24974:1;24963:9;24959:17;24952:47;25016:131;25142:4;25016:131;:::i;:::-;25008:139;;24735:419;;;:::o;25160:234::-;25300:34;25296:1;25288:6;25284:14;25277:58;25369:17;25364:2;25356:6;25352:15;25345:42;25160:234;:::o;25400:366::-;25542:3;25563:67;25627:2;25622:3;25563:67;:::i;:::-;25556:74;;25639:93;25728:3;25639:93;:::i;:::-;25757:2;25752:3;25748:12;25741:19;;25400:366;;;:::o;25772:419::-;25938:4;25976:2;25965:9;25961:18;25953:26;;26025:9;26019:4;26015:20;26011:1;26000:9;25996:17;25989:47;26053:131;26179:4;26053:131;:::i;:::-;26045:139;;25772:419;;;:::o;26197:148::-;26299:11;26336:3;26321:18;;26197:148;;;;:::o;26375:874::-;26478:3;26515:5;26509:12;26544:36;26570:9;26544:36;:::i;:::-;26596:89;26678:6;26673:3;26596:89;:::i;:::-;26589:96;;26716:1;26705:9;26701:17;26732:1;26727:166;;;;26907:1;26902:341;;;;26694:549;;26727:166;26811:4;26807:9;26796;26792:25;26787:3;26780:38;26873:6;26866:14;26859:22;26851:6;26847:35;26842:3;26838:45;26831:52;;26727:166;;26902:341;26969:38;27001:5;26969:38;:::i;:::-;27029:1;27043:154;27057:6;27054:1;27051:13;27043:154;;;27131:7;27125:14;27121:1;27116:3;27112:11;27105:35;27181:1;27172:7;27168:15;27157:26;;27079:4;27076:1;27072:12;27067:17;;27043:154;;;27226:6;27221:3;27217:16;27210:23;;26909:334;;26694:549;;26482:767;;26375:874;;;;:::o;27255:390::-;27361:3;27389:39;27422:5;27389:39;:::i;:::-;27444:89;27526:6;27521:3;27444:89;:::i;:::-;27437:96;;27542:65;27600:6;27595:3;27588:4;27581:5;27577:16;27542:65;:::i;:::-;27632:6;27627:3;27623:16;27616:23;;27365:280;27255:390;;;;:::o;27651:429::-;27828:3;27850:92;27938:3;27929:6;27850:92;:::i;:::-;27843:99;;27959:95;28050:3;28041:6;27959:95;:::i;:::-;27952:102;;28071:3;28064:10;;27651:429;;;;;:::o;28086:269::-;28215:3;28237:92;28325:3;28316:6;28237:92;:::i;:::-;28230:99;;28346:3;28339:10;;28086:269;;;;:::o;28361:169::-;28501:21;28497:1;28489:6;28485:14;28478:45;28361:169;:::o;28536:366::-;28678:3;28699:67;28763:2;28758:3;28699:67;:::i;:::-;28692:74;;28775:93;28864:3;28775:93;:::i;:::-;28893:2;28888:3;28884:12;28877:19;;28536:366;;;:::o;28908:419::-;29074:4;29112:2;29101:9;29097:18;29089:26;;29161:9;29155:4;29151:20;29147:1;29136:9;29132:17;29125:47;29189:131;29315:4;29189:131;:::i;:::-;29181:139;;28908:419;;;:::o;29333:94::-;29366:8;29414:5;29410:2;29406:14;29385:35;;29333:94;;;:::o;29433:::-;29472:7;29501:20;29515:5;29501:20;:::i;:::-;29490:31;;29433:94;;;:::o;29533:100::-;29572:7;29601:26;29621:5;29601:26;:::i;:::-;29590:37;;29533:100;;;:::o;29639:157::-;29744:45;29764:24;29782:5;29764:24;:::i;:::-;29744:45;:::i;:::-;29739:3;29732:58;29639:157;;:::o;29802:256::-;29914:3;29929:75;30000:3;29991:6;29929:75;:::i;:::-;30029:2;30024:3;30020:12;30013:19;;30049:3;30042:10;;29802:256;;;;:::o;30064:166::-;30204:18;30200:1;30192:6;30188:14;30181:42;30064:166;:::o;30236:366::-;30378:3;30399:67;30463:2;30458:3;30399:67;:::i;:::-;30392:74;;30475:93;30564:3;30475:93;:::i;:::-;30593:2;30588:3;30584:12;30577:19;;30236:366;;;:::o;30608:419::-;30774:4;30812:2;30801:9;30797:18;30789:26;;30861:9;30855:4;30851:20;30847:1;30836:9;30832:17;30825:47;30889:131;31015:4;30889:131;:::i;:::-;30881:139;;30608:419;;;:::o;31033:180::-;31081:77;31078:1;31071:88;31178:4;31175:1;31168:15;31202:4;31199:1;31192:15;31219:410;31259:7;31282:20;31300:1;31282:20;:::i;:::-;31277:25;;31316:20;31334:1;31316:20;:::i;:::-;31311:25;;31371:1;31368;31364:9;31393:30;31411:11;31393:30;:::i;:::-;31382:41;;31572:1;31563:7;31559:15;31556:1;31553:22;31533:1;31526:9;31506:83;31483:139;;31602:18;;:::i;:::-;31483:139;31267:362;31219:410;;;;:::o;31635:191::-;31675:3;31694:20;31712:1;31694:20;:::i;:::-;31689:25;;31728:20;31746:1;31728:20;:::i;:::-;31723:25;;31771:1;31768;31764:9;31757:16;;31792:3;31789:1;31786:10;31783:36;;;31799:18;;:::i;:::-;31783:36;31635:191;;;;:::o;31832:158::-;31972:10;31968:1;31960:6;31956:14;31949:34;31832:158;:::o;31996:365::-;32138:3;32159:66;32223:1;32218:3;32159:66;:::i;:::-;32152:73;;32234:93;32323:3;32234:93;:::i;:::-;32352:2;32347:3;32343:12;32336:19;;31996:365;;;:::o;32367:419::-;32533:4;32571:2;32560:9;32556:18;32548:26;;32620:9;32614:4;32610:20;32606:1;32595:9;32591:17;32584:47;32648:131;32774:4;32648:131;:::i;:::-;32640:139;;32367:419;;;:::o;32792:180::-;32840:77;32837:1;32830:88;32937:4;32934:1;32927:15;32961:4;32958:1;32951:15;32978:233;33017:3;33040:24;33058:5;33040:24;:::i;:::-;33031:33;;33086:66;33079:5;33076:77;33073:103;;33156:18;;:::i;:::-;33073:103;33203:1;33196:5;33192:13;33185:20;;32978:233;;;:::o;33217:225::-;33357:34;33353:1;33345:6;33341:14;33334:58;33426:8;33421:2;33413:6;33409:15;33402:33;33217:225;:::o;33448:366::-;33590:3;33611:67;33675:2;33670:3;33611:67;:::i;:::-;33604:74;;33687:93;33776:3;33687:93;:::i;:::-;33805:2;33800:3;33796:12;33789:19;;33448:366;;;:::o;33820:419::-;33986:4;34024:2;34013:9;34009:18;34001:26;;34073:9;34067:4;34063:20;34059:1;34048:9;34044:17;34037:47;34101:131;34227:4;34101:131;:::i;:::-;34093:139;;33820:419;;;:::o;34245:179::-;34385:31;34381:1;34373:6;34369:14;34362:55;34245:179;:::o;34430:366::-;34572:3;34593:67;34657:2;34652:3;34593:67;:::i;:::-;34586:74;;34669:93;34758:3;34669:93;:::i;:::-;34787:2;34782:3;34778:12;34771:19;;34430:366;;;:::o;34802:419::-;34968:4;35006:2;34995:9;34991:18;34983:26;;35055:9;35049:4;35045:20;35041:1;35030:9;35026:17;35019:47;35083:131;35209:4;35083:131;:::i;:::-;35075:139;;34802:419;;;:::o;35227:172::-;35367:24;35363:1;35355:6;35351:14;35344:48;35227:172;:::o;35405:366::-;35547:3;35568:67;35632:2;35627:3;35568:67;:::i;:::-;35561:74;;35644:93;35733:3;35644:93;:::i;:::-;35762:2;35757:3;35753:12;35746:19;;35405:366;;;:::o;35777:419::-;35943:4;35981:2;35970:9;35966:18;35958:26;;36030:9;36024:4;36020:20;36016:1;36005:9;36001:17;35994:47;36058:131;36184:4;36058:131;:::i;:::-;36050:139;;35777:419;;;:::o;36202:167::-;36342:19;36338:1;36330:6;36326:14;36319:43;36202:167;:::o;36375:366::-;36517:3;36538:67;36602:2;36597:3;36538:67;:::i;:::-;36531:74;;36614:93;36703:3;36614:93;:::i;:::-;36732:2;36727:3;36723:12;36716:19;;36375:366;;;:::o;36747:419::-;36913:4;36951:2;36940:9;36936:18;36928:26;;37000:9;36994:4;36990:20;36986:1;36975:9;36971:17;36964:47;37028:131;37154:4;37028:131;:::i;:::-;37020:139;;36747:419;;;:::o;37172:161::-;37312:13;37308:1;37300:6;37296:14;37289:37;37172:161;:::o;37339:366::-;37481:3;37502:67;37566:2;37561:3;37502:67;:::i;:::-;37495:74;;37578:93;37667:3;37578:93;:::i;:::-;37696:2;37691:3;37687:12;37680:19;;37339:366;;;:::o;37711:419::-;37877:4;37915:2;37904:9;37900:18;37892:26;;37964:9;37958:4;37954:20;37950:1;37939:9;37935:17;37928:47;37992:131;38118:4;37992:131;:::i;:::-;37984:139;;37711:419;;;:::o;38136:164::-;38276:16;38272:1;38264:6;38260:14;38253:40;38136:164;:::o;38306:366::-;38448:3;38469:67;38533:2;38528:3;38469:67;:::i;:::-;38462:74;;38545:93;38634:3;38545:93;:::i;:::-;38663:2;38658:3;38654:12;38647:19;;38306:366;;;:::o;38678:419::-;38844:4;38882:2;38871:9;38867:18;38859:26;;38931:9;38925:4;38921:20;38917:1;38906:9;38902:17;38895:47;38959:131;39085:4;38959:131;:::i;:::-;38951:139;;38678:419;;;:::o;39103:182::-;39243:34;39239:1;39231:6;39227:14;39220:58;39103:182;:::o;39291:366::-;39433:3;39454:67;39518:2;39513:3;39454:67;:::i;:::-;39447:74;;39530:93;39619:3;39530:93;:::i;:::-;39648:2;39643:3;39639:12;39632:19;;39291:366;;;:::o;39663:419::-;39829:4;39867:2;39856:9;39852:18;39844:26;;39916:9;39910:4;39906:20;39902:1;39891:9;39887:17;39880:47;39944:131;40070:4;39944:131;:::i;:::-;39936:139;;39663:419;;;:::o;40088:180::-;40136:77;40133:1;40126:88;40233:4;40230:1;40223:15;40257:4;40254:1;40247:15;40274:98;40325:6;40359:5;40353:12;40343:22;;40274:98;;;:::o;40378:168::-;40461:11;40495:6;40490:3;40483:19;40535:4;40530:3;40526:14;40511:29;;40378:168;;;;:::o;40552:373::-;40638:3;40666:38;40698:5;40666:38;:::i;:::-;40720:70;40783:6;40778:3;40720:70;:::i;:::-;40713:77;;40799:65;40857:6;40852:3;40845:4;40838:5;40834:16;40799:65;:::i;:::-;40889:29;40911:6;40889:29;:::i;:::-;40884:3;40880:39;40873:46;;40642:283;40552:373;;;;:::o;40931:640::-;41126:4;41164:3;41153:9;41149:19;41141:27;;41178:71;41246:1;41235:9;41231:17;41222:6;41178:71;:::i;:::-;41259:72;41327:2;41316:9;41312:18;41303:6;41259:72;:::i;:::-;41341;41409:2;41398:9;41394:18;41385:6;41341:72;:::i;:::-;41460:9;41454:4;41450:20;41445:2;41434:9;41430:18;41423:48;41488:76;41559:4;41550:6;41488:76;:::i;:::-;41480:84;;40931:640;;;;;;;:::o;41577:141::-;41633:5;41664:6;41658:13;41649:22;;41680:32;41706:5;41680:32;:::i;:::-;41577:141;;;;:::o;41724:349::-;41793:6;41842:2;41830:9;41821:7;41817:23;41813:32;41810:119;;;41848:79;;:::i;:::-;41810:119;41968:1;41993:63;42048:7;42039:6;42028:9;42024:22;41993:63;:::i;:::-;41983:73;;41939:127;41724:349;;;;:::o

Swarm Source

ipfs://485e4aff959375f624eb0a20de29eb1072215f3f6381c6cd7f07dc469d103e9d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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