ETH Price: $3,118.64 (+0.86%)
Gas: 2 Gwei

Token

oddBOi (oddBOi)
 

Overview

Max Total Supply

999 oddBOi

Holders

455

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 oddBOi
0xc2082f3fce73d71e8d69139fd1c75eb8ee9a20b5
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:
oDDBOiNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-10
*/

// 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/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


pragma solidity ^0.8.13;

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

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


pragma solidity ^0.8.13;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.13;


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

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

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

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

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

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


pragma solidity ^0.8.13;


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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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);
}

// 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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/oddboinft.sol


pragma solidity ^0.8.17;









contract oDDBOiNFT is ERC721A, IERC2981, Ownable, DefaultOperatorFilterer{
   using Strings for uint256;

   error TokenDoesNotExist(uint256 id);

   uint256 public MAX_SUPPLY = 999;
   uint256 public MAX_PUB_MINT = 5;
   uint256 public MAX_WL_MINT = 1;
   address public Royalty;


   string private baseTokenUri;
   string public  placeholderTokenUri;

   mapping(address => bool) public hasClaimed;

   bool public isRevealed;
   bool public publicSale;
   bool public whiteListSale;
   bool public pause;

   bytes32 private merkleRoot;


   mapping(address => uint256) public totalPublicMint;
   mapping(address => uint256) public totalWhitelistMint;

   constructor() ERC721A("oddBOi", "oddBOi"){}

   modifier callerIsUser() {
       require(tx.origin == msg.sender, "oddBOi :: Cannot be called by a contract");
       _;
   }

   function mint(uint256 _quantity) external callerIsUser {
       require(publicSale, "oddBOi :: Not Yet Active.");
       require((totalSupply() + _quantity) <= MAX_SUPPLY, "oddBOi :: PUBLIC SOLDOUT");
       require((totalPublicMint[msg.sender] + _quantity) <= MAX_PUB_MINT, "oddBOi :: Minting this many would put you over 5 in public mint!");


       totalPublicMint[msg.sender] += _quantity;
       _mint(msg.sender, _quantity);
   }

   function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser{
       require(whiteListSale, "oddBOi :: Minting is on Pause");
       require((totalSupply() + _quantity) <= MAX_SUPPLY, "oddBOi :: PUBLIC SOLDOUT");
       require((totalWhitelistMint[msg.sender] + _quantity) <= MAX_WL_MINT, "you can only mint 1 on WL");


       // //create leaf node
       bytes32 sender = keccak256(abi.encodePacked(msg.sender));
       require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "oddBOi :: You are not whitelisted");

       totalWhitelistMint[msg.sender] += _quantity;
       _mint(msg.sender, _quantity);
   }


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

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

       uint256 trueId = tokenId + 1;

       if(!isRevealed){
           return placeholderTokenUri;
       }
      
       return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
   }

   function teamMint(uint256 quantity) external onlyOwner{
       require((totalSupply() + quantity) <= MAX_SUPPLY, "oddBOi :: PUBLIC SOLDOUT");
       _safeMint(msg.sender, quantity);
   }

   function setTokenUri(string calldata _baseTokenUri) external onlyOwner{
       baseTokenUri = _baseTokenUri;
   }

   function setMaxSupply(uint256 _MAX_SUPPLY) external onlyOwner{
       MAX_SUPPLY = _MAX_SUPPLY;
   }
  
   function setPlaceHolderUri(string calldata _placeholderTokenUri) external onlyOwner{
       placeholderTokenUri = _placeholderTokenUri;
   }

    function RoyaltyReciever(address _Royalty)external onlyOwner{
       Royalty = _Royalty;
   }

   function toggleWhiteListSale() external onlyOwner{
       whiteListSale = !whiteListSale;
   }

   function togglePublicSale() external onlyOwner{
       publicSale = !publicSale;
   }

   function toggleReveal() external onlyOwner{
       isRevealed = !isRevealed;
   }

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

   function getMerkleRoot() external view returns (bytes32){
       return merkleRoot;
   }


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

       /* ERC 2891 */
   function royaltyInfo(uint256 tokenId, uint256 salePrice)
       external
       view
       override
       returns (address receiver, uint256 royaltyAmount)
   {
       if (!_exists(tokenId)) {
           revert TokenDoesNotExist(tokenId);
       }

       return (address(Royalty), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
   }

   function supportsInterface(bytes4 interfaceId) public view override(ERC721A, IERC165) returns (bool) {
       return _supportsInterface(interfaceId);
   }

   function _supportsInterface(bytes4 interfaceId) private view returns (bool) {
       return
           interfaceId == type(IERC721).interfaceId ||
           interfaceId == type(IERC2981).interfaceId ||
           interfaceId == type(Ownable).interfaceId ||
           super.supportsInterface(interfaceId);
   }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"TokenDoesNotExist","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUB_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Royalty","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_Royalty","type":"address"}],"name":"RoyaltyReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e76009556005600a556001600b553480156200002157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600681526020017f6f6464424f6900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f6f6464424f6900000000000000000000000000000000000000000000000000008152508160029081620000b691906200064b565b508060039081620000c891906200064b565b50620000d9620002fe60201b60201c565b600081905550505062000101620000f56200030360201b60201c565b6200030b60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002f6578015620001bc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200018292919062000777565b600060405180830381600087803b1580156200019d57600080fd5b505af1158015620001b2573d6000803e3d6000fd5b50505050620002f5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000276576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200023c92919062000777565b600060405180830381600087803b1580156200025757600080fd5b505af11580156200026c573d6000803e3d6000fd5b50505050620002f4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002bf9190620007a4565b600060405180830381600087803b158015620002da57600080fd5b505af1158015620002ef573d6000803e3d6000fd5b505050505b5b5b5050620007c1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045357607f821691505b6020821081036200046957620004686200040b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000494565b620004df868362000494565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200052c620005266200052084620004f7565b62000501565b620004f7565b9050919050565b6000819050919050565b62000548836200050b565b62000560620005578262000533565b848454620004a1565b825550505050565b600090565b6200057762000568565b620005848184846200053d565b505050565b5b81811015620005ac57620005a06000826200056d565b6001810190506200058a565b5050565b601f821115620005fb57620005c5816200046f565b620005d08462000484565b81016020851015620005e0578190505b620005f8620005ef8562000484565b83018262000589565b50505b505050565b600082821c905092915050565b6000620006206000198460080262000600565b1980831691505092915050565b60006200063b83836200060d565b9150826002028217905092915050565b6200065682620003d1565b67ffffffffffffffff811115620006725762000671620003dc565b5b6200067e82546200043a565b6200068b828285620005b0565b600060209050601f831160018114620006c35760008415620006ae578287015190505b620006ba85826200062d565b8655506200072a565b601f198416620006d3866200046f565b60005b82811015620006fd57848901518255600182019150602085019450602081019050620006d6565b868310156200071d578489015162000719601f8916826200060d565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200075f8262000732565b9050919050565b620007718162000752565b82525050565b60006040820190506200078e600083018562000766565b6200079d602083018462000766565b9392505050565b6000602082019050620007bb600083018462000766565b92915050565b61413680620007d16000396000f3fe6080604052600436106102675760003560e01c80635b8ad4291161014457806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd146108b4578063d3d21d2f146108f1578063e222c7f91461091c578063e985e9c514610933578063f2fde38b14610970578063fa0470311461099957610267565b806395d89b41146107f2578063a0712d681461081d578063a22cb46514610846578063b0962c531461086f578063b88d4fde1461089857610267565b806373b2e80e1161010857806373b2e80e146106f45780637cb64759146107315780638456cb591461075a57806386a173ee146107855780638bb64a8c146107b05780638da5cb5b146107c757610267565b80635b8ad429146106235780636352211e1461063a5780636f8b44b01461067757806370a08231146106a0578063715018a6146106dd57610267565b80632904e6d9116101dd5780633ccfd60b116101a15780633ccfd60b1461054457806341f434341461055b57806342842e0e1461058657806349590657146105a25780634cf5f7a4146105cd57806354214f69146105f857610267565b80632904e6d91461046b5780632a55205a146104875780632fbba115146104c557806332cb6b0c146104ee57806333bc1c5c1461051957610267565b806306fdde031161022f57806306fdde0314610363578063081812fc1461038e578063095ea7b3146103cb57806318160ddd146103e75780631c16521c1461041257806323b872dd1461044f57610267565b80630109c52e1461026c57806301ffc9a7146102975780630345e3cb146102d4578063062d807f146103115780630675b7c61461033a575b600080fd5b34801561027857600080fd5b506102816109c4565b60405161028e9190612be9565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612c70565b6109ca565b6040516102cb9190612cb8565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612d31565b6109dc565b6040516103089190612be9565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190612d31565b6109f4565b005b34801561034657600080fd5b50610361600480360381019061035c9190612dc3565b610a40565b005b34801561036f57600080fd5b50610378610a5e565b6040516103859190612ea0565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190612eee565b610af0565b6040516103c29190612f2a565b60405180910390f35b6103e560048036038101906103e09190612f45565b610b6f565b005b3480156103f357600080fd5b506103fc610b88565b6040516104099190612be9565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612d31565b610b9f565b6040516104469190612be9565b60405180910390f35b61046960048036038101906104649190612f85565b610bb7565b005b6104856004803603810190610480919061314c565b610c06565b005b34801561049357600080fd5b506104ae60048036038101906104a991906131a8565b610e85565b6040516104bc9291906131e8565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190612eee565b610f15565b005b3480156104fa57600080fd5b50610503610f81565b6040516105109190612be9565b60405180910390f35b34801561052557600080fd5b5061052e610f87565b60405161053b9190612cb8565b60405180910390f35b34801561055057600080fd5b50610559610f9a565b005b34801561056757600080fd5b50610570610feb565b60405161057d9190613270565b60405180910390f35b6105a0600480360381019061059b9190612f85565b610ffd565b005b3480156105ae57600080fd5b506105b761104c565b6040516105c4919061329a565b60405180910390f35b3480156105d957600080fd5b506105e2611056565b6040516105ef9190612ea0565b60405180910390f35b34801561060457600080fd5b5061060d6110e4565b60405161061a9190612cb8565b60405180910390f35b34801561062f57600080fd5b506106386110f7565b005b34801561064657600080fd5b50610661600480360381019061065c9190612eee565b61112b565b60405161066e9190612f2a565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612eee565b61113d565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190612d31565b61114f565b6040516106d49190612be9565b60405180910390f35b3480156106e957600080fd5b506106f2611207565b005b34801561070057600080fd5b5061071b60048036038101906107169190612d31565b61121b565b6040516107289190612cb8565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906132b5565b61123b565b005b34801561076657600080fd5b5061076f61124d565b60405161077c9190612cb8565b60405180910390f35b34801561079157600080fd5b5061079a611260565b6040516107a79190612cb8565b60405180910390f35b3480156107bc57600080fd5b506107c5611273565b005b3480156107d357600080fd5b506107dc6112a7565b6040516107e99190612f2a565b60405180910390f35b3480156107fe57600080fd5b506108076112d1565b6040516108149190612ea0565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612eee565b611363565b005b34801561085257600080fd5b5061086d6004803603810190610868919061330e565b611569565b005b34801561087b57600080fd5b5061089660048036038101906108919190612dc3565b611582565b005b6108b260048036038101906108ad9190613403565b6115a0565b005b3480156108c057600080fd5b506108db60048036038101906108d69190612eee565b6115f1565b6040516108e89190612ea0565b60405180910390f35b3480156108fd57600080fd5b50610906611753565b6040516109139190612be9565b60405180910390f35b34801561092857600080fd5b50610931611759565b005b34801561093f57600080fd5b5061095a60048036038101906109559190613486565b61178d565b6040516109679190612cb8565b60405180910390f35b34801561097c57600080fd5b5061099760048036038101906109929190612d31565b611821565b005b3480156109a557600080fd5b506109ae6118a4565b6040516109bb9190612f2a565b60405180910390f35b600b5481565b60006109d5826118ca565b9050919050565b60136020528060005260406000206000915090505481565b6109fc611a14565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a48611a14565b8181600d9182610a599291906136d3565b505050565b606060028054610a6d90613500565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990613500565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b6000610afb82611a92565b610b31576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b7981611af1565b610b838383611bee565b505050565b6000610b92611d32565b6001546000540303905090565b60126020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bf557610bf433611af1565b5b610c00848484611d37565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90613815565b60405180910390fd5b601060029054906101000a900460ff16610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613881565b60405180910390fd5b60095481610ccf610b88565b610cd991906138d0565b1115610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613950565b60405180910390fd5b600b5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6891906138d0565b1115610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da0906139bc565b60405180910390fd5b600033604051602001610dbc9190613a24565b604051602081830303815290604052805190602001209050610de18360115483612059565b610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613ab1565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e6f91906138d0565b92505081905550610e803383612070565b505050565b600080610e9184611a92565b610ed257836040517fc927e5bf000000000000000000000000000000000000000000000000000000008152600401610ec99190612be9565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610f0a610f0385600561222b565b6064612241565b915091509250929050565b610f1d611a14565b60095481610f29610b88565b610f3391906138d0565b1115610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90613950565b60405180910390fd5b610f7e3382612257565b50565b60095481565b601060019054906101000a900460ff1681565b610fa2611a14565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fe8573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461103b5761103a33611af1565b5b611046848484612275565b50505050565b6000601154905090565b600e805461106390613500565b80601f016020809104026020016040519081016040528092919081815260200182805461108f90613500565b80156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6110ff611a14565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600061113682612295565b9050919050565b611145611a14565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61120f611a14565b6112196000612361565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b611243611a14565b8060118190555050565b601060039054906101000a900460ff1681565b601060029054906101000a900460ff1681565b61127b611a14565b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112e090613500565b80601f016020809104026020016040519081016040528092919081815260200182805461130c90613500565b80156113595780601f1061132e57610100808354040283529160200191611359565b820191906000526020600020905b81548152906001019060200180831161133c57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613815565b60405180910390fd5b601060019054906101000a900460ff16611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790613b1d565b60405180910390fd5b6009548161142c610b88565b61143691906138d0565b1115611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613950565b60405180910390fd5b600a5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c591906138d0565b1115611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613baf565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155591906138d0565b925050819055506115663382612070565b50565b8161157381611af1565b61157d8383612427565b505050565b61158a611a14565b8181600e918261159b9291906136d3565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115de576115dd33611af1565b5b6115ea85858585612532565b5050505050565b60606115fc82611a92565b61163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613c41565b60405180910390fd5b600060018361164a91906138d0565b9050601060009054906101000a900460ff166116f357600e805461166d90613500565b80601f016020809104026020016040519081016040528092919081815260200182805461169990613500565b80156116e65780601f106116bb576101008083540402835291602001916116e6565b820191906000526020600020905b8154815290600101906020018083116116c957829003601f168201915b505050505091505061174e565b6000600d805461170290613500565b90501161171e576040518060200160405280600081525061174a565b600d611729826125a5565b60405160200161173a929190613d6c565b6040516020818303038152906040525b9150505b919050565b600a5481565b611761611a14565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611829611a14565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90613e0d565b60405180910390fd5b6118a181612361565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061199557507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119fd57507f0e083076000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a0d5750611a0c82612673565b5b9050919050565b611a1c612705565b73ffffffffffffffffffffffffffffffffffffffff16611a3a6112a7565b73ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790613e79565b60405180910390fd5b565b600081611a9d611d32565b11158015611aac575060005482105b8015611aea575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611beb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b68929190613e99565b602060405180830381865afa158015611b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba99190613ed7565b611bea57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611be19190612f2a565b60405180910390fd5b5b50565b6000611bf98261112b565b90508073ffffffffffffffffffffffffffffffffffffffff16611c1a61270d565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d57611c4681611c4161270d565b61178d565b611c7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611d4282612295565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611da9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611db584612715565b91509150611dcb8187611dc661270d565b61273c565b611e1757611de086611ddb61270d565b61178d565b611e16576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e7d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e8a8686866001612780565b8015611e9557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611f6385611f3f888887612786565b7c0200000000000000000000000000000000000000000000000000000000176127ae565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611fe95760006001850190506000600460008381526020019081526020016000205403611fe7576000548114611fe6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461205186868660016127d9565b505050505050565b60008261206685846127df565b1490509392505050565b600080549050600082036120b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120bd6000848385612780565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612134836121256000866000612786565b61212e85612835565b176127ae565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121d557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061219a565b5060008203612210576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061222660008483856127d9565b505050565b600081836122399190613f04565b905092915050565b6000818361224f9190613f75565b905092915050565b612271828260405180602001604052806000815250612845565b5050565b612290838383604051806020016040528060008152506115a0565b505050565b600080829050806122a4611d32565b1161232a576000548110156123295760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612327575b6000810361231d5760046000836001900393508381526020019081526020016000205490506122f3565b809250505061235c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061243461270d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124e161270d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125269190612cb8565b60405180910390a35050565b61253d848484610bb7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461259f57612568848484846128e2565b61259e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600060016125b484612a32565b01905060008167ffffffffffffffff8111156125d3576125d2612fd8565b5b6040519080825280601f01601f1916602001820160405280156126055781602001600182028036833780820191505090505b509050600082602001820190505b600115612668578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161265c5761265b613f46565b5b04945060008503612613575b819350505050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126ce57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126fe5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861279d868684612b85565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008082905060005b845181101561282a576128158286838151811061280857612807613fa6565b5b6020026020010151612b8e565b9150808061282290613fd5565b9150506127e8565b508091505092915050565b60006001821460e11b9050919050565b61284f8383612070565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128dd57600080549050600083820390505b61288f60008683806001019450866128e2565b6128c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061287c5781600054146128da57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261290861270d565b8786866040518563ffffffff1660e01b815260040161292a9493929190614072565b6020604051808303816000875af192505050801561296657506040513d601f19601f8201168201806040525081019061296391906140d3565b60015b6129df573d8060008114612996576040519150601f19603f3d011682016040523d82523d6000602084013e61299b565b606091505b5060008151036129d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a90577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a8657612a85613f46565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612acd576d04ee2d6d415b85acef81000000008381612ac357612ac2613f46565b5b0492506020810190505b662386f26fc100008310612afc57662386f26fc100008381612af257612af1613f46565b5b0492506010810190505b6305f5e1008310612b25576305f5e1008381612b1b57612b1a613f46565b5b0492506008810190505b6127108310612b4a576127108381612b4057612b3f613f46565b5b0492506004810190505b60648310612b6d5760648381612b6357612b62613f46565b5b0492506002810190505b600a8310612b7c576001810190505b80915050919050565b60009392505050565b6000818310612ba657612ba18284612bb9565b612bb1565b612bb08383612bb9565b5b905092915050565b600082600052816020526040600020905092915050565b6000819050919050565b612be381612bd0565b82525050565b6000602082019050612bfe6000830184612bda565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c4d81612c18565b8114612c5857600080fd5b50565b600081359050612c6a81612c44565b92915050565b600060208284031215612c8657612c85612c0e565b5b6000612c9484828501612c5b565b91505092915050565b60008115159050919050565b612cb281612c9d565b82525050565b6000602082019050612ccd6000830184612ca9565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cfe82612cd3565b9050919050565b612d0e81612cf3565b8114612d1957600080fd5b50565b600081359050612d2b81612d05565b92915050565b600060208284031215612d4757612d46612c0e565b5b6000612d5584828501612d1c565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612d8357612d82612d5e565b5b8235905067ffffffffffffffff811115612da057612d9f612d63565b5b602083019150836001820283011115612dbc57612dbb612d68565b5b9250929050565b60008060208385031215612dda57612dd9612c0e565b5b600083013567ffffffffffffffff811115612df857612df7612c13565b5b612e0485828601612d6d565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4a578082015181840152602081019050612e2f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e7282612e10565b612e7c8185612e1b565b9350612e8c818560208601612e2c565b612e9581612e56565b840191505092915050565b60006020820190508181036000830152612eba8184612e67565b905092915050565b612ecb81612bd0565b8114612ed657600080fd5b50565b600081359050612ee881612ec2565b92915050565b600060208284031215612f0457612f03612c0e565b5b6000612f1284828501612ed9565b91505092915050565b612f2481612cf3565b82525050565b6000602082019050612f3f6000830184612f1b565b92915050565b60008060408385031215612f5c57612f5b612c0e565b5b6000612f6a85828601612d1c565b9250506020612f7b85828601612ed9565b9150509250929050565b600080600060608486031215612f9e57612f9d612c0e565b5b6000612fac86828701612d1c565b9350506020612fbd86828701612d1c565b9250506040612fce86828701612ed9565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61301082612e56565b810181811067ffffffffffffffff8211171561302f5761302e612fd8565b5b80604052505050565b6000613042612c04565b905061304e8282613007565b919050565b600067ffffffffffffffff82111561306e5761306d612fd8565b5b602082029050602081019050919050565b6000819050919050565b6130928161307f565b811461309d57600080fd5b50565b6000813590506130af81613089565b92915050565b60006130c86130c384613053565b613038565b905080838252602082019050602084028301858111156130eb576130ea612d68565b5b835b81811015613114578061310088826130a0565b8452602084019350506020810190506130ed565b5050509392505050565b600082601f83011261313357613132612d5e565b5b81356131438482602086016130b5565b91505092915050565b6000806040838503121561316357613162612c0e565b5b600083013567ffffffffffffffff81111561318157613180612c13565b5b61318d8582860161311e565b925050602061319e85828601612ed9565b9150509250929050565b600080604083850312156131bf576131be612c0e565b5b60006131cd85828601612ed9565b92505060206131de85828601612ed9565b9150509250929050565b60006040820190506131fd6000830185612f1b565b61320a6020830184612bda565b9392505050565b6000819050919050565b600061323661323161322c84612cd3565b613211565b612cd3565b9050919050565b60006132488261321b565b9050919050565b600061325a8261323d565b9050919050565b61326a8161324f565b82525050565b60006020820190506132856000830184613261565b92915050565b6132948161307f565b82525050565b60006020820190506132af600083018461328b565b92915050565b6000602082840312156132cb576132ca612c0e565b5b60006132d9848285016130a0565b91505092915050565b6132eb81612c9d565b81146132f657600080fd5b50565b600081359050613308816132e2565b92915050565b6000806040838503121561332557613324612c0e565b5b600061333385828601612d1c565b9250506020613344858286016132f9565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561336e5761336d612fd8565b5b61337782612e56565b9050602081019050919050565b82818337600083830152505050565b60006133a66133a184613353565b613038565b9050828152602081018484840111156133c2576133c161334e565b5b6133cd848285613384565b509392505050565b600082601f8301126133ea576133e9612d5e565b5b81356133fa848260208601613393565b91505092915050565b6000806000806080858703121561341d5761341c612c0e565b5b600061342b87828801612d1c565b945050602061343c87828801612d1c565b935050604061344d87828801612ed9565b925050606085013567ffffffffffffffff81111561346e5761346d612c13565b5b61347a878288016133d5565b91505092959194509250565b6000806040838503121561349d5761349c612c0e565b5b60006134ab85828601612d1c565b92505060206134bc85828601612d1c565b9150509250929050565b600082905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061351857607f821691505b60208210810361352b5761352a6134d1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613556565b61359d8683613556565b95508019841693508086168417925050509392505050565b60006135d06135cb6135c684612bd0565b613211565b612bd0565b9050919050565b6000819050919050565b6135ea836135b5565b6135fe6135f6826135d7565b848454613563565b825550505050565b600090565b613613613606565b61361e8184846135e1565b505050565b5b818110156136425761363760008261360b565b600181019050613624565b5050565b601f8211156136875761365881613531565b61366184613546565b81016020851015613670578190505b61368461367c85613546565b830182613623565b50505b505050565b600082821c905092915050565b60006136aa6000198460080261368c565b1980831691505092915050565b60006136c38383613699565b9150826002028217905092915050565b6136dd83836134c6565b67ffffffffffffffff8111156136f6576136f5612fd8565b5b6137008254613500565b61370b828285613646565b6000601f83116001811461373a5760008415613728578287013590505b61373285826136b7565b86555061379a565b601f19841661374886613531565b60005b828110156137705784890135825560018201915060208501945060208101905061374b565b8683101561378d5784890135613789601f891682613699565b8355505b6001600288020188555050505b50505050505050565b7f6f6464424f69203a3a2043616e6e6f742062652063616c6c656420627920612060008201527f636f6e7472616374000000000000000000000000000000000000000000000000602082015250565b60006137ff602883612e1b565b915061380a826137a3565b604082019050919050565b6000602082019050818103600083015261382e816137f2565b9050919050565b7f6f6464424f69203a3a204d696e74696e67206973206f6e205061757365000000600082015250565b600061386b601d83612e1b565b915061387682613835565b602082019050919050565b6000602082019050818103600083015261389a8161385e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138db82612bd0565b91506138e683612bd0565b92508282019050808211156138fe576138fd6138a1565b5b92915050565b7f6f6464424f69203a3a205055424c494320534f4c444f55540000000000000000600082015250565b600061393a601883612e1b565b915061394582613904565b602082019050919050565b600060208201905081810360008301526139698161392d565b9050919050565b7f796f752063616e206f6e6c79206d696e742031206f6e20574c00000000000000600082015250565b60006139a6601983612e1b565b91506139b182613970565b602082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b60008160601b9050919050565b60006139f4826139dc565b9050919050565b6000613a06826139e9565b9050919050565b613a1e613a1982612cf3565b6139fb565b82525050565b6000613a308284613a0d565b60148201915081905092915050565b7f6f6464424f69203a3a20596f7520617265206e6f742077686974656c6973746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a9b602183612e1b565b9150613aa682613a3f565b604082019050919050565b60006020820190508181036000830152613aca81613a8e565b9050919050565b7f6f6464424f69203a3a204e6f7420596574204163746976652e00000000000000600082015250565b6000613b07601983612e1b565b9150613b1282613ad1565b602082019050919050565b60006020820190508181036000830152613b3681613afa565b9050919050565b7f6f6464424f69203a3a204d696e74696e672074686973206d616e7920776f756c60008201527f642070757420796f75206f766572203520696e207075626c6963206d696e7421602082015250565b6000613b99604083612e1b565b9150613ba482613b3d565b604082019050919050565b60006020820190508181036000830152613bc881613b8c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c2b602f83612e1b565b9150613c3682613bcf565b604082019050919050565b60006020820190508181036000830152613c5a81613c1e565b9050919050565b600081905092915050565b60008154613c7981613500565b613c838186613c61565b94506001821660008114613c9e5760018114613cb357613ce6565b60ff1983168652811515820286019350613ce6565b613cbc85613531565b60005b83811015613cde57815481890152600182019150602081019050613cbf565b838801955050505b50505092915050565b6000613cfa82612e10565b613d048185613c61565b9350613d14818560208601612e2c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613d56600583613c61565b9150613d6182613d20565b600582019050919050565b6000613d788285613c6c565b9150613d848284613cef565b9150613d8f82613d49565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613df7602683612e1b565b9150613e0282613d9b565b604082019050919050565b60006020820190508181036000830152613e2681613dea565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e63602083612e1b565b9150613e6e82613e2d565b602082019050919050565b60006020820190508181036000830152613e9281613e56565b9050919050565b6000604082019050613eae6000830185612f1b565b613ebb6020830184612f1b565b9392505050565b600081519050613ed1816132e2565b92915050565b600060208284031215613eed57613eec612c0e565b5b6000613efb84828501613ec2565b91505092915050565b6000613f0f82612bd0565b9150613f1a83612bd0565b9250828202613f2881612bd0565b91508282048414831517613f3f57613f3e6138a1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f8082612bd0565b9150613f8b83612bd0565b925082613f9b57613f9a613f46565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613fe082612bd0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614012576140116138a1565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006140448261401d565b61404e8185614028565b935061405e818560208601612e2c565b61406781612e56565b840191505092915050565b60006080820190506140876000830187612f1b565b6140946020830186612f1b565b6140a16040830185612bda565b81810360608301526140b38184614039565b905095945050505050565b6000815190506140cd81612c44565b92915050565b6000602082840312156140e9576140e8612c0e565b5b60006140f7848285016140be565b9150509291505056fea2646970667358221220916d94633d9814023825a7583c167fb303e1067546a1d6f7094af961826533f664736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80635b8ad4291161014457806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd146108b4578063d3d21d2f146108f1578063e222c7f91461091c578063e985e9c514610933578063f2fde38b14610970578063fa0470311461099957610267565b806395d89b41146107f2578063a0712d681461081d578063a22cb46514610846578063b0962c531461086f578063b88d4fde1461089857610267565b806373b2e80e1161010857806373b2e80e146106f45780637cb64759146107315780638456cb591461075a57806386a173ee146107855780638bb64a8c146107b05780638da5cb5b146107c757610267565b80635b8ad429146106235780636352211e1461063a5780636f8b44b01461067757806370a08231146106a0578063715018a6146106dd57610267565b80632904e6d9116101dd5780633ccfd60b116101a15780633ccfd60b1461054457806341f434341461055b57806342842e0e1461058657806349590657146105a25780634cf5f7a4146105cd57806354214f69146105f857610267565b80632904e6d91461046b5780632a55205a146104875780632fbba115146104c557806332cb6b0c146104ee57806333bc1c5c1461051957610267565b806306fdde031161022f57806306fdde0314610363578063081812fc1461038e578063095ea7b3146103cb57806318160ddd146103e75780631c16521c1461041257806323b872dd1461044f57610267565b80630109c52e1461026c57806301ffc9a7146102975780630345e3cb146102d4578063062d807f146103115780630675b7c61461033a575b600080fd5b34801561027857600080fd5b506102816109c4565b60405161028e9190612be9565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612c70565b6109ca565b6040516102cb9190612cb8565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612d31565b6109dc565b6040516103089190612be9565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190612d31565b6109f4565b005b34801561034657600080fd5b50610361600480360381019061035c9190612dc3565b610a40565b005b34801561036f57600080fd5b50610378610a5e565b6040516103859190612ea0565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190612eee565b610af0565b6040516103c29190612f2a565b60405180910390f35b6103e560048036038101906103e09190612f45565b610b6f565b005b3480156103f357600080fd5b506103fc610b88565b6040516104099190612be9565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612d31565b610b9f565b6040516104469190612be9565b60405180910390f35b61046960048036038101906104649190612f85565b610bb7565b005b6104856004803603810190610480919061314c565b610c06565b005b34801561049357600080fd5b506104ae60048036038101906104a991906131a8565b610e85565b6040516104bc9291906131e8565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190612eee565b610f15565b005b3480156104fa57600080fd5b50610503610f81565b6040516105109190612be9565b60405180910390f35b34801561052557600080fd5b5061052e610f87565b60405161053b9190612cb8565b60405180910390f35b34801561055057600080fd5b50610559610f9a565b005b34801561056757600080fd5b50610570610feb565b60405161057d9190613270565b60405180910390f35b6105a0600480360381019061059b9190612f85565b610ffd565b005b3480156105ae57600080fd5b506105b761104c565b6040516105c4919061329a565b60405180910390f35b3480156105d957600080fd5b506105e2611056565b6040516105ef9190612ea0565b60405180910390f35b34801561060457600080fd5b5061060d6110e4565b60405161061a9190612cb8565b60405180910390f35b34801561062f57600080fd5b506106386110f7565b005b34801561064657600080fd5b50610661600480360381019061065c9190612eee565b61112b565b60405161066e9190612f2a565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612eee565b61113d565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190612d31565b61114f565b6040516106d49190612be9565b60405180910390f35b3480156106e957600080fd5b506106f2611207565b005b34801561070057600080fd5b5061071b60048036038101906107169190612d31565b61121b565b6040516107289190612cb8565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906132b5565b61123b565b005b34801561076657600080fd5b5061076f61124d565b60405161077c9190612cb8565b60405180910390f35b34801561079157600080fd5b5061079a611260565b6040516107a79190612cb8565b60405180910390f35b3480156107bc57600080fd5b506107c5611273565b005b3480156107d357600080fd5b506107dc6112a7565b6040516107e99190612f2a565b60405180910390f35b3480156107fe57600080fd5b506108076112d1565b6040516108149190612ea0565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612eee565b611363565b005b34801561085257600080fd5b5061086d6004803603810190610868919061330e565b611569565b005b34801561087b57600080fd5b5061089660048036038101906108919190612dc3565b611582565b005b6108b260048036038101906108ad9190613403565b6115a0565b005b3480156108c057600080fd5b506108db60048036038101906108d69190612eee565b6115f1565b6040516108e89190612ea0565b60405180910390f35b3480156108fd57600080fd5b50610906611753565b6040516109139190612be9565b60405180910390f35b34801561092857600080fd5b50610931611759565b005b34801561093f57600080fd5b5061095a60048036038101906109559190613486565b61178d565b6040516109679190612cb8565b60405180910390f35b34801561097c57600080fd5b5061099760048036038101906109929190612d31565b611821565b005b3480156109a557600080fd5b506109ae6118a4565b6040516109bb9190612f2a565b60405180910390f35b600b5481565b60006109d5826118ca565b9050919050565b60136020528060005260406000206000915090505481565b6109fc611a14565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a48611a14565b8181600d9182610a599291906136d3565b505050565b606060028054610a6d90613500565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990613500565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b5050505050905090565b6000610afb82611a92565b610b31576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b7981611af1565b610b838383611bee565b505050565b6000610b92611d32565b6001546000540303905090565b60126020528060005260406000206000915090505481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bf557610bf433611af1565b5b610c00848484611d37565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90613815565b60405180910390fd5b601060029054906101000a900460ff16610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613881565b60405180910390fd5b60095481610ccf610b88565b610cd991906138d0565b1115610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613950565b60405180910390fd5b600b5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6891906138d0565b1115610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da0906139bc565b60405180910390fd5b600033604051602001610dbc9190613a24565b604051602081830303815290604052805190602001209050610de18360115483612059565b610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613ab1565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e6f91906138d0565b92505081905550610e803383612070565b505050565b600080610e9184611a92565b610ed257836040517fc927e5bf000000000000000000000000000000000000000000000000000000008152600401610ec99190612be9565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610f0a610f0385600561222b565b6064612241565b915091509250929050565b610f1d611a14565b60095481610f29610b88565b610f3391906138d0565b1115610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90613950565b60405180910390fd5b610f7e3382612257565b50565b60095481565b601060019054906101000a900460ff1681565b610fa2611a14565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fe8573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461103b5761103a33611af1565b5b611046848484612275565b50505050565b6000601154905090565b600e805461106390613500565b80601f016020809104026020016040519081016040528092919081815260200182805461108f90613500565b80156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6110ff611a14565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600061113682612295565b9050919050565b611145611a14565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61120f611a14565b6112196000612361565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b611243611a14565b8060118190555050565b601060039054906101000a900460ff1681565b601060029054906101000a900460ff1681565b61127b611a14565b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112e090613500565b80601f016020809104026020016040519081016040528092919081815260200182805461130c90613500565b80156113595780601f1061132e57610100808354040283529160200191611359565b820191906000526020600020905b81548152906001019060200180831161133c57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890613815565b60405180910390fd5b601060019054906101000a900460ff16611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790613b1d565b60405180910390fd5b6009548161142c610b88565b61143691906138d0565b1115611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613950565b60405180910390fd5b600a5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c591906138d0565b1115611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613baf565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155591906138d0565b925050819055506115663382612070565b50565b8161157381611af1565b61157d8383612427565b505050565b61158a611a14565b8181600e918261159b9291906136d3565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115de576115dd33611af1565b5b6115ea85858585612532565b5050505050565b60606115fc82611a92565b61163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613c41565b60405180910390fd5b600060018361164a91906138d0565b9050601060009054906101000a900460ff166116f357600e805461166d90613500565b80601f016020809104026020016040519081016040528092919081815260200182805461169990613500565b80156116e65780601f106116bb576101008083540402835291602001916116e6565b820191906000526020600020905b8154815290600101906020018083116116c957829003601f168201915b505050505091505061174e565b6000600d805461170290613500565b90501161171e576040518060200160405280600081525061174a565b600d611729826125a5565b60405160200161173a929190613d6c565b6040516020818303038152906040525b9150505b919050565b600a5481565b611761611a14565b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611829611a14565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188f90613e0d565b60405180910390fd5b6118a181612361565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061199557507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119fd57507f0e083076000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a0d5750611a0c82612673565b5b9050919050565b611a1c612705565b73ffffffffffffffffffffffffffffffffffffffff16611a3a6112a7565b73ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790613e79565b60405180910390fd5b565b600081611a9d611d32565b11158015611aac575060005482105b8015611aea575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611beb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b68929190613e99565b602060405180830381865afa158015611b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba99190613ed7565b611bea57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611be19190612f2a565b60405180910390fd5b5b50565b6000611bf98261112b565b90508073ffffffffffffffffffffffffffffffffffffffff16611c1a61270d565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d57611c4681611c4161270d565b61178d565b611c7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611d4282612295565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611da9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611db584612715565b91509150611dcb8187611dc661270d565b61273c565b611e1757611de086611ddb61270d565b61178d565b611e16576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e7d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e8a8686866001612780565b8015611e9557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611f6385611f3f888887612786565b7c0200000000000000000000000000000000000000000000000000000000176127ae565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611fe95760006001850190506000600460008381526020019081526020016000205403611fe7576000548114611fe6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461205186868660016127d9565b505050505050565b60008261206685846127df565b1490509392505050565b600080549050600082036120b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120bd6000848385612780565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612134836121256000866000612786565b61212e85612835565b176127ae565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121d557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061219a565b5060008203612210576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061222660008483856127d9565b505050565b600081836122399190613f04565b905092915050565b6000818361224f9190613f75565b905092915050565b612271828260405180602001604052806000815250612845565b5050565b612290838383604051806020016040528060008152506115a0565b505050565b600080829050806122a4611d32565b1161232a576000548110156123295760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612327575b6000810361231d5760046000836001900393508381526020019081526020016000205490506122f3565b809250505061235c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061243461270d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124e161270d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125269190612cb8565b60405180910390a35050565b61253d848484610bb7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461259f57612568848484846128e2565b61259e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600060016125b484612a32565b01905060008167ffffffffffffffff8111156125d3576125d2612fd8565b5b6040519080825280601f01601f1916602001820160405280156126055781602001600182028036833780820191505090505b509050600082602001820190505b600115612668578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161265c5761265b613f46565b5b04945060008503612613575b819350505050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126ce57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126fe5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861279d868684612b85565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008082905060005b845181101561282a576128158286838151811061280857612807613fa6565b5b6020026020010151612b8e565b9150808061282290613fd5565b9150506127e8565b508091505092915050565b60006001821460e11b9050919050565b61284f8383612070565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128dd57600080549050600083820390505b61288f60008683806001019450866128e2565b6128c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061287c5781600054146128da57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261290861270d565b8786866040518563ffffffff1660e01b815260040161292a9493929190614072565b6020604051808303816000875af192505050801561296657506040513d601f19601f8201168201806040525081019061296391906140d3565b60015b6129df573d8060008114612996576040519150601f19603f3d011682016040523d82523d6000602084013e61299b565b606091505b5060008151036129d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a90577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a8657612a85613f46565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612acd576d04ee2d6d415b85acef81000000008381612ac357612ac2613f46565b5b0492506020810190505b662386f26fc100008310612afc57662386f26fc100008381612af257612af1613f46565b5b0492506010810190505b6305f5e1008310612b25576305f5e1008381612b1b57612b1a613f46565b5b0492506008810190505b6127108310612b4a576127108381612b4057612b3f613f46565b5b0492506004810190505b60648310612b6d5760648381612b6357612b62613f46565b5b0492506002810190505b600a8310612b7c576001810190505b80915050919050565b60009392505050565b6000818310612ba657612ba18284612bb9565b612bb1565b612bb08383612bb9565b5b905092915050565b600082600052816020526040600020905092915050565b6000819050919050565b612be381612bd0565b82525050565b6000602082019050612bfe6000830184612bda565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c4d81612c18565b8114612c5857600080fd5b50565b600081359050612c6a81612c44565b92915050565b600060208284031215612c8657612c85612c0e565b5b6000612c9484828501612c5b565b91505092915050565b60008115159050919050565b612cb281612c9d565b82525050565b6000602082019050612ccd6000830184612ca9565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cfe82612cd3565b9050919050565b612d0e81612cf3565b8114612d1957600080fd5b50565b600081359050612d2b81612d05565b92915050565b600060208284031215612d4757612d46612c0e565b5b6000612d5584828501612d1c565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612d8357612d82612d5e565b5b8235905067ffffffffffffffff811115612da057612d9f612d63565b5b602083019150836001820283011115612dbc57612dbb612d68565b5b9250929050565b60008060208385031215612dda57612dd9612c0e565b5b600083013567ffffffffffffffff811115612df857612df7612c13565b5b612e0485828601612d6d565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4a578082015181840152602081019050612e2f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e7282612e10565b612e7c8185612e1b565b9350612e8c818560208601612e2c565b612e9581612e56565b840191505092915050565b60006020820190508181036000830152612eba8184612e67565b905092915050565b612ecb81612bd0565b8114612ed657600080fd5b50565b600081359050612ee881612ec2565b92915050565b600060208284031215612f0457612f03612c0e565b5b6000612f1284828501612ed9565b91505092915050565b612f2481612cf3565b82525050565b6000602082019050612f3f6000830184612f1b565b92915050565b60008060408385031215612f5c57612f5b612c0e565b5b6000612f6a85828601612d1c565b9250506020612f7b85828601612ed9565b9150509250929050565b600080600060608486031215612f9e57612f9d612c0e565b5b6000612fac86828701612d1c565b9350506020612fbd86828701612d1c565b9250506040612fce86828701612ed9565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61301082612e56565b810181811067ffffffffffffffff8211171561302f5761302e612fd8565b5b80604052505050565b6000613042612c04565b905061304e8282613007565b919050565b600067ffffffffffffffff82111561306e5761306d612fd8565b5b602082029050602081019050919050565b6000819050919050565b6130928161307f565b811461309d57600080fd5b50565b6000813590506130af81613089565b92915050565b60006130c86130c384613053565b613038565b905080838252602082019050602084028301858111156130eb576130ea612d68565b5b835b81811015613114578061310088826130a0565b8452602084019350506020810190506130ed565b5050509392505050565b600082601f83011261313357613132612d5e565b5b81356131438482602086016130b5565b91505092915050565b6000806040838503121561316357613162612c0e565b5b600083013567ffffffffffffffff81111561318157613180612c13565b5b61318d8582860161311e565b925050602061319e85828601612ed9565b9150509250929050565b600080604083850312156131bf576131be612c0e565b5b60006131cd85828601612ed9565b92505060206131de85828601612ed9565b9150509250929050565b60006040820190506131fd6000830185612f1b565b61320a6020830184612bda565b9392505050565b6000819050919050565b600061323661323161322c84612cd3565b613211565b612cd3565b9050919050565b60006132488261321b565b9050919050565b600061325a8261323d565b9050919050565b61326a8161324f565b82525050565b60006020820190506132856000830184613261565b92915050565b6132948161307f565b82525050565b60006020820190506132af600083018461328b565b92915050565b6000602082840312156132cb576132ca612c0e565b5b60006132d9848285016130a0565b91505092915050565b6132eb81612c9d565b81146132f657600080fd5b50565b600081359050613308816132e2565b92915050565b6000806040838503121561332557613324612c0e565b5b600061333385828601612d1c565b9250506020613344858286016132f9565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561336e5761336d612fd8565b5b61337782612e56565b9050602081019050919050565b82818337600083830152505050565b60006133a66133a184613353565b613038565b9050828152602081018484840111156133c2576133c161334e565b5b6133cd848285613384565b509392505050565b600082601f8301126133ea576133e9612d5e565b5b81356133fa848260208601613393565b91505092915050565b6000806000806080858703121561341d5761341c612c0e565b5b600061342b87828801612d1c565b945050602061343c87828801612d1c565b935050604061344d87828801612ed9565b925050606085013567ffffffffffffffff81111561346e5761346d612c13565b5b61347a878288016133d5565b91505092959194509250565b6000806040838503121561349d5761349c612c0e565b5b60006134ab85828601612d1c565b92505060206134bc85828601612d1c565b9150509250929050565b600082905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061351857607f821691505b60208210810361352b5761352a6134d1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613556565b61359d8683613556565b95508019841693508086168417925050509392505050565b60006135d06135cb6135c684612bd0565b613211565b612bd0565b9050919050565b6000819050919050565b6135ea836135b5565b6135fe6135f6826135d7565b848454613563565b825550505050565b600090565b613613613606565b61361e8184846135e1565b505050565b5b818110156136425761363760008261360b565b600181019050613624565b5050565b601f8211156136875761365881613531565b61366184613546565b81016020851015613670578190505b61368461367c85613546565b830182613623565b50505b505050565b600082821c905092915050565b60006136aa6000198460080261368c565b1980831691505092915050565b60006136c38383613699565b9150826002028217905092915050565b6136dd83836134c6565b67ffffffffffffffff8111156136f6576136f5612fd8565b5b6137008254613500565b61370b828285613646565b6000601f83116001811461373a5760008415613728578287013590505b61373285826136b7565b86555061379a565b601f19841661374886613531565b60005b828110156137705784890135825560018201915060208501945060208101905061374b565b8683101561378d5784890135613789601f891682613699565b8355505b6001600288020188555050505b50505050505050565b7f6f6464424f69203a3a2043616e6e6f742062652063616c6c656420627920612060008201527f636f6e7472616374000000000000000000000000000000000000000000000000602082015250565b60006137ff602883612e1b565b915061380a826137a3565b604082019050919050565b6000602082019050818103600083015261382e816137f2565b9050919050565b7f6f6464424f69203a3a204d696e74696e67206973206f6e205061757365000000600082015250565b600061386b601d83612e1b565b915061387682613835565b602082019050919050565b6000602082019050818103600083015261389a8161385e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138db82612bd0565b91506138e683612bd0565b92508282019050808211156138fe576138fd6138a1565b5b92915050565b7f6f6464424f69203a3a205055424c494320534f4c444f55540000000000000000600082015250565b600061393a601883612e1b565b915061394582613904565b602082019050919050565b600060208201905081810360008301526139698161392d565b9050919050565b7f796f752063616e206f6e6c79206d696e742031206f6e20574c00000000000000600082015250565b60006139a6601983612e1b565b91506139b182613970565b602082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b60008160601b9050919050565b60006139f4826139dc565b9050919050565b6000613a06826139e9565b9050919050565b613a1e613a1982612cf3565b6139fb565b82525050565b6000613a308284613a0d565b60148201915081905092915050565b7f6f6464424f69203a3a20596f7520617265206e6f742077686974656c6973746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a9b602183612e1b565b9150613aa682613a3f565b604082019050919050565b60006020820190508181036000830152613aca81613a8e565b9050919050565b7f6f6464424f69203a3a204e6f7420596574204163746976652e00000000000000600082015250565b6000613b07601983612e1b565b9150613b1282613ad1565b602082019050919050565b60006020820190508181036000830152613b3681613afa565b9050919050565b7f6f6464424f69203a3a204d696e74696e672074686973206d616e7920776f756c60008201527f642070757420796f75206f766572203520696e207075626c6963206d696e7421602082015250565b6000613b99604083612e1b565b9150613ba482613b3d565b604082019050919050565b60006020820190508181036000830152613bc881613b8c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c2b602f83612e1b565b9150613c3682613bcf565b604082019050919050565b60006020820190508181036000830152613c5a81613c1e565b9050919050565b600081905092915050565b60008154613c7981613500565b613c838186613c61565b94506001821660008114613c9e5760018114613cb357613ce6565b60ff1983168652811515820286019350613ce6565b613cbc85613531565b60005b83811015613cde57815481890152600182019150602081019050613cbf565b838801955050505b50505092915050565b6000613cfa82612e10565b613d048185613c61565b9350613d14818560208601612e2c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613d56600583613c61565b9150613d6182613d20565b600582019050919050565b6000613d788285613c6c565b9150613d848284613cef565b9150613d8f82613d49565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613df7602683612e1b565b9150613e0282613d9b565b604082019050919050565b60006020820190508181036000830152613e2681613dea565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e63602083612e1b565b9150613e6e82613e2d565b602082019050919050565b60006020820190508181036000830152613e9281613e56565b9050919050565b6000604082019050613eae6000830185612f1b565b613ebb6020830184612f1b565b9392505050565b600081519050613ed1816132e2565b92915050565b600060208284031215613eed57613eec612c0e565b5b6000613efb84828501613ec2565b91505092915050565b6000613f0f82612bd0565b9150613f1a83612bd0565b9250828202613f2881612bd0565b91508282048414831517613f3f57613f3e6138a1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f8082612bd0565b9150613f8b83612bd0565b925082613f9b57613f9a613f46565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613fe082612bd0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614012576140116138a1565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006140448261401d565b61404e8185614028565b935061405e818560208601612e2c565b61406781612e56565b840191505092915050565b60006080820190506140876000830187612f1b565b6140946020830186612f1b565b6140a16040830185612bda565b81810360608301526140b38184614039565b905095945050505050565b6000815190506140cd81612c44565b92915050565b6000602082840312156140e9576140e8612c0e565b5b60006140f7848285016140be565b9150509291505056fea2646970667358221220916d94633d9814023825a7583c167fb303e1067546a1d6f7094af961826533f664736f6c63430008110033

Deployed Bytecode Sourcemap

104918:5680:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105147:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109139:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105544:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108051:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107668:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72707:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79198:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109834:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68458:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105488:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110004:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106241:670;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108785:347;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;107472:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;105073:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105368:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108649:106;;;;;;;;;;;;;:::i;:::-;;29975:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110180:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108550:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105248:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105340:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108350:83;;;;;;;;;;;;;:::i;:::-;;74100:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107790:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69642:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52584:103;;;;;;;;;;;;;:::i;:::-;;105290:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108440:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;105427:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105396:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108153:96;;;;;;;;;;;;;:::i;:::-;;51936:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72883:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105790:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109653:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107901:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110364:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107038:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105110:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108256:87;;;;;;;;;;;;;:::i;:::-;;80147:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52842:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;105183:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105147:30;;;;:::o;109139:156::-;109234:4;109257:31;109276:11;109257:18;:31::i;:::-;109250:38;;109139:156;;;:::o;105544:53::-;;;;;;;;;;;;;;;;;:::o;108051:95::-;51822:13;:11;:13::i;:::-;108131:8:::1;108121:7;;:18;;;;;;;;;;;;;;;;;;108051:95:::0;:::o;107668:115::-;51822:13;:11;:13::i;:::-;107763::::1;;107748:12;:28;;;;;;;:::i;:::-;;107668:115:::0;;:::o;72707:100::-;72761:13;72794:5;72787:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72707:100;:::o;79198:218::-;79274:7;79299:16;79307:7;79299;:16::i;:::-;79294:64;;79324:34;;;;;;;;;;;;;;79294:64;79378:15;:24;79394:7;79378:24;;;;;;;;;;;:30;;;;;;;;;;;;79371:37;;79198:218;;;:::o;109834:163::-;109938:8;31757:30;31778:8;31757:20;:30::i;:::-;109958:32:::1;109972:8;109982:7;109958:13;:32::i;:::-;109834:163:::0;;;:::o;68458:323::-;68519:7;68747:15;:13;:15::i;:::-;68732:12;;68716:13;;:28;:46;68709:53;;68458:323;:::o;105488:50::-;;;;;;;;;;;;;;;;;:::o;110004:169::-;110113:4;31491:10;31483:18;;:4;:18;;;31479:83;;31518:32;31539:10;31518:20;:32::i;:::-;31479:83;110129:37:::1;110148:4;110154:2;110158:7;110129:18;:37::i;:::-;110004:169:::0;;;;:::o;106241:670::-;105710:10;105697:23;;:9;:23;;;105689:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;106361:13:::1;;;;;;;;;;;106353:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;106457:10;;106443:9;106427:13;:11;:13::i;:::-;:25;;;;:::i;:::-;106426:41;;106418:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;106562:11;;106548:9;106515:18;:30;106534:10;106515:30;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;106514:59;;106506:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;106647:14;106691:10;106674:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;106664:39;;;;;;106647:56;;106721:52;106740:12;106754:10;;106766:6;106721:18;:52::i;:::-;106713:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;106857:9;106823:18;:30;106842:10;106823:30;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;106876:28;106882:10;106894:9;106876:5;:28::i;:::-;106343:568;106241:670:::0;;:::o;108785:347::-;108906:16;108924:21;108966:16;108974:7;108966;:16::i;:::-;108961:81;;109023:7;109005:26;;;;;;;;;;;:::i;:::-;;;;;;;;108961:81;109069:7;;;;;;;;;;;109079:45;109092:26;109105:9;109116:1;109092:12;:26::i;:::-;109120:3;109079:12;:45::i;:::-;109053:72;;;;108785:347;;;;;:::o;107472:189::-;51822:13;:11;:13::i;:::-;107574:10:::1;;107561:8;107545:13;:11;:13::i;:::-;:24;;;;:::i;:::-;107544:40;;107536:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;107623:31;107633:10;107645:8;107623:9;:31::i;:::-;107472:189:::0;:::o;105073:31::-;;;;:::o;105368:22::-;;;;;;;;;;;;;:::o;108649:106::-;51822:13;:11;:13::i;:::-;108705:10:::1;108697:28;;:51;108726:21;108697:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;108649:106::o:0;29975:143::-;22391:42;29975:143;:::o;110180:177::-;110293:4;31491:10;31483:18;;:4;:18;;;31479:83;;31518:32;31539:10;31518:20;:32::i;:::-;31479:83;110309:41:::1;110332:4;110338:2;110342:7;110309:22;:41::i;:::-;110180:177:::0;;;;:::o;108550:90::-;108598:7;108623:10;;108616:17;;108550:90;:::o;105248:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;105340:22::-;;;;;;;;;;;;;:::o;108350:83::-;51822:13;:11;:13::i;:::-;108416:10:::1;;;;;;;;;;;108415:11;108402:10;;:24;;;;;;;;;;;;;;;;;;108350:83::o:0;74100:152::-;74172:7;74215:27;74234:7;74215:18;:27::i;:::-;74192:52;;74100:152;;;:::o;107790:102::-;51822:13;:11;:13::i;:::-;107874:11:::1;107861:10;:24;;;;107790:102:::0;:::o;69642:233::-;69714:7;69755:1;69738:19;;:5;:19;;;69734:60;;69766:28;;;;;;;;;;;;;;69734:60;63801:13;69812:18;:25;69831:5;69812:25;;;;;;;;;;;;;;;;:55;69805:62;;69642:233;;;:::o;52584:103::-;51822:13;:11;:13::i;:::-;52649:30:::1;52676:1;52649:18;:30::i;:::-;52584:103::o:0;105290:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;108440:103::-;51822:13;:11;:13::i;:::-;108525:11:::1;108512:10;:24;;;;108440:103:::0;:::o;105427:17::-;;;;;;;;;;;;;:::o;105396:25::-;;;;;;;;;;;;;:::o;108153:96::-;51822:13;:11;:13::i;:::-;108229::::1;;;;;;;;;;;108228:14;108212:13;;:30;;;;;;;;;;;;;;;;;;108153:96::o:0;51936:87::-;51982:7;52009:6;;;;;;;;;;;52002:13;;51936:87;:::o;72883:104::-;72939:13;72972:7;72965:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72883:104;:::o;105790:444::-;105710:10;105697:23;;:9;:23;;;105689:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;105863:10:::1;;;;;;;;;;;105855:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;105952:10;;105938:9;105922:13;:11;:13::i;:::-;:25;;;;:::i;:::-;105921:41;;105913:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;106054:12;;106040:9;106010:15;:27;106026:10;106010:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;106009:57;;106001:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;106180:9;106149:15;:27;106165:10;106149:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;106199:28;106205:10;106217:9;106199:5;:28::i;:::-;105790:444:::0;:::o;109653:174::-;109757:8;31757:30;31778:8;31757:20;:30::i;:::-;109777:43:::1;109801:8;109811;109777:23;:43::i;:::-;109653:174:::0;;;:::o;107901:142::-;51822:13;:11;:13::i;:::-;108016:20:::1;;107994:19;:42;;;;;;;:::i;:::-;;107901:142:::0;;:::o;110364:231::-;110521:4;31491:10;31483:18;;:4;:18;;;31479:83;;31518:32;31539:10;31518:20;:32::i;:::-;31479:83;110541:47:::1;110564:4;110570:2;110574:7;110583:4;110541:22;:47::i;:::-;110364:231:::0;;;;;:::o;107038:427::-;107111:13;107144:16;107152:7;107144;:16::i;:::-;107136:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;107224:14;107251:1;107241:7;:11;;;;:::i;:::-;107224:28;;107268:10;;;;;;;;;;;107264:66;;107300:19;107293:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107264:66;107383:1;107360:12;107354:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;107411:12;107425:17;:6;:15;:17::i;:::-;107394:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;107354:104;107347:111;;;107038:427;;;;:::o;105110:31::-;;;;:::o;108256:87::-;51822:13;:11;:13::i;:::-;108326:10:::1;;;;;;;;;;;108325:11;108312:10;;:24;;;;;;;;;;;;;;;;;;108256:87::o:0;80147:164::-;80244:4;80268:18;:25;80287:5;80268:25;;;;;;;;;;;;;;;:35;80294:8;80268:35;;;;;;;;;;;;;;;;;;;;;;;;;80261:42;;80147:164;;;;:::o;52842:201::-;51822:13;:11;:13::i;:::-;52951:1:::1;52931:22;;:8;:22;;::::0;52923:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;53007:28;53026:8;53007:18;:28::i;:::-;52842:201:::0;:::o;105183:22::-;;;;;;;;;;;;;:::o;109302:317::-;109372:4;109422:25;109407:40;;;:11;:40;;;;:97;;;;109478:26;109463:41;;;:11;:41;;;;109407:97;:153;;;;109535:25;109520:40;;;:11;:40;;;;109407:153;:205;;;;109576:36;109600:11;109576:23;:36::i;:::-;109407:205;109388:224;;109302:317;;;:::o;52101:132::-;52176:12;:10;:12::i;:::-;52165:23;;:7;:5;:7::i;:::-;:23;;;52157:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52101:132::o;80569:282::-;80634:4;80690:7;80671:15;:13;:15::i;:::-;:26;;:66;;;;;80724:13;;80714:7;:23;80671:66;:153;;;;;80823:1;64577:8;80775:17;:26;80793:7;80775:26;;;;;;;;;;;;:44;:49;80671:153;80651:173;;80569:282;;;:::o;31900:647::-;32139:1;22391:42;32091:45;;;:49;32087:453;;;22391:42;32390;;;32441:4;32448:8;32390:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32385:144;;32504:8;32485:28;;;;;;;;;;;:::i;:::-;;;;;;;;32385:144;32087:453;31900:647;:::o;78631:408::-;78720:13;78736:16;78744:7;78736;:16::i;:::-;78720:32;;78792:5;78769:28;;:19;:17;:19::i;:::-;:28;;;78765:175;;78817:44;78834:5;78841:19;:17;:19::i;:::-;78817:16;:44::i;:::-;78812:128;;78889:35;;;;;;;;;;;;;;78812:128;78765:175;78985:2;78952:15;:24;78968:7;78952:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;79023:7;79019:2;79003:28;;79012:5;79003:28;;;;;;;;;;;;78709:330;78631:408;;:::o;67974:92::-;68030:7;67974:92;:::o;82837:2825::-;82979:27;83009;83028:7;83009:18;:27::i;:::-;82979:57;;83094:4;83053:45;;83069:19;83053:45;;;83049:86;;83107:28;;;;;;;;;;;;;;83049:86;83149:27;83178:23;83205:35;83232:7;83205:26;:35::i;:::-;83148:92;;;;83340:68;83365:15;83382:4;83388:19;:17;:19::i;:::-;83340:24;:68::i;:::-;83335:180;;83428:43;83445:4;83451:19;:17;:19::i;:::-;83428:16;:43::i;:::-;83423:92;;83480:35;;;;;;;;;;;;;;83423:92;83335:180;83546:1;83532:16;;:2;:16;;;83528:52;;83557:23;;;;;;;;;;;;;;83528:52;83593:43;83615:4;83621:2;83625:7;83634:1;83593:21;:43::i;:::-;83729:15;83726:160;;;83869:1;83848:19;83841:30;83726:160;84266:18;:24;84285:4;84266:24;;;;;;;;;;;;;;;;84264:26;;;;;;;;;;;;84335:18;:22;84354:2;84335:22;;;;;;;;;;;;;;;;84333:24;;;;;;;;;;;84657:146;84694:2;84743:45;84758:4;84764:2;84768:19;84743:14;:45::i;:::-;64857:8;84715:73;84657:18;:146::i;:::-;84628:17;:26;84646:7;84628:26;;;;;;;;;;;:175;;;;84974:1;64857:8;84923:19;:47;:52;84919:627;;84996:19;85028:1;85018:7;:11;84996:33;;85185:1;85151:17;:30;85169:11;85151:30;;;;;;;;;;;;:35;85147:384;;85289:13;;85274:11;:28;85270:242;;85469:19;85436:17;:30;85454:11;85436:30;;;;;;;;;;;:52;;;;85270:242;85147:384;84977:569;84919:627;85593:7;85589:2;85574:27;;85583:4;85574:27;;;;;;;;;;;;85612:42;85633:4;85639:2;85643:7;85652:1;85612:20;:42::i;:::-;82968:2694;;;82837:2825;;;:::o;41469:190::-;41594:4;41647;41618:25;41631:5;41638:4;41618:12;:25::i;:::-;:33;41611:40;;41469:190;;;;;:::o;90218:2966::-;90291:20;90314:13;;90291:36;;90354:1;90342:8;:13;90338:44;;90364:18;;;;;;;;;;;;;;90338:44;90395:61;90425:1;90429:2;90433:12;90447:8;90395:21;:61::i;:::-;90939:1;63939:2;90909:1;:26;;90908:32;90896:8;:45;90870:18;:22;90889:2;90870:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;91218:139;91255:2;91309:33;91332:1;91336:2;91340:1;91309:14;:33::i;:::-;91276:30;91297:8;91276:20;:30::i;:::-;:66;91218:18;:139::i;:::-;91184:17;:31;91202:12;91184:31;;;;;;;;;;;:173;;;;91374:16;91405:11;91434:8;91419:12;:23;91405:37;;91955:16;91951:2;91947:25;91935:37;;92327:12;92287:8;92246:1;92184:25;92125:1;92064;92037:335;92698:1;92684:12;92680:20;92638:346;92739:3;92730:7;92727:16;92638:346;;92957:7;92947:8;92944:1;92917:25;92914:1;92911;92906:59;92792:1;92783:7;92779:15;92768:26;;92638:346;;;92642:77;93029:1;93017:8;:13;93013:45;;93039:19;;;;;;;;;;;;;;93013:45;93091:3;93075:13;:19;;;;90644:2462;;93116:60;93145:1;93149:2;93153:12;93167:8;93116:20;:60::i;:::-;90280:2904;90218:2966;;:::o;18813:98::-;18871:7;18902:1;18898;:5;;;;:::i;:::-;18891:12;;18813:98;;;;:::o;19212:::-;19270:7;19301:1;19297;:5;;;;:::i;:::-;19290:12;;19212:98;;;;:::o;96709:112::-;96786:27;96796:2;96800:8;96786:27;;;;;;;;;;;;:9;:27::i;:::-;96709:112;;:::o;85758:193::-;85904:39;85921:4;85927:2;85931:7;85904:39;;;;;;;;;;;;:16;:39::i;:::-;85758:193;;;:::o;75255:1275::-;75322:7;75342:12;75357:7;75342:22;;75425:4;75406:15;:13;:15::i;:::-;:23;75402:1061;;75459:13;;75452:4;:20;75448:1015;;;75497:14;75514:17;:23;75532:4;75514:23;;;;;;;;;;;;75497:40;;75631:1;64577:8;75603:6;:24;:29;75599:845;;76268:113;76285:1;76275:6;:11;76268:113;;76328:17;:25;76346:6;;;;;;;76328:25;;;;;;;;;;;;76319:34;;76268:113;;;76414:6;76407:13;;;;;;75599:845;75474:989;75448:1015;75402:1061;76491:31;;;;;;;;;;;;;;75255:1275;;;;:::o;53203:191::-;53277:16;53296:6;;;;;;;;;;;53277:25;;53322:8;53313:6;;:17;;;;;;;;;;;;;;;;;;53377:8;53346:40;;53367:8;53346:40;;;;;;;;;;;;53266:128;53203:191;:::o;79756:234::-;79903:8;79851:18;:39;79870:19;:17;:19::i;:::-;79851:39;;;;;;;;;;;;;;;:49;79891:8;79851:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;79963:8;79927:55;;79942:19;:17;:19::i;:::-;79927:55;;;79973:8;79927:55;;;;;;:::i;:::-;;;;;;;;79756:234;;:::o;86549:407::-;86724:31;86737:4;86743:2;86747:7;86724:12;:31::i;:::-;86788:1;86770:2;:14;;;:19;86766:183;;86809:56;86840:4;86846:2;86850:7;86859:5;86809:30;:56::i;:::-;86804:145;;86893:40;;;;;;;;;;;;;;86804:145;86766:183;86549:407;;;;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;71805:639::-;71890:4;72229:10;72214:25;;:11;:25;;;;:102;;;;72306:10;72291:25;;:11;:25;;;;72214:102;:179;;;;72383:10;72368:25;;:11;:25;;;;72214:179;72194:199;;71805:639;;;:::o;50487:98::-;50540:7;50567:10;50560:17;;50487:98;:::o;102877:105::-;102937:7;102964:10;102957:17;;102877:105;:::o;81732:485::-;81834:27;81863:23;81904:38;81945:15;:24;81961:7;81945:24;;;;;;;;;;;81904:65;;82122:18;82099:41;;82179:19;82173:26;82154:45;;82084:126;81732:485;;;:::o;80960:659::-;81109:11;81274:16;81267:5;81263:28;81254:37;;81434:16;81423:9;81419:32;81406:45;;81584:15;81573:9;81570:30;81562:5;81551:9;81548:20;81545:56;81535:66;;80960:659;;;;;:::o;87618:159::-;;;;;:::o;102186:311::-;102321:7;102341:16;64981:3;102367:19;:41;;102341:68;;64981:3;102435:31;102446:4;102452:2;102456:9;102435:10;:31::i;:::-;102427:40;;:62;;102420:69;;;102186:311;;;;;:::o;77078:450::-;77158:14;77326:16;77319:5;77315:28;77306:37;;77503:5;77489:11;77464:23;77460:41;77457:52;77450:5;77447:63;77437:73;;77078:450;;;;:::o;88442:158::-;;;;;:::o;42336:296::-;42419:7;42439:20;42462:4;42439:27;;42482:9;42477:118;42501:5;:12;42497:1;:16;42477:118;;;42550:33;42560:12;42574:5;42580:1;42574:8;;;;;;;;:::i;:::-;;;;;;;;42550:9;:33::i;:::-;42535:48;;42515:3;;;;;:::i;:::-;;;;42477:118;;;;42612:12;42605:19;;;42336:296;;;;:::o;77630:324::-;77700:14;77933:1;77923:8;77920:15;77894:24;77890:46;77880:56;;77630:324;;;:::o;95936:689::-;96067:19;96073:2;96077:8;96067:5;:19::i;:::-;96146:1;96128:2;:14;;;:19;96124:483;;96168:11;96182:13;;96168:27;;96214:13;96236:8;96230:3;:14;96214:30;;96263:233;96294:62;96333:1;96337:2;96341:7;;;;;;96350:5;96294:30;:62::i;:::-;96289:167;;96392:40;;;;;;;;;;;;;;96289:167;96491:3;96483:5;:11;96263:233;;96578:3;96561:13;;:20;96557:34;;96583:8;;;96557:34;96149:458;;96124:483;95936:689;;;:::o;89040:716::-;89203:4;89249:2;89224:45;;;89270:19;:17;:19::i;:::-;89291:4;89297:7;89306:5;89224:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;89220:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89524:1;89507:6;:13;:18;89503:235;;89553:40;;;;;;;;;;;;;;89503:235;89696:6;89690:13;89681:6;89677:2;89673:15;89666:38;89220:529;89393:54;;;89383:64;;;:6;:64;;;;89376:71;;;89040:716;;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;101887:147::-;102024:6;101887:147;;;;;:::o;49376:149::-;49439:7;49470:1;49466;:5;:51;;49497:20;49512:1;49515;49497:14;:20::i;:::-;49466:51;;;49474:20;49489:1;49492;49474:14;:20::i;:::-;49466:51;49459:58;;49376:149;;;;:::o;49533:268::-;49601:13;49708:1;49702:4;49695:15;49737:1;49731:4;49724:15;49778:4;49772;49762:21;49753:30;;49533:268;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:126::-;1990:7;2030:42;2023:5;2019:54;2008:65;;1953:126;;;:::o;2085:96::-;2122:7;2151:24;2169:5;2151:24;:::i;:::-;2140:35;;2085:96;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:329::-;2519:6;2568:2;2556:9;2547:7;2543:23;2539:32;2536:119;;;2574:79;;:::i;:::-;2536:119;2694:1;2719:53;2764:7;2755:6;2744:9;2740:22;2719:53;:::i;:::-;2709:63;;2665:117;2460:329;;;;:::o;2795:117::-;2904:1;2901;2894:12;2918:117;3027:1;3024;3017:12;3041:117;3150:1;3147;3140:12;3178:553;3236:8;3246:6;3296:3;3289:4;3281:6;3277:17;3273:27;3263:122;;3304:79;;:::i;:::-;3263:122;3417:6;3404:20;3394:30;;3447:18;3439:6;3436:30;3433:117;;;3469:79;;:::i;:::-;3433:117;3583:4;3575:6;3571:17;3559:29;;3637:3;3629:4;3621:6;3617:17;3607:8;3603:32;3600:41;3597:128;;;3644:79;;:::i;:::-;3597:128;3178:553;;;;;:::o;3737:529::-;3808:6;3816;3865:2;3853:9;3844:7;3840:23;3836:32;3833:119;;;3871:79;;:::i;:::-;3833:119;4019:1;4008:9;4004:17;3991:31;4049:18;4041:6;4038:30;4035:117;;;4071:79;;:::i;:::-;4035:117;4184:65;4241:7;4232:6;4221:9;4217:22;4184:65;:::i;:::-;4166:83;;;;3962:297;3737:529;;;;;:::o;4272:99::-;4324:6;4358:5;4352:12;4342:22;;4272:99;;;:::o;4377:169::-;4461:11;4495:6;4490:3;4483:19;4535:4;4530:3;4526:14;4511:29;;4377:169;;;;:::o;4552:246::-;4633:1;4643:113;4657:6;4654:1;4651:13;4643:113;;;4742:1;4737:3;4733:11;4727:18;4723:1;4718:3;4714:11;4707:39;4679:2;4676:1;4672:10;4667:15;;4643:113;;;4790:1;4781:6;4776:3;4772:16;4765:27;4614:184;4552:246;;;:::o;4804:102::-;4845:6;4896:2;4892:7;4887:2;4880:5;4876:14;4872:28;4862:38;;4804:102;;;:::o;4912:377::-;5000:3;5028:39;5061:5;5028:39;:::i;:::-;5083:71;5147:6;5142:3;5083:71;:::i;:::-;5076:78;;5163:65;5221:6;5216:3;5209:4;5202:5;5198:16;5163:65;:::i;:::-;5253:29;5275:6;5253:29;:::i;:::-;5248:3;5244:39;5237:46;;5004:285;4912:377;;;;:::o;5295:313::-;5408:4;5446:2;5435:9;5431:18;5423:26;;5495:9;5489:4;5485:20;5481:1;5470:9;5466:17;5459:47;5523:78;5596:4;5587:6;5523:78;:::i;:::-;5515:86;;5295:313;;;;:::o;5614:122::-;5687:24;5705:5;5687:24;:::i;:::-;5680:5;5677:35;5667:63;;5726:1;5723;5716:12;5667:63;5614:122;:::o;5742:139::-;5788:5;5826:6;5813:20;5804:29;;5842:33;5869:5;5842:33;:::i;:::-;5742:139;;;;:::o;5887:329::-;5946:6;5995:2;5983:9;5974:7;5970:23;5966:32;5963:119;;;6001:79;;:::i;:::-;5963:119;6121:1;6146:53;6191:7;6182:6;6171:9;6167:22;6146:53;:::i;:::-;6136:63;;6092:117;5887:329;;;;:::o;6222:118::-;6309:24;6327:5;6309:24;:::i;:::-;6304:3;6297:37;6222:118;;:::o;6346:222::-;6439:4;6477:2;6466:9;6462:18;6454:26;;6490:71;6558:1;6547:9;6543:17;6534:6;6490:71;:::i;:::-;6346:222;;;;:::o;6574:474::-;6642:6;6650;6699:2;6687:9;6678:7;6674:23;6670:32;6667:119;;;6705:79;;:::i;:::-;6667:119;6825:1;6850:53;6895:7;6886:6;6875:9;6871:22;6850:53;:::i;:::-;6840:63;;6796:117;6952:2;6978:53;7023:7;7014:6;7003:9;6999:22;6978:53;:::i;:::-;6968:63;;6923:118;6574:474;;;;;:::o;7054:619::-;7131:6;7139;7147;7196:2;7184:9;7175:7;7171:23;7167:32;7164:119;;;7202:79;;:::i;:::-;7164:119;7322:1;7347:53;7392:7;7383:6;7372:9;7368:22;7347:53;:::i;:::-;7337:63;;7293:117;7449:2;7475:53;7520:7;7511:6;7500:9;7496:22;7475:53;:::i;:::-;7465:63;;7420:118;7577:2;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7548:118;7054:619;;;;;:::o;7679:180::-;7727:77;7724:1;7717:88;7824:4;7821:1;7814:15;7848:4;7845:1;7838:15;7865:281;7948:27;7970:4;7948:27;:::i;:::-;7940:6;7936:40;8078:6;8066:10;8063:22;8042:18;8030:10;8027:34;8024:62;8021:88;;;8089:18;;:::i;:::-;8021:88;8129:10;8125:2;8118:22;7908:238;7865:281;;:::o;8152:129::-;8186:6;8213:20;;:::i;:::-;8203:30;;8242:33;8270:4;8262:6;8242:33;:::i;:::-;8152:129;;;:::o;8287:311::-;8364:4;8454:18;8446:6;8443:30;8440:56;;;8476:18;;:::i;:::-;8440:56;8526:4;8518:6;8514:17;8506:25;;8586:4;8580;8576:15;8568:23;;8287:311;;;:::o;8604:77::-;8641:7;8670:5;8659:16;;8604:77;;;:::o;8687:122::-;8760:24;8778:5;8760:24;:::i;:::-;8753:5;8750:35;8740:63;;8799:1;8796;8789:12;8740:63;8687:122;:::o;8815:139::-;8861:5;8899:6;8886:20;8877:29;;8915:33;8942:5;8915:33;:::i;:::-;8815:139;;;;:::o;8977:710::-;9073:5;9098:81;9114:64;9171:6;9114:64;:::i;:::-;9098:81;:::i;:::-;9089:90;;9199:5;9228:6;9221:5;9214:21;9262:4;9255:5;9251:16;9244:23;;9315:4;9307:6;9303:17;9295:6;9291:30;9344:3;9336:6;9333:15;9330:122;;;9363:79;;:::i;:::-;9330:122;9478:6;9461:220;9495:6;9490:3;9487:15;9461:220;;;9570:3;9599:37;9632:3;9620:10;9599:37;:::i;:::-;9594:3;9587:50;9666:4;9661:3;9657:14;9650:21;;9537:144;9521:4;9516:3;9512:14;9505:21;;9461:220;;;9465:21;9079:608;;8977:710;;;;;:::o;9710:370::-;9781:5;9830:3;9823:4;9815:6;9811:17;9807:27;9797:122;;9838:79;;:::i;:::-;9797:122;9955:6;9942:20;9980:94;10070:3;10062:6;10055:4;10047:6;10043:17;9980:94;:::i;:::-;9971:103;;9787:293;9710:370;;;;:::o;10086:684::-;10179:6;10187;10236:2;10224:9;10215:7;10211:23;10207:32;10204:119;;;10242:79;;:::i;:::-;10204:119;10390:1;10379:9;10375:17;10362:31;10420:18;10412:6;10409:30;10406:117;;;10442:79;;:::i;:::-;10406:117;10547:78;10617:7;10608:6;10597:9;10593:22;10547:78;:::i;:::-;10537:88;;10333:302;10674:2;10700:53;10745:7;10736:6;10725:9;10721:22;10700:53;:::i;:::-;10690:63;;10645:118;10086:684;;;;;:::o;10776:474::-;10844:6;10852;10901:2;10889:9;10880:7;10876:23;10872:32;10869:119;;;10907:79;;:::i;:::-;10869:119;11027:1;11052:53;11097:7;11088:6;11077:9;11073:22;11052:53;:::i;:::-;11042:63;;10998:117;11154:2;11180:53;11225:7;11216:6;11205:9;11201:22;11180:53;:::i;:::-;11170:63;;11125:118;10776:474;;;;;:::o;11256:332::-;11377:4;11415:2;11404:9;11400:18;11392:26;;11428:71;11496:1;11485:9;11481:17;11472:6;11428:71;:::i;:::-;11509:72;11577:2;11566:9;11562:18;11553:6;11509:72;:::i;:::-;11256:332;;;;;:::o;11594:60::-;11622:3;11643:5;11636:12;;11594:60;;;:::o;11660:142::-;11710:9;11743:53;11761:34;11770:24;11788:5;11770:24;:::i;:::-;11761:34;:::i;:::-;11743:53;:::i;:::-;11730:66;;11660:142;;;:::o;11808:126::-;11858:9;11891:37;11922:5;11891:37;:::i;:::-;11878:50;;11808:126;;;:::o;11940:158::-;12022:9;12055:37;12086:5;12055:37;:::i;:::-;12042:50;;11940:158;;;:::o;12104:195::-;12223:69;12286:5;12223:69;:::i;:::-;12218:3;12211:82;12104:195;;:::o;12305:286::-;12430:4;12468:2;12457:9;12453:18;12445:26;;12481:103;12581:1;12570:9;12566:17;12557:6;12481:103;:::i;:::-;12305:286;;;;:::o;12597:118::-;12684:24;12702:5;12684:24;:::i;:::-;12679:3;12672:37;12597:118;;:::o;12721:222::-;12814:4;12852:2;12841:9;12837:18;12829:26;;12865:71;12933:1;12922:9;12918:17;12909:6;12865:71;:::i;:::-;12721:222;;;;:::o;12949:329::-;13008:6;13057:2;13045:9;13036:7;13032:23;13028:32;13025:119;;;13063:79;;:::i;:::-;13025:119;13183:1;13208:53;13253:7;13244:6;13233:9;13229:22;13208:53;:::i;:::-;13198:63;;13154:117;12949:329;;;;:::o;13284:116::-;13354:21;13369:5;13354:21;:::i;:::-;13347:5;13344:32;13334:60;;13390:1;13387;13380:12;13334:60;13284:116;:::o;13406:133::-;13449:5;13487:6;13474:20;13465:29;;13503:30;13527:5;13503:30;:::i;:::-;13406:133;;;;:::o;13545:468::-;13610:6;13618;13667:2;13655:9;13646:7;13642:23;13638:32;13635:119;;;13673:79;;:::i;:::-;13635:119;13793:1;13818:53;13863:7;13854:6;13843:9;13839:22;13818:53;:::i;:::-;13808:63;;13764:117;13920:2;13946:50;13988:7;13979:6;13968:9;13964:22;13946:50;:::i;:::-;13936:60;;13891:115;13545:468;;;;;:::o;14019:117::-;14128:1;14125;14118:12;14142:307;14203:4;14293:18;14285:6;14282:30;14279:56;;;14315:18;;:::i;:::-;14279:56;14353:29;14375:6;14353:29;:::i;:::-;14345:37;;14437:4;14431;14427:15;14419:23;;14142:307;;;:::o;14455:146::-;14552:6;14547:3;14542;14529:30;14593:1;14584:6;14579:3;14575:16;14568:27;14455:146;;;:::o;14607:423::-;14684:5;14709:65;14725:48;14766:6;14725:48;:::i;:::-;14709:65;:::i;:::-;14700:74;;14797:6;14790:5;14783:21;14835:4;14828:5;14824:16;14873:3;14864:6;14859:3;14855:16;14852:25;14849:112;;;14880:79;;:::i;:::-;14849:112;14970:54;15017:6;15012:3;15007;14970:54;:::i;:::-;14690:340;14607:423;;;;;:::o;15049:338::-;15104:5;15153:3;15146:4;15138:6;15134:17;15130:27;15120:122;;15161:79;;:::i;:::-;15120:122;15278:6;15265:20;15303:78;15377:3;15369:6;15362:4;15354:6;15350:17;15303:78;:::i;:::-;15294:87;;15110:277;15049:338;;;;:::o;15393:943::-;15488:6;15496;15504;15512;15561:3;15549:9;15540:7;15536:23;15532:33;15529:120;;;15568:79;;:::i;:::-;15529:120;15688:1;15713:53;15758:7;15749:6;15738:9;15734:22;15713:53;:::i;:::-;15703:63;;15659:117;15815:2;15841:53;15886:7;15877:6;15866:9;15862:22;15841:53;:::i;:::-;15831:63;;15786:118;15943:2;15969:53;16014:7;16005:6;15994:9;15990:22;15969:53;:::i;:::-;15959:63;;15914:118;16099:2;16088:9;16084:18;16071:32;16130:18;16122:6;16119:30;16116:117;;;16152:79;;:::i;:::-;16116:117;16257:62;16311:7;16302:6;16291:9;16287:22;16257:62;:::i;:::-;16247:72;;16042:287;15393:943;;;;;;;:::o;16342:474::-;16410:6;16418;16467:2;16455:9;16446:7;16442:23;16438:32;16435:119;;;16473:79;;:::i;:::-;16435:119;16593:1;16618:53;16663:7;16654:6;16643:9;16639:22;16618:53;:::i;:::-;16608:63;;16564:117;16720:2;16746:53;16791:7;16782:6;16771:9;16767:22;16746:53;:::i;:::-;16736:63;;16691:118;16342:474;;;;;:::o;16822:97::-;16881:6;16909:3;16899:13;;16822:97;;;;:::o;16925:180::-;16973:77;16970:1;16963:88;17070:4;17067:1;17060:15;17094:4;17091:1;17084:15;17111:320;17155:6;17192:1;17186:4;17182:12;17172:22;;17239:1;17233:4;17229:12;17260:18;17250:81;;17316:4;17308:6;17304:17;17294:27;;17250:81;17378:2;17370:6;17367:14;17347:18;17344:38;17341:84;;17397:18;;:::i;:::-;17341:84;17162:269;17111:320;;;:::o;17437:141::-;17486:4;17509:3;17501:11;;17532:3;17529:1;17522:14;17566:4;17563:1;17553:18;17545:26;;17437:141;;;:::o;17584:93::-;17621:6;17668:2;17663;17656:5;17652:14;17648:23;17638:33;;17584:93;;;:::o;17683:107::-;17727:8;17777:5;17771:4;17767:16;17746:37;;17683:107;;;;:::o;17796:393::-;17865:6;17915:1;17903:10;17899:18;17938:97;17968:66;17957:9;17938:97;:::i;:::-;18056:39;18086:8;18075:9;18056:39;:::i;:::-;18044:51;;18128:4;18124:9;18117:5;18113:21;18104:30;;18177:4;18167:8;18163:19;18156:5;18153:30;18143:40;;17872:317;;17796:393;;;;;:::o;18195:142::-;18245:9;18278:53;18296:34;18305:24;18323:5;18305:24;:::i;:::-;18296:34;:::i;:::-;18278:53;:::i;:::-;18265:66;;18195:142;;;:::o;18343:75::-;18386:3;18407:5;18400:12;;18343:75;;;:::o;18424:269::-;18534:39;18565:7;18534:39;:::i;:::-;18595:91;18644:41;18668:16;18644:41;:::i;:::-;18636:6;18629:4;18623:11;18595:91;:::i;:::-;18589:4;18582:105;18500:193;18424:269;;;:::o;18699:73::-;18744:3;18699:73;:::o;18778:189::-;18855:32;;:::i;:::-;18896:65;18954:6;18946;18940:4;18896:65;:::i;:::-;18831:136;18778:189;;:::o;18973:186::-;19033:120;19050:3;19043:5;19040:14;19033:120;;;19104:39;19141:1;19134:5;19104:39;:::i;:::-;19077:1;19070:5;19066:13;19057:22;;19033:120;;;18973:186;;:::o;19165:543::-;19266:2;19261:3;19258:11;19255:446;;;19300:38;19332:5;19300:38;:::i;:::-;19384:29;19402:10;19384:29;:::i;:::-;19374:8;19370:44;19567:2;19555:10;19552:18;19549:49;;;19588:8;19573:23;;19549:49;19611:80;19667:22;19685:3;19667:22;:::i;:::-;19657:8;19653:37;19640:11;19611:80;:::i;:::-;19270:431;;19255:446;19165:543;;;:::o;19714:117::-;19768:8;19818:5;19812:4;19808:16;19787:37;;19714:117;;;;:::o;19837:169::-;19881:6;19914:51;19962:1;19958:6;19950:5;19947:1;19943:13;19914:51;:::i;:::-;19910:56;19995:4;19989;19985:15;19975:25;;19888:118;19837:169;;;;:::o;20011:295::-;20087:4;20233:29;20258:3;20252:4;20233:29;:::i;:::-;20225:37;;20295:3;20292:1;20288:11;20282:4;20279:21;20271:29;;20011:295;;;;:::o;20311:1403::-;20435:44;20475:3;20470;20435:44;:::i;:::-;20544:18;20536:6;20533:30;20530:56;;;20566:18;;:::i;:::-;20530:56;20610:38;20642:4;20636:11;20610:38;:::i;:::-;20695:67;20755:6;20747;20741:4;20695:67;:::i;:::-;20789:1;20818:2;20810:6;20807:14;20835:1;20830:632;;;;21506:1;21523:6;21520:84;;;21579:9;21574:3;21570:19;21557:33;21548:42;;21520:84;21630:67;21690:6;21683:5;21630:67;:::i;:::-;21624:4;21617:81;21479:229;20800:908;;20830:632;20882:4;20878:9;20870:6;20866:22;20916:37;20948:4;20916:37;:::i;:::-;20975:1;20989:215;21003:7;21000:1;20997:14;20989:215;;;21089:9;21084:3;21080:19;21067:33;21059:6;21052:49;21140:1;21132:6;21128:14;21118:24;;21187:2;21176:9;21172:18;21159:31;;21026:4;21023:1;21019:12;21014:17;;20989:215;;;21232:6;21223:7;21220:19;21217:186;;;21297:9;21292:3;21288:19;21275:33;21340:48;21382:4;21374:6;21370:17;21359:9;21340:48;:::i;:::-;21332:6;21325:64;21240:163;21217:186;21449:1;21445;21437:6;21433:14;21429:22;21423:4;21416:36;20837:625;;;20800:908;;20410:1304;;;20311:1403;;;:::o;21720:227::-;21860:34;21856:1;21848:6;21844:14;21837:58;21929:10;21924:2;21916:6;21912:15;21905:35;21720:227;:::o;21953:366::-;22095:3;22116:67;22180:2;22175:3;22116:67;:::i;:::-;22109:74;;22192:93;22281:3;22192:93;:::i;:::-;22310:2;22305:3;22301:12;22294:19;;21953:366;;;:::o;22325:419::-;22491:4;22529:2;22518:9;22514:18;22506:26;;22578:9;22572:4;22568:20;22564:1;22553:9;22549:17;22542:47;22606:131;22732:4;22606:131;:::i;:::-;22598:139;;22325:419;;;:::o;22750:179::-;22890:31;22886:1;22878:6;22874:14;22867:55;22750:179;:::o;22935:366::-;23077:3;23098:67;23162:2;23157:3;23098:67;:::i;:::-;23091:74;;23174:93;23263:3;23174:93;:::i;:::-;23292:2;23287:3;23283:12;23276:19;;22935:366;;;:::o;23307:419::-;23473:4;23511:2;23500:9;23496:18;23488:26;;23560:9;23554:4;23550:20;23546:1;23535:9;23531:17;23524:47;23588:131;23714:4;23588:131;:::i;:::-;23580:139;;23307:419;;;:::o;23732:180::-;23780:77;23777:1;23770:88;23877:4;23874:1;23867:15;23901:4;23898:1;23891:15;23918:191;23958:3;23977:20;23995:1;23977:20;:::i;:::-;23972:25;;24011:20;24029:1;24011:20;:::i;:::-;24006:25;;24054:1;24051;24047:9;24040:16;;24075:3;24072:1;24069:10;24066:36;;;24082:18;;:::i;:::-;24066:36;23918:191;;;;:::o;24115:174::-;24255:26;24251:1;24243:6;24239:14;24232:50;24115:174;:::o;24295:366::-;24437:3;24458:67;24522:2;24517:3;24458:67;:::i;:::-;24451:74;;24534:93;24623:3;24534:93;:::i;:::-;24652:2;24647:3;24643:12;24636:19;;24295:366;;;:::o;24667:419::-;24833:4;24871:2;24860:9;24856:18;24848:26;;24920:9;24914:4;24910:20;24906:1;24895:9;24891:17;24884:47;24948:131;25074:4;24948:131;:::i;:::-;24940:139;;24667:419;;;:::o;25092:175::-;25232:27;25228:1;25220:6;25216:14;25209:51;25092:175;:::o;25273:366::-;25415:3;25436:67;25500:2;25495:3;25436:67;:::i;:::-;25429:74;;25512:93;25601:3;25512:93;:::i;:::-;25630:2;25625:3;25621:12;25614:19;;25273:366;;;:::o;25645:419::-;25811:4;25849:2;25838:9;25834:18;25826:26;;25898:9;25892:4;25888:20;25884:1;25873:9;25869:17;25862:47;25926:131;26052:4;25926:131;:::i;:::-;25918:139;;25645:419;;;:::o;26070:94::-;26103:8;26151:5;26147:2;26143:14;26122:35;;26070:94;;;:::o;26170:::-;26209:7;26238:20;26252:5;26238:20;:::i;:::-;26227:31;;26170:94;;;:::o;26270:100::-;26309:7;26338:26;26358:5;26338:26;:::i;:::-;26327:37;;26270:100;;;:::o;26376:157::-;26481:45;26501:24;26519:5;26501:24;:::i;:::-;26481:45;:::i;:::-;26476:3;26469:58;26376:157;;:::o;26539:256::-;26651:3;26666:75;26737:3;26728:6;26666:75;:::i;:::-;26766:2;26761:3;26757:12;26750:19;;26786:3;26779:10;;26539:256;;;;:::o;26801:220::-;26941:34;26937:1;26929:6;26925:14;26918:58;27010:3;27005:2;26997:6;26993:15;26986:28;26801:220;:::o;27027:366::-;27169:3;27190:67;27254:2;27249:3;27190:67;:::i;:::-;27183:74;;27266:93;27355:3;27266:93;:::i;:::-;27384:2;27379:3;27375:12;27368:19;;27027:366;;;:::o;27399:419::-;27565:4;27603:2;27592:9;27588:18;27580:26;;27652:9;27646:4;27642:20;27638:1;27627:9;27623:17;27616:47;27680:131;27806:4;27680:131;:::i;:::-;27672:139;;27399:419;;;:::o;27824:175::-;27964:27;27960:1;27952:6;27948:14;27941:51;27824:175;:::o;28005:366::-;28147:3;28168:67;28232:2;28227:3;28168:67;:::i;:::-;28161:74;;28244:93;28333:3;28244:93;:::i;:::-;28362:2;28357:3;28353:12;28346:19;;28005:366;;;:::o;28377:419::-;28543:4;28581:2;28570:9;28566:18;28558:26;;28630:9;28624:4;28620:20;28616:1;28605:9;28601:17;28594:47;28658:131;28784:4;28658:131;:::i;:::-;28650:139;;28377:419;;;:::o;28802:251::-;28942:34;28938:1;28930:6;28926:14;28919:58;29011:34;29006:2;28998:6;28994:15;28987:59;28802:251;:::o;29059:366::-;29201:3;29222:67;29286:2;29281:3;29222:67;:::i;:::-;29215:74;;29298:93;29387:3;29298:93;:::i;:::-;29416:2;29411:3;29407:12;29400:19;;29059:366;;;:::o;29431:419::-;29597:4;29635:2;29624:9;29620:18;29612:26;;29684:9;29678:4;29674:20;29670:1;29659:9;29655:17;29648:47;29712:131;29838:4;29712:131;:::i;:::-;29704:139;;29431:419;;;:::o;29856:234::-;29996:34;29992:1;29984:6;29980:14;29973:58;30065:17;30060:2;30052:6;30048:15;30041:42;29856:234;:::o;30096:366::-;30238:3;30259:67;30323:2;30318:3;30259:67;:::i;:::-;30252:74;;30335:93;30424:3;30335:93;:::i;:::-;30453:2;30448:3;30444:12;30437:19;;30096:366;;;:::o;30468:419::-;30634:4;30672:2;30661:9;30657:18;30649:26;;30721:9;30715:4;30711:20;30707:1;30696:9;30692:17;30685:47;30749:131;30875:4;30749:131;:::i;:::-;30741:139;;30468:419;;;:::o;30893:148::-;30995:11;31032:3;31017:18;;30893:148;;;;:::o;31071:874::-;31174:3;31211:5;31205:12;31240:36;31266:9;31240:36;:::i;:::-;31292:89;31374:6;31369:3;31292:89;:::i;:::-;31285:96;;31412:1;31401:9;31397:17;31428:1;31423:166;;;;31603:1;31598:341;;;;31390:549;;31423:166;31507:4;31503:9;31492;31488:25;31483:3;31476:38;31569:6;31562:14;31555:22;31547:6;31543:35;31538:3;31534:45;31527:52;;31423:166;;31598:341;31665:38;31697:5;31665:38;:::i;:::-;31725:1;31739:154;31753:6;31750:1;31747:13;31739:154;;;31827:7;31821:14;31817:1;31812:3;31808:11;31801:35;31877:1;31868:7;31864:15;31853:26;;31775:4;31772:1;31768:12;31763:17;;31739:154;;;31922:6;31917:3;31913:16;31906:23;;31605:334;;31390:549;;31178:767;;31071:874;;;;:::o;31951:390::-;32057:3;32085:39;32118:5;32085:39;:::i;:::-;32140:89;32222:6;32217:3;32140:89;:::i;:::-;32133:96;;32238:65;32296:6;32291:3;32284:4;32277:5;32273:16;32238:65;:::i;:::-;32328:6;32323:3;32319:16;32312:23;;32061:280;31951:390;;;;:::o;32347:155::-;32487:7;32483:1;32475:6;32471:14;32464:31;32347:155;:::o;32508:400::-;32668:3;32689:84;32771:1;32766:3;32689:84;:::i;:::-;32682:91;;32782:93;32871:3;32782:93;:::i;:::-;32900:1;32895:3;32891:11;32884:18;;32508:400;;;:::o;32914:695::-;33192:3;33214:92;33302:3;33293:6;33214:92;:::i;:::-;33207:99;;33323:95;33414:3;33405:6;33323:95;:::i;:::-;33316:102;;33435:148;33579:3;33435:148;:::i;:::-;33428:155;;33600:3;33593:10;;32914:695;;;;;:::o;33615:225::-;33755:34;33751:1;33743:6;33739:14;33732:58;33824:8;33819:2;33811:6;33807:15;33800:33;33615:225;:::o;33846:366::-;33988:3;34009:67;34073:2;34068:3;34009:67;:::i;:::-;34002:74;;34085:93;34174:3;34085:93;:::i;:::-;34203:2;34198:3;34194:12;34187:19;;33846:366;;;:::o;34218:419::-;34384:4;34422:2;34411:9;34407:18;34399:26;;34471:9;34465:4;34461:20;34457:1;34446:9;34442:17;34435:47;34499:131;34625:4;34499:131;:::i;:::-;34491:139;;34218:419;;;:::o;34643:182::-;34783:34;34779:1;34771:6;34767:14;34760:58;34643:182;:::o;34831:366::-;34973:3;34994:67;35058:2;35053:3;34994:67;:::i;:::-;34987:74;;35070:93;35159:3;35070:93;:::i;:::-;35188:2;35183:3;35179:12;35172:19;;34831:366;;;:::o;35203:419::-;35369:4;35407:2;35396:9;35392:18;35384:26;;35456:9;35450:4;35446:20;35442:1;35431:9;35427:17;35420:47;35484:131;35610:4;35484:131;:::i;:::-;35476:139;;35203:419;;;:::o;35628:332::-;35749:4;35787:2;35776:9;35772:18;35764:26;;35800:71;35868:1;35857:9;35853:17;35844:6;35800:71;:::i;:::-;35881:72;35949:2;35938:9;35934:18;35925:6;35881:72;:::i;:::-;35628:332;;;;;:::o;35966:137::-;36020:5;36051:6;36045:13;36036:22;;36067:30;36091:5;36067:30;:::i;:::-;35966:137;;;;:::o;36109:345::-;36176:6;36225:2;36213:9;36204:7;36200:23;36196:32;36193:119;;;36231:79;;:::i;:::-;36193:119;36351:1;36376:61;36429:7;36420:6;36409:9;36405:22;36376:61;:::i;:::-;36366:71;;36322:125;36109:345;;;;:::o;36460:410::-;36500:7;36523:20;36541:1;36523:20;:::i;:::-;36518:25;;36557:20;36575:1;36557:20;:::i;:::-;36552:25;;36612:1;36609;36605:9;36634:30;36652:11;36634:30;:::i;:::-;36623:41;;36813:1;36804:7;36800:15;36797:1;36794:22;36774:1;36767:9;36747:83;36724:139;;36843:18;;:::i;:::-;36724:139;36508:362;36460:410;;;;:::o;36876:180::-;36924:77;36921:1;36914:88;37021:4;37018:1;37011:15;37045:4;37042:1;37035:15;37062:185;37102:1;37119:20;37137:1;37119:20;:::i;:::-;37114:25;;37153:20;37171:1;37153:20;:::i;:::-;37148:25;;37192:1;37182:35;;37197:18;;:::i;:::-;37182:35;37239:1;37236;37232:9;37227:14;;37062:185;;;;:::o;37253:180::-;37301:77;37298:1;37291:88;37398:4;37395:1;37388:15;37422:4;37419:1;37412:15;37439:233;37478:3;37501:24;37519:5;37501:24;:::i;:::-;37492:33;;37547:66;37540:5;37537:77;37534:103;;37617:18;;:::i;:::-;37534:103;37664:1;37657:5;37653:13;37646:20;;37439:233;;;:::o;37678:98::-;37729:6;37763:5;37757:12;37747:22;;37678:98;;;:::o;37782:168::-;37865:11;37899:6;37894:3;37887:19;37939:4;37934:3;37930:14;37915:29;;37782:168;;;;:::o;37956:373::-;38042:3;38070:38;38102:5;38070:38;:::i;:::-;38124:70;38187:6;38182:3;38124:70;:::i;:::-;38117:77;;38203:65;38261:6;38256:3;38249:4;38242:5;38238:16;38203:65;:::i;:::-;38293:29;38315:6;38293:29;:::i;:::-;38288:3;38284:39;38277:46;;38046:283;37956:373;;;;:::o;38335:640::-;38530:4;38568:3;38557:9;38553:19;38545:27;;38582:71;38650:1;38639:9;38635:17;38626:6;38582:71;:::i;:::-;38663:72;38731:2;38720:9;38716:18;38707:6;38663:72;:::i;:::-;38745;38813:2;38802:9;38798:18;38789:6;38745:72;:::i;:::-;38864:9;38858:4;38854:20;38849:2;38838:9;38834:18;38827:48;38892:76;38963:4;38954:6;38892:76;:::i;:::-;38884:84;;38335:640;;;;;;;:::o;38981:141::-;39037:5;39068:6;39062:13;39053:22;;39084:32;39110:5;39084:32;:::i;:::-;38981:141;;;;:::o;39128:349::-;39197:6;39246:2;39234:9;39225:7;39221:23;39217:32;39214:119;;;39252:79;;:::i;:::-;39214:119;39372:1;39397:63;39452:7;39443:6;39432:9;39428:22;39397:63;:::i;:::-;39387:73;;39343:127;39128:349;;;;:::o

Swarm Source

ipfs://916d94633d9814023825a7583c167fb303e1067546a1d6f7094af961826533f6
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.