ETH Price: $2,667.35 (+1.23%)

Token

Anti-Universe (Anti)
 

Overview

Max Total Supply

4,401 Anti

Holders

245

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 Anti
0x0000000000000000000000000000000000000000
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:
AntiUniverse

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/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/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: @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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/AntiUniverse.sol



pragma solidity ^0.8.9;



contract AntiUniverse is ERC721, Ownable {
    using Strings for uint256;

    uint public constant MAX_TOKENS = 5300;
    uint public price = 30000000000000000;
    uint256 public constant MAX_MINT_PER_TX = 5;

    bool public isSaleActive;
    uint256 public totalSupply;

    string public baseUri;
    string public baseExtension = ".json";

    constructor() ERC721("Anti-Universe", "Anti") {
        baseUri = "ipfs://xxxxxxxxxxxxxxxxxxxxxxxxxxxxx/";
    }

    // Public Functions
    function mint(uint256 _numTokens) external payable {
        require(isSaleActive, "The sale is paused.");
        require(_numTokens <= MAX_MINT_PER_TX, "You cannot mint that many in one transaction.");
        uint256 curTotalSupply = totalSupply;
        require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds total supply.");
        
        if (msg.sender != owner()) {
            require(_numTokens * price <= msg.value, "Insufficient funds.");
        }

        for(uint256 i = 1; i <= _numTokens; ++i) {
            _safeMint(msg.sender, curTotalSupply + i);
        }
        totalSupply += _numTokens;
    }

    // Owner-only functions
    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

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

    function withdrawAll() external payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
 
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
            : "";
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseUri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052666a94d74f4300006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005c92919062000231565b503480156200006a57600080fd5b506040518060400160405280600d81526020017f416e74692d556e697665727365000000000000000000000000000000000000008152506040518060400160405280600481526020017f416e7469000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ef92919062000231565b5080600190805190602001906200010892919062000231565b5050506200012b6200011f6200016360201b60201c565b6200016b60201b60201c565b6040518060600160405280602581526020016200398860259139600a90805190602001906200015c92919062000231565b5062000346565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023f9062000310565b90600052602060002090601f016020900481019282620002635760008555620002af565b82601f106200027e57805160ff1916838001178555620002af565b82800160010185558215620002af579182015b82811115620002ae57825182559160200191906001019062000291565b5b509050620002be9190620002c2565b5090565b5b80821115620002dd576000816000905550600101620002c3565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032957607f821691505b6020821081141562000340576200033f620002e1565b5b50919050565b61363280620003566000396000f3fe6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906122c5565b610674565b6040516101f0919061230d565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b91906123c1565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612419565b6107e8565b6040516102589190612487565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906124ce565b61082e565b005b34801561029657600080fd5b5061029f610946565b6040516102ac919061251d565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612538565b61094c565b005b3480156102ea57600080fd5b506102f36109ac565b005b34801561030157600080fd5b5061031c60048036038101906103179190612538565b6109e0565b005b34801561032a57600080fd5b50610333610a00565b604051610340919061230d565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612419565b610a13565b60405161037d9190612487565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061258b565b610a9a565b6040516103ba919061251d565b60405180910390f35b3480156103cf57600080fd5b506103d8610b52565b005b6103e2610b66565b005b3480156103f057600080fd5b506103f9610bee565b6040516104069190612487565b60405180910390f35b34801561041b57600080fd5b50610424610c18565b604051610431919061251d565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612419565b610c1d565b005b34801561046f57600080fd5b50610478610c2f565b60405161048591906123c1565b60405180910390f35b34801561049a57600080fd5b506104a3610cc1565b6040516104b091906123c1565b60405180910390f35b3480156104c557600080fd5b506104ce610d4f565b6040516104db919061251d565b60405180910390f35b6104fe60048036038101906104f99190612419565b610d55565b005b34801561050c57600080fd5b50610527600480360381019061052291906126ed565b610f1c565b005b34801561053557600080fd5b50610550600480360381019061054b9190612762565b610f3e565b005b34801561055e57600080fd5b5061057960048036038101906105749190612843565b610f54565b005b34801561058757600080fd5b50610590610fb6565b60405161059d91906123c1565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612419565b611044565b6040516105da91906123c1565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906128c6565b6110ee565b604051610617919061230d565b60405180910390f35b34801561062c57600080fd5b506106476004803603810190610642919061258b565b611182565b005b34801561065557600080fd5b5061065e611206565b60405161066b919061251d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e8261120c565b5b9050919050565b60606000805461076590612935565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612935565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611276565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a1906129d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c96112c1565b73ffffffffffffffffffffffffffffffffffffffff1614806108f857506108f7816108f26112c1565b6110ee565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90612a6b565b60405180910390fd5b61094183836112c9565b505050565b60095481565b61095d6109576112c1565b82611382565b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390612afd565b60405180910390fd5b6109a7838383611417565b505050565b6109b4611711565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fb83838360405180602001604052806000815250610f54565b505050565b600860009054906101000a900460ff1681565b600080610a1f8361178f565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890612b69565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290612bfb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5a611711565b610b6460006117cc565b565b610b6e611711565b6000610b78610bee565b73ffffffffffffffffffffffffffffffffffffffff1647604051610b9b90612c4c565b60006040518083038185875af1925050503d8060008114610bd8576040519150601f19603f3d011682016040523d82523d6000602084013e610bdd565b606091505b5050905080610beb57600080fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b610c25611711565b8060078190555050565b606060018054610c3e90612935565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6a90612935565b8015610cb75780601f10610c8c57610100808354040283529160200191610cb7565b820191906000526020600020905b815481529060010190602001808311610c9a57829003601f168201915b5050505050905090565b600a8054610cce90612935565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfa90612935565b8015610d475780601f10610d1c57610100808354040283529160200191610d47565b820191906000526020600020905b815481529060010190602001808311610d2a57829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90612cad565b60405180910390fd5b6005811115610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90612d3f565b60405180910390fd5b600060095490506114b48282610dfe9190612d8e565b1115610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690612e30565b60405180910390fd5b610e47610bee565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eca573460075483610e889190612e50565b1115610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090612ef6565b60405180910390fd5b5b6000600190505b828111610efe57610eed338284610ee89190612d8e565b611892565b80610ef790612f16565b9050610ed1565b508160096000828254610f119190612d8e565b925050819055505050565b610f24611711565b80600a9080519060200190610f3a9291906121b6565b5050565b610f50610f496112c1565b83836118b0565b5050565b610f65610f5f6112c1565b83611382565b610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90612afd565b60405180910390fd5b610fb084848484611a1d565b50505050565b600b8054610fc390612935565b80601f0160208091040260200160405190810160405280929190818152602001828054610fef90612935565b801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b505050505081565b606061104f82611a79565b61108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590612fd1565b60405180910390fd5b6000611098611aba565b905060008151116110b857604051806020016040528060008152506110e6565b806110c284611b4c565b600b6040516020016110d6939291906130c1565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61118a611711565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613164565b60405180910390fd5b611203816117cc565b50565b6114b481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61127f81611a79565b6112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590612b69565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661133c83610a13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061138e83610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113d057506113cf81856110ee565b5b8061140e57508373ffffffffffffffffffffffffffffffffffffffff166113f6846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661143782610a13565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906131f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490613288565b60405180910390fd5b61150a8383836001611c24565b8273ffffffffffffffffffffffffffffffffffffffff1661152a82610a13565b73ffffffffffffffffffffffffffffffffffffffff1614611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906131f6565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461170c8383836001611c2a565b505050565b6117196112c1565b73ffffffffffffffffffffffffffffffffffffffff16611737610bee565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906132f4565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118ac828260405180602001604052806000815250611c30565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613360565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a10919061230d565b60405180910390a3505050565b611a28848484611417565b611a3484848484611c8b565b611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a906133f2565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a9b8361178f565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600a8054611ac990612935565b80601f0160208091040260200160405190810160405280929190818152602001828054611af590612935565b8015611b425780601f10611b1757610100808354040283529160200191611b42565b820191906000526020600020905b815481529060010190602001808311611b2557829003601f168201915b5050505050905090565b606060006001611b5b84611e22565b01905060008167ffffffffffffffff811115611b7a57611b796125c2565b5b6040519080825280601f01601f191660200182016040528015611bac5781602001600182028036833780820191505090505b509050600082602001820190505b600115611c19578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c0357611c02613412565b5b0494506000851415611c1457611c19565b611bba565b819350505050919050565b50505050565b50505050565b611c3a8383611f75565b611c476000848484611c8b565b611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d906133f2565b60405180910390fd5b505050565b6000611cac8473ffffffffffffffffffffffffffffffffffffffff16612193565b15611e15578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cd56112c1565b8786866040518563ffffffff1660e01b8152600401611cf79493929190613496565b602060405180830381600087803b158015611d1157600080fd5b505af1925050508015611d4257506040513d601f19601f82011682018060405250810190611d3f91906134f7565b60015b611dc5573d8060008114611d72576040519150601f19603f3d011682016040523d82523d6000602084013e611d77565b606091505b50600081511415611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db4906133f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e1a565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e80577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e7657611e75613412565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ebd576d04ee2d6d415b85acef81000000008381611eb357611eb2613412565b5b0492506020810190505b662386f26fc100008310611eec57662386f26fc100008381611ee257611ee1613412565b5b0492506010810190505b6305f5e1008310611f15576305f5e1008381611f0b57611f0a613412565b5b0492506008810190505b6127108310611f3a576127108381611f3057611f2f613412565b5b0492506004810190505b60648310611f5d5760648381611f5357611f52613412565b5b0492506002810190505b600a8310611f6c576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc90613570565b60405180910390fd5b611fee81611a79565b1561202e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612025906135dc565b60405180910390fd5b61203c600083836001611c24565b61204581611a79565b15612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906135dc565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461218f600083836001611c2a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121c290612935565b90600052602060002090601f0160209004810192826121e4576000855561222b565b82601f106121fd57805160ff191683800117855561222b565b8280016001018555821561222b579182015b8281111561222a57825182559160200191906001019061220f565b5b509050612238919061223c565b5090565b5b8082111561225557600081600090555060010161223d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122a28161226d565b81146122ad57600080fd5b50565b6000813590506122bf81612299565b92915050565b6000602082840312156122db576122da612263565b5b60006122e9848285016122b0565b91505092915050565b60008115159050919050565b612307816122f2565b82525050565b600060208201905061232260008301846122fe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612362578082015181840152602081019050612347565b83811115612371576000848401525b50505050565b6000601f19601f8301169050919050565b600061239382612328565b61239d8185612333565b93506123ad818560208601612344565b6123b681612377565b840191505092915050565b600060208201905081810360008301526123db8184612388565b905092915050565b6000819050919050565b6123f6816123e3565b811461240157600080fd5b50565b600081359050612413816123ed565b92915050565b60006020828403121561242f5761242e612263565b5b600061243d84828501612404565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061247182612446565b9050919050565b61248181612466565b82525050565b600060208201905061249c6000830184612478565b92915050565b6124ab81612466565b81146124b657600080fd5b50565b6000813590506124c8816124a2565b92915050565b600080604083850312156124e5576124e4612263565b5b60006124f3858286016124b9565b925050602061250485828601612404565b9150509250929050565b612517816123e3565b82525050565b6000602082019050612532600083018461250e565b92915050565b60008060006060848603121561255157612550612263565b5b600061255f868287016124b9565b9350506020612570868287016124b9565b925050604061258186828701612404565b9150509250925092565b6000602082840312156125a1576125a0612263565b5b60006125af848285016124b9565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125fa82612377565b810181811067ffffffffffffffff82111715612619576126186125c2565b5b80604052505050565b600061262c612259565b905061263882826125f1565b919050565b600067ffffffffffffffff821115612658576126576125c2565b5b61266182612377565b9050602081019050919050565b82818337600083830152505050565b600061269061268b8461263d565b612622565b9050828152602081018484840111156126ac576126ab6125bd565b5b6126b784828561266e565b509392505050565b600082601f8301126126d4576126d36125b8565b5b81356126e484826020860161267d565b91505092915050565b60006020828403121561270357612702612263565b5b600082013567ffffffffffffffff81111561272157612720612268565b5b61272d848285016126bf565b91505092915050565b61273f816122f2565b811461274a57600080fd5b50565b60008135905061275c81612736565b92915050565b6000806040838503121561277957612778612263565b5b6000612787858286016124b9565b92505060206127988582860161274d565b9150509250929050565b600067ffffffffffffffff8211156127bd576127bc6125c2565b5b6127c682612377565b9050602081019050919050565b60006127e66127e1846127a2565b612622565b905082815260208101848484011115612802576128016125bd565b5b61280d84828561266e565b509392505050565b600082601f83011261282a576128296125b8565b5b813561283a8482602086016127d3565b91505092915050565b6000806000806080858703121561285d5761285c612263565b5b600061286b878288016124b9565b945050602061287c878288016124b9565b935050604061288d87828801612404565b925050606085013567ffffffffffffffff8111156128ae576128ad612268565b5b6128ba87828801612815565b91505092959194509250565b600080604083850312156128dd576128dc612263565b5b60006128eb858286016124b9565b92505060206128fc858286016124b9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061294d57607f821691505b6020821081141561296157612960612906565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006129c3602183612333565b91506129ce82612967565b604082019050919050565b600060208201905081810360008301526129f2816129b6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612a55603d83612333565b9150612a60826129f9565b604082019050919050565b60006020820190508181036000830152612a8481612a48565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612ae7602d83612333565b9150612af282612a8b565b604082019050919050565b60006020820190508181036000830152612b1681612ada565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612b53601883612333565b9150612b5e82612b1d565b602082019050919050565b60006020820190508181036000830152612b8281612b46565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612be5602983612333565b9150612bf082612b89565b604082019050919050565b60006020820190508181036000830152612c1481612bd8565b9050919050565b600081905092915050565b50565b6000612c36600083612c1b565b9150612c4182612c26565b600082019050919050565b6000612c5782612c29565b9150819050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b6000612c97601383612333565b9150612ca282612c61565b602082019050919050565b60006020820190508181036000830152612cc681612c8a565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000612d29602d83612333565b9150612d3482612ccd565b604082019050919050565b60006020820190508181036000830152612d5881612d1c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d99826123e3565b9150612da4836123e3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dd957612dd8612d5f565b5b828201905092915050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000612e1a601583612333565b9150612e2582612de4565b602082019050919050565b60006020820190508181036000830152612e4981612e0d565b9050919050565b6000612e5b826123e3565b9150612e66836123e3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e9f57612e9e612d5f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000612ee0601383612333565b9150612eeb82612eaa565b602082019050919050565b60006020820190508181036000830152612f0f81612ed3565b9050919050565b6000612f21826123e3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f5457612f53612d5f565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fbb602f83612333565b9150612fc682612f5f565b604082019050919050565b60006020820190508181036000830152612fea81612fae565b9050919050565b600081905092915050565b600061300782612328565b6130118185612ff1565b9350613021818560208601612344565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461304f81612935565b6130598186612ff1565b945060018216600081146130745760018114613085576130b8565b60ff198316865281860193506130b8565b61308e8561302d565b60005b838110156130b057815481890152600182019150602081019050613091565b838801955050505b50505092915050565b60006130cd8286612ffc565b91506130d98285612ffc565b91506130e58284613042565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061314e602683612333565b9150613159826130f2565b604082019050919050565b6000602082019050818103600083015261317d81613141565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006131e0602583612333565b91506131eb82613184565b604082019050919050565b6000602082019050818103600083015261320f816131d3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613272602483612333565b915061327d82613216565b604082019050919050565b600060208201905081810360008301526132a181613265565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132de602083612333565b91506132e9826132a8565b602082019050919050565b6000602082019050818103600083015261330d816132d1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061334a601983612333565b915061335582613314565b602082019050919050565b600060208201905081810360008301526133798161333d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133dc603283612333565b91506133e782613380565b604082019050919050565b6000602082019050818103600083015261340b816133cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061346882613441565b613472818561344c565b9350613482818560208601612344565b61348b81612377565b840191505092915050565b60006080820190506134ab6000830187612478565b6134b86020830186612478565b6134c5604083018561250e565b81810360608301526134d7818461345d565b905095945050505050565b6000815190506134f181612299565b92915050565b60006020828403121561350d5761350c612263565b5b600061351b848285016134e2565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061355a602083612333565b915061356582613524565b602082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006135c6601c83612333565b91506135d182613590565b602082019050919050565b600060208201905081810360008301526135f5816135b9565b905091905056fea264697066735822122051ce7816055090b3374a020a31af771a4a4496cc643d6b5f11252791b833f8f364736f6c63430008090033697066733a2f2f78787878787878787878787878787878787878787878787878787878782f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906122c5565b610674565b6040516101f0919061230d565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b91906123c1565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612419565b6107e8565b6040516102589190612487565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906124ce565b61082e565b005b34801561029657600080fd5b5061029f610946565b6040516102ac919061251d565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612538565b61094c565b005b3480156102ea57600080fd5b506102f36109ac565b005b34801561030157600080fd5b5061031c60048036038101906103179190612538565b6109e0565b005b34801561032a57600080fd5b50610333610a00565b604051610340919061230d565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612419565b610a13565b60405161037d9190612487565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061258b565b610a9a565b6040516103ba919061251d565b60405180910390f35b3480156103cf57600080fd5b506103d8610b52565b005b6103e2610b66565b005b3480156103f057600080fd5b506103f9610bee565b6040516104069190612487565b60405180910390f35b34801561041b57600080fd5b50610424610c18565b604051610431919061251d565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612419565b610c1d565b005b34801561046f57600080fd5b50610478610c2f565b60405161048591906123c1565b60405180910390f35b34801561049a57600080fd5b506104a3610cc1565b6040516104b091906123c1565b60405180910390f35b3480156104c557600080fd5b506104ce610d4f565b6040516104db919061251d565b60405180910390f35b6104fe60048036038101906104f99190612419565b610d55565b005b34801561050c57600080fd5b50610527600480360381019061052291906126ed565b610f1c565b005b34801561053557600080fd5b50610550600480360381019061054b9190612762565b610f3e565b005b34801561055e57600080fd5b5061057960048036038101906105749190612843565b610f54565b005b34801561058757600080fd5b50610590610fb6565b60405161059d91906123c1565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612419565b611044565b6040516105da91906123c1565b60405180910390f35b3480156105ef57600080fd5b5061060a600480360381019061060591906128c6565b6110ee565b604051610617919061230d565b60405180910390f35b34801561062c57600080fd5b506106476004803603810190610642919061258b565b611182565b005b34801561065557600080fd5b5061065e611206565b60405161066b919061251d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e8261120c565b5b9050919050565b60606000805461076590612935565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612935565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611276565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a1906129d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c96112c1565b73ffffffffffffffffffffffffffffffffffffffff1614806108f857506108f7816108f26112c1565b6110ee565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90612a6b565b60405180910390fd5b61094183836112c9565b505050565b60095481565b61095d6109576112c1565b82611382565b61099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390612afd565b60405180910390fd5b6109a7838383611417565b505050565b6109b4611711565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fb83838360405180602001604052806000815250610f54565b505050565b600860009054906101000a900460ff1681565b600080610a1f8361178f565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890612b69565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290612bfb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b5a611711565b610b6460006117cc565b565b610b6e611711565b6000610b78610bee565b73ffffffffffffffffffffffffffffffffffffffff1647604051610b9b90612c4c565b60006040518083038185875af1925050503d8060008114610bd8576040519150601f19603f3d011682016040523d82523d6000602084013e610bdd565b606091505b5050905080610beb57600080fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b610c25611711565b8060078190555050565b606060018054610c3e90612935565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6a90612935565b8015610cb75780601f10610c8c57610100808354040283529160200191610cb7565b820191906000526020600020905b815481529060010190602001808311610c9a57829003601f168201915b5050505050905090565b600a8054610cce90612935565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfa90612935565b8015610d475780601f10610d1c57610100808354040283529160200191610d47565b820191906000526020600020905b815481529060010190602001808311610d2a57829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90612cad565b60405180910390fd5b6005811115610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90612d3f565b60405180910390fd5b600060095490506114b48282610dfe9190612d8e565b1115610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690612e30565b60405180910390fd5b610e47610bee565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eca573460075483610e889190612e50565b1115610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090612ef6565b60405180910390fd5b5b6000600190505b828111610efe57610eed338284610ee89190612d8e565b611892565b80610ef790612f16565b9050610ed1565b508160096000828254610f119190612d8e565b925050819055505050565b610f24611711565b80600a9080519060200190610f3a9291906121b6565b5050565b610f50610f496112c1565b83836118b0565b5050565b610f65610f5f6112c1565b83611382565b610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90612afd565b60405180910390fd5b610fb084848484611a1d565b50505050565b600b8054610fc390612935565b80601f0160208091040260200160405190810160405280929190818152602001828054610fef90612935565b801561103c5780601f106110115761010080835404028352916020019161103c565b820191906000526020600020905b81548152906001019060200180831161101f57829003601f168201915b505050505081565b606061104f82611a79565b61108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590612fd1565b60405180910390fd5b6000611098611aba565b905060008151116110b857604051806020016040528060008152506110e6565b806110c284611b4c565b600b6040516020016110d6939291906130c1565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61118a611711565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613164565b60405180910390fd5b611203816117cc565b50565b6114b481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61127f81611a79565b6112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590612b69565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661133c83610a13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061138e83610a13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113d057506113cf81856110ee565b5b8061140e57508373ffffffffffffffffffffffffffffffffffffffff166113f6846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661143782610a13565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906131f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490613288565b60405180910390fd5b61150a8383836001611c24565b8273ffffffffffffffffffffffffffffffffffffffff1661152a82610a13565b73ffffffffffffffffffffffffffffffffffffffff1614611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906131f6565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461170c8383836001611c2a565b505050565b6117196112c1565b73ffffffffffffffffffffffffffffffffffffffff16611737610bee565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906132f4565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118ac828260405180602001604052806000815250611c30565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613360565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a10919061230d565b60405180910390a3505050565b611a28848484611417565b611a3484848484611c8b565b611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a906133f2565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a9b8361178f565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600a8054611ac990612935565b80601f0160208091040260200160405190810160405280929190818152602001828054611af590612935565b8015611b425780601f10611b1757610100808354040283529160200191611b42565b820191906000526020600020905b815481529060010190602001808311611b2557829003601f168201915b5050505050905090565b606060006001611b5b84611e22565b01905060008167ffffffffffffffff811115611b7a57611b796125c2565b5b6040519080825280601f01601f191660200182016040528015611bac5781602001600182028036833780820191505090505b509050600082602001820190505b600115611c19578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c0357611c02613412565b5b0494506000851415611c1457611c19565b611bba565b819350505050919050565b50505050565b50505050565b611c3a8383611f75565b611c476000848484611c8b565b611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d906133f2565b60405180910390fd5b505050565b6000611cac8473ffffffffffffffffffffffffffffffffffffffff16612193565b15611e15578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cd56112c1565b8786866040518563ffffffff1660e01b8152600401611cf79493929190613496565b602060405180830381600087803b158015611d1157600080fd5b505af1925050508015611d4257506040513d601f19601f82011682018060405250810190611d3f91906134f7565b60015b611dc5573d8060008114611d72576040519150601f19603f3d011682016040523d82523d6000602084013e611d77565b606091505b50600081511415611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db4906133f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e1a565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e80577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e7657611e75613412565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ebd576d04ee2d6d415b85acef81000000008381611eb357611eb2613412565b5b0492506020810190505b662386f26fc100008310611eec57662386f26fc100008381611ee257611ee1613412565b5b0492506010810190505b6305f5e1008310611f15576305f5e1008381611f0b57611f0a613412565b5b0492506008810190505b6127108310611f3a576127108381611f3057611f2f613412565b5b0492506004810190505b60648310611f5d5760648381611f5357611f52613412565b5b0492506002810190505b600a8310611f6c576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc90613570565b60405180910390fd5b611fee81611a79565b1561202e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612025906135dc565b60405180910390fd5b61203c600083836001611c24565b61204581611a79565b15612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906135dc565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461218f600083836001611c2a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121c290612935565b90600052602060002090601f0160209004810192826121e4576000855561222b565b82601f106121fd57805160ff191683800117855561222b565b8280016001018555821561222b579182015b8281111561222a57825182559160200191906001019061220f565b5b509050612238919061223c565b5090565b5b8082111561225557600081600090555060010161223d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122a28161226d565b81146122ad57600080fd5b50565b6000813590506122bf81612299565b92915050565b6000602082840312156122db576122da612263565b5b60006122e9848285016122b0565b91505092915050565b60008115159050919050565b612307816122f2565b82525050565b600060208201905061232260008301846122fe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612362578082015181840152602081019050612347565b83811115612371576000848401525b50505050565b6000601f19601f8301169050919050565b600061239382612328565b61239d8185612333565b93506123ad818560208601612344565b6123b681612377565b840191505092915050565b600060208201905081810360008301526123db8184612388565b905092915050565b6000819050919050565b6123f6816123e3565b811461240157600080fd5b50565b600081359050612413816123ed565b92915050565b60006020828403121561242f5761242e612263565b5b600061243d84828501612404565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061247182612446565b9050919050565b61248181612466565b82525050565b600060208201905061249c6000830184612478565b92915050565b6124ab81612466565b81146124b657600080fd5b50565b6000813590506124c8816124a2565b92915050565b600080604083850312156124e5576124e4612263565b5b60006124f3858286016124b9565b925050602061250485828601612404565b9150509250929050565b612517816123e3565b82525050565b6000602082019050612532600083018461250e565b92915050565b60008060006060848603121561255157612550612263565b5b600061255f868287016124b9565b9350506020612570868287016124b9565b925050604061258186828701612404565b9150509250925092565b6000602082840312156125a1576125a0612263565b5b60006125af848285016124b9565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125fa82612377565b810181811067ffffffffffffffff82111715612619576126186125c2565b5b80604052505050565b600061262c612259565b905061263882826125f1565b919050565b600067ffffffffffffffff821115612658576126576125c2565b5b61266182612377565b9050602081019050919050565b82818337600083830152505050565b600061269061268b8461263d565b612622565b9050828152602081018484840111156126ac576126ab6125bd565b5b6126b784828561266e565b509392505050565b600082601f8301126126d4576126d36125b8565b5b81356126e484826020860161267d565b91505092915050565b60006020828403121561270357612702612263565b5b600082013567ffffffffffffffff81111561272157612720612268565b5b61272d848285016126bf565b91505092915050565b61273f816122f2565b811461274a57600080fd5b50565b60008135905061275c81612736565b92915050565b6000806040838503121561277957612778612263565b5b6000612787858286016124b9565b92505060206127988582860161274d565b9150509250929050565b600067ffffffffffffffff8211156127bd576127bc6125c2565b5b6127c682612377565b9050602081019050919050565b60006127e66127e1846127a2565b612622565b905082815260208101848484011115612802576128016125bd565b5b61280d84828561266e565b509392505050565b600082601f83011261282a576128296125b8565b5b813561283a8482602086016127d3565b91505092915050565b6000806000806080858703121561285d5761285c612263565b5b600061286b878288016124b9565b945050602061287c878288016124b9565b935050604061288d87828801612404565b925050606085013567ffffffffffffffff8111156128ae576128ad612268565b5b6128ba87828801612815565b91505092959194509250565b600080604083850312156128dd576128dc612263565b5b60006128eb858286016124b9565b92505060206128fc858286016124b9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061294d57607f821691505b6020821081141561296157612960612906565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006129c3602183612333565b91506129ce82612967565b604082019050919050565b600060208201905081810360008301526129f2816129b6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612a55603d83612333565b9150612a60826129f9565b604082019050919050565b60006020820190508181036000830152612a8481612a48565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612ae7602d83612333565b9150612af282612a8b565b604082019050919050565b60006020820190508181036000830152612b1681612ada565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612b53601883612333565b9150612b5e82612b1d565b602082019050919050565b60006020820190508181036000830152612b8281612b46565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612be5602983612333565b9150612bf082612b89565b604082019050919050565b60006020820190508181036000830152612c1481612bd8565b9050919050565b600081905092915050565b50565b6000612c36600083612c1b565b9150612c4182612c26565b600082019050919050565b6000612c5782612c29565b9150819050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b6000612c97601383612333565b9150612ca282612c61565b602082019050919050565b60006020820190508181036000830152612cc681612c8a565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000612d29602d83612333565b9150612d3482612ccd565b604082019050919050565b60006020820190508181036000830152612d5881612d1c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d99826123e3565b9150612da4836123e3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dd957612dd8612d5f565b5b828201905092915050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000612e1a601583612333565b9150612e2582612de4565b602082019050919050565b60006020820190508181036000830152612e4981612e0d565b9050919050565b6000612e5b826123e3565b9150612e66836123e3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e9f57612e9e612d5f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b6000612ee0601383612333565b9150612eeb82612eaa565b602082019050919050565b60006020820190508181036000830152612f0f81612ed3565b9050919050565b6000612f21826123e3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f5457612f53612d5f565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fbb602f83612333565b9150612fc682612f5f565b604082019050919050565b60006020820190508181036000830152612fea81612fae565b9050919050565b600081905092915050565b600061300782612328565b6130118185612ff1565b9350613021818560208601612344565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461304f81612935565b6130598186612ff1565b945060018216600081146130745760018114613085576130b8565b60ff198316865281860193506130b8565b61308e8561302d565b60005b838110156130b057815481890152600182019150602081019050613091565b838801955050505b50505092915050565b60006130cd8286612ffc565b91506130d98285612ffc565b91506130e58284613042565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061314e602683612333565b9150613159826130f2565b604082019050919050565b6000602082019050818103600083015261317d81613141565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006131e0602583612333565b91506131eb82613184565b604082019050919050565b6000602082019050818103600083015261320f816131d3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613272602483612333565b915061327d82613216565b604082019050919050565b600060208201905081810360008301526132a181613265565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132de602083612333565b91506132e9826132a8565b602082019050919050565b6000602082019050818103600083015261330d816132d1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061334a601983612333565b915061335582613314565b602082019050919050565b600060208201905081810360008301526133798161333d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133dc603283612333565b91506133e782613380565b604082019050919050565b6000602082019050818103600083015261340b816133cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061346882613441565b613472818561344c565b9350613482818560208601612344565b61348b81612377565b840191505092915050565b60006080820190506134ab6000830187612478565b6134b86020830186612478565b6134c5604083018561250e565b81810360608301526134d7818461345d565b905095945050505050565b6000815190506134f181612299565b92915050565b60006020828403121561350d5761350c612263565b5b600061351b848285016134e2565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061355a602083612333565b915061356582613524565b602082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006135c6601c83612333565b91506135d182613590565b602082019050919050565b600060208201905081810360008301526135f5816135b9565b905091905056fea264697066735822122051ce7816055090b3374a020a31af771a4a4496cc643d6b5f11252791b833f8f364736f6c63430008090033

Deployed Bytecode Sourcemap

54717:2172:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35748:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36676:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38188:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37706:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54971:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38888:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55903:91;;;;;;;;;;;;;:::i;:::-;;39294:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54940:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36386:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36117:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53826:103;;;;;;;;;;;;;:::i;:::-;;56204:160;;;:::i;:::-;;53178:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54888:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56110:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36845:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55006:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54844:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55227:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56002:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38431:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39550:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55034:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56372:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38657:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54084:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54799:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35748:305;35850:4;35902:25;35887:40;;;:11;:40;;;;:105;;;;35959:33;35944:48;;;:11;:48;;;;35887:105;:158;;;;36009:36;36033:11;36009:23;:36::i;:::-;35887:158;35867:178;;35748:305;;;:::o;36676:100::-;36730:13;36763:5;36756:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36676:100;:::o;38188:171::-;38264:7;38284:23;38299:7;38284:14;:23::i;:::-;38327:15;:24;38343:7;38327:24;;;;;;;;;;;;;;;;;;;;;38320:31;;38188:171;;;:::o;37706:416::-;37787:13;37803:23;37818:7;37803:14;:23::i;:::-;37787:39;;37851:5;37845:11;;:2;:11;;;;37837:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;37945:5;37929:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37954:37;37971:5;37978:12;:10;:12::i;:::-;37954:16;:37::i;:::-;37929:62;37907:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;38093:21;38102:2;38106:7;38093:8;:21::i;:::-;37776:346;37706:416;;:::o;54971:26::-;;;;:::o;38888:335::-;39083:41;39102:12;:10;:12::i;:::-;39116:7;39083:18;:41::i;:::-;39075:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39187:28;39197:4;39203:2;39207:7;39187:9;:28::i;:::-;38888:335;;;:::o;55903:91::-;53064:13;:11;:13::i;:::-;55974:12:::1;;;;;;;;;;;55973:13;55958:12;;:28;;;;;;;;;;;;;;;;;;55903:91::o:0;39294:185::-;39432:39;39449:4;39455:2;39459:7;39432:39;;;;;;;;;;;;:16;:39::i;:::-;39294:185;;;:::o;54940:24::-;;;;;;;;;;;;;:::o;36386:223::-;36458:7;36478:13;36494:17;36503:7;36494:8;:17::i;:::-;36478:33;;36547:1;36530:19;;:5;:19;;;;36522:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36596:5;36589:12;;;36386:223;;;:::o;36117:207::-;36189:7;36234:1;36217:19;;:5;:19;;;;36209:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36300:9;:16;36310:5;36300:16;;;;;;;;;;;;;;;;36293:23;;36117:207;;;:::o;53826:103::-;53064:13;:11;:13::i;:::-;53891:30:::1;53918:1;53891:18;:30::i;:::-;53826:103::o:0;56204:160::-;53064:13;:11;:13::i;:::-;56266:7:::1;56287;:5;:7::i;:::-;56279:21;;56308;56279:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56265:69;;;56353:2;56345:11;;;::::0;::::1;;56254:110;56204:160::o:0;53178:87::-;53224:7;53251:6;;;;;;;;;;;53244:13;;53178:87;:::o;54888:43::-;54930:1;54888:43;:::o;56110:86::-;53064:13;:11;:13::i;:::-;56182:6:::1;56174:5;:14;;;;56110:86:::0;:::o;36845:104::-;36901:13;36934:7;36927:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36845:104;:::o;55006:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54844:37::-;;;;:::o;55227:639::-;55297:12;;;;;;;;;;;55289:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;54930:1;55352:10;:29;;55344:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;55442:22;55467:11;;55442:36;;54833:4;55514:10;55497:14;:27;;;;:::i;:::-;:41;;55489:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;55603:7;:5;:7::i;:::-;55589:21;;:10;:21;;;55585:117;;55657:9;55648:5;;55635:10;:18;;;;:::i;:::-;:31;;55627:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55585:117;55718:9;55730:1;55718:13;;55714:109;55738:10;55733:1;:15;55714:109;;55770:41;55780:10;55809:1;55792:14;:18;;;;:::i;:::-;55770:9;:41::i;:::-;55750:3;;;;:::i;:::-;;;55714:109;;;;55848:10;55833:11;;:25;;;;;;;:::i;:::-;;;;;;;;55278:588;55227:639;:::o;56002:100::-;53064:13;:11;:13::i;:::-;56086:8:::1;56076:7;:18;;;;;;;;;;;;:::i;:::-;;56002:100:::0;:::o;38431:155::-;38526:52;38545:12;:10;:12::i;:::-;38559:8;38569;38526:18;:52::i;:::-;38431:155;;:::o;39550:322::-;39724:41;39743:12;:10;:12::i;:::-;39757:7;39724:18;:41::i;:::-;39716:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39826:38;39840:4;39846:2;39850:7;39859:4;39826:13;:38::i;:::-;39550:322;;;;:::o;55034:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56372:397::-;56445:13;56479:16;56487:7;56479;:16::i;:::-;56471:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56561:28;56592:10;:8;:10::i;:::-;56561:41;;56651:1;56626:14;56620:28;:32;:141;;;;;;;;;;;;;;;;;56692:14;56708:18;:7;:16;:18::i;:::-;56728:13;56675:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56620:141;56613:148;;;56372:397;;;:::o;38657:164::-;38754:4;38778:18;:25;38797:5;38778:25;;;;;;;;;;;;;;;:35;38804:8;38778:35;;;;;;;;;;;;;;;;;;;;;;;;;38771:42;;38657:164;;;;:::o;54084:201::-;53064:13;:11;:13::i;:::-;54193:1:::1;54173:22;;:8;:22;;;;54165:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54249:28;54268:8;54249:18;:28::i;:::-;54084:201:::0;:::o;54799:38::-;54833:4;54799:38;:::o;27367:157::-;27452:4;27491:25;27476:40;;;:11;:40;;;;27469:47;;27367:157;;;:::o;48007:135::-;48089:16;48097:7;48089;:16::i;:::-;48081:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48007:135;:::o;34127:98::-;34180:7;34207:10;34200:17;;34127:98;:::o;47286:174::-;47388:2;47361:15;:24;47377:7;47361:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47444:7;47440:2;47406:46;;47415:23;47430:7;47415:14;:23::i;:::-;47406:46;;;;;;;;;;;;47286:174;;:::o;41905:264::-;41998:4;42015:13;42031:23;42046:7;42031:14;:23::i;:::-;42015:39;;42084:5;42073:16;;:7;:16;;;:52;;;;42093:32;42110:5;42117:7;42093:16;:32::i;:::-;42073:52;:87;;;;42153:7;42129:31;;:20;42141:7;42129:11;:20::i;:::-;:31;;;42073:87;42065:96;;;41905:264;;;;:::o;45904:1263::-;46063:4;46036:31;;:23;46051:7;46036:14;:23::i;:::-;:31;;;46028:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46142:1;46128:16;;:2;:16;;;;46120:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46198:42;46219:4;46225:2;46229:7;46238:1;46198:20;:42::i;:::-;46370:4;46343:31;;:23;46358:7;46343:14;:23::i;:::-;:31;;;46335:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46488:15;:24;46504:7;46488:24;;;;;;;;;;;;46481:31;;;;;;;;;;;46983:1;46964:9;:15;46974:4;46964:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;47016:1;46999:9;:13;47009:2;46999:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47058:2;47039:7;:16;47047:7;47039:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47097:7;47093:2;47078:27;;47087:4;47078:27;;;;;;;;;;;;47118:41;47138:4;47144:2;47148:7;47157:1;47118:19;:41::i;:::-;45904:1263;;;:::o;53343:132::-;53418:12;:10;:12::i;:::-;53407:23;;:7;:5;:7::i;:::-;:23;;;53399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53343:132::o;41180:117::-;41246:7;41273;:16;41281:7;41273:16;;;;;;;;;;;;;;;;;;;;;41266:23;;41180:117;;;:::o;54445:191::-;54519:16;54538:6;;;;;;;;;;;54519:25;;54564:8;54555:6;;:17;;;;;;;;;;;;;;;;;;54619:8;54588:40;;54609:8;54588:40;;;;;;;;;;;;54508:128;54445:191;:::o;42511:110::-;42587:26;42597:2;42601:7;42587:26;;;;;;;;;;;;:9;:26::i;:::-;42511:110;;:::o;47603:315::-;47758:8;47749:17;;:5;:17;;;;47741:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47845:8;47807:18;:25;47826:5;47807:25;;;;;;;;;;;;;;;:35;47833:8;47807:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;47891:8;47869:41;;47884:5;47869:41;;;47901:8;47869:41;;;;;;:::i;:::-;;;;;;;;47603:315;;;:::o;40753:313::-;40909:28;40919:4;40925:2;40929:7;40909:9;:28::i;:::-;40956:47;40979:4;40985:2;40989:7;40998:4;40956:22;:47::i;:::-;40948:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40753:313;;;;:::o;41610:128::-;41675:4;41728:1;41699:31;;:17;41708:7;41699:8;:17::i;:::-;:31;;;;41692:38;;41610:128;;;:::o;56778:108::-;56838:13;56871:7;56864:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56778:108;:::o;13209:716::-;13265:13;13316:14;13353:1;13333:17;13344:5;13333:10;:17::i;:::-;:21;13316:38;;13369:20;13403:6;13392:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13369:41;;13425:11;13554:6;13550:2;13546:15;13538:6;13534:28;13527:35;;13591:288;13598:4;13591:288;;;13623:5;;;;;;;;13765:8;13760:2;13753:5;13749:14;13744:30;13739:3;13731:44;13821:2;13812:11;;;;;;:::i;:::-;;;;;13855:1;13846:5;:10;13842:21;;;13858:5;;13842:21;13591:288;;;13900:6;13893:13;;;;;13209:716;;;:::o;50291:159::-;;;;;:::o;51172:158::-;;;;;:::o;42848:319::-;42977:18;42983:2;42987:7;42977:5;:18::i;:::-;43028:53;43059:1;43063:2;43067:7;43076:4;43028:22;:53::i;:::-;43006:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;42848:319;;;:::o;48706:853::-;48860:4;48881:15;:2;:13;;;:15::i;:::-;48877:675;;;48933:2;48917:36;;;48954:12;:10;:12::i;:::-;48968:4;48974:7;48983:4;48917:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48913:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49175:1;49158:6;:13;:18;49154:328;;;49201:60;;;;;;;;;;:::i;:::-;;;;;;;;49154:328;49432:6;49426:13;49417:6;49413:2;49409:15;49402:38;48913:584;49049:41;;;49039:51;;;:6;:51;;;;49032:58;;;;;48877:675;49536:4;49529:11;;48706:853;;;;;;;:::o;10075:922::-;10128:7;10148:14;10165:1;10148:18;;10215:6;10206:5;:15;10202:102;;10251:6;10242:15;;;;;;:::i;:::-;;;;;10286:2;10276:12;;;;10202:102;10331:6;10322:5;:15;10318:102;;10367:6;10358:15;;;;;;:::i;:::-;;;;;10402:2;10392:12;;;;10318:102;10447:6;10438:5;:15;10434:102;;10483:6;10474:15;;;;;;:::i;:::-;;;;;10518:2;10508:12;;;;10434:102;10563:5;10554;:14;10550:99;;10598:5;10589:14;;;;;;:::i;:::-;;;;;10632:1;10622:11;;;;10550:99;10676:5;10667;:14;10663:99;;10711:5;10702:14;;;;;;:::i;:::-;;;;;10745:1;10735:11;;;;10663:99;10789:5;10780;:14;10776:99;;10824:5;10815:14;;;;;;:::i;:::-;;;;;10858:1;10848:11;;;;10776:99;10902:5;10893;:14;10889:66;;10938:1;10928:11;;;;10889:66;10983:6;10976:13;;;10075:922;;;:::o;43503:942::-;43597:1;43583:16;;:2;:16;;;;43575:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43656:16;43664:7;43656;:16::i;:::-;43655:17;43647:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43718:48;43747:1;43751:2;43755:7;43764:1;43718:20;:48::i;:::-;43865:16;43873:7;43865;:16::i;:::-;43864:17;43856:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44280:1;44263:9;:13;44273:2;44263:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;44324:2;44305:7;:16;44313:7;44305:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44369:7;44365:2;44344:33;;44361:1;44344:33;;;;;;;;;;;;44390:47;44418:1;44422:2;44426:7;44435:1;44390:19;:47::i;:::-;43503:942;;:::o;16336:326::-;16396:4;16653:1;16631:7;:19;;;:23;16624:30;;16336:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:220::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:3;12837:2;12829:6;12825:15;12818:28;12633:220;:::o;12859:366::-;13001:3;13022:67;13086:2;13081:3;13022:67;:::i;:::-;13015:74;;13098:93;13187:3;13098:93;:::i;:::-;13216:2;13211:3;13207:12;13200:19;;12859:366;;;:::o;13231:419::-;13397:4;13435:2;13424:9;13420:18;13412:26;;13484:9;13478:4;13474:20;13470:1;13459:9;13455:17;13448:47;13512:131;13638:4;13512:131;:::i;:::-;13504:139;;13231:419;;;:::o;13656:248::-;13796:34;13792:1;13784:6;13780:14;13773:58;13865:31;13860:2;13852:6;13848:15;13841:56;13656:248;:::o;13910:366::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:419::-;14448:4;14486:2;14475:9;14471:18;14463:26;;14535:9;14529:4;14525:20;14521:1;14510:9;14506:17;14499:47;14563:131;14689:4;14563:131;:::i;:::-;14555:139;;14282:419;;;:::o;14707:232::-;14847:34;14843:1;14835:6;14831:14;14824:58;14916:15;14911:2;14903:6;14899:15;14892:40;14707:232;:::o;14945:366::-;15087:3;15108:67;15172:2;15167:3;15108:67;:::i;:::-;15101:74;;15184:93;15273:3;15184:93;:::i;:::-;15302:2;15297:3;15293:12;15286:19;;14945:366;;;:::o;15317:419::-;15483:4;15521:2;15510:9;15506:18;15498:26;;15570:9;15564:4;15560:20;15556:1;15545:9;15541:17;15534:47;15598:131;15724:4;15598:131;:::i;:::-;15590:139;;15317:419;;;:::o;15742:174::-;15882:26;15878:1;15870:6;15866:14;15859:50;15742:174;:::o;15922:366::-;16064:3;16085:67;16149:2;16144:3;16085:67;:::i;:::-;16078:74;;16161:93;16250:3;16161:93;:::i;:::-;16279:2;16274:3;16270:12;16263:19;;15922:366;;;:::o;16294:419::-;16460:4;16498:2;16487:9;16483:18;16475:26;;16547:9;16541:4;16537:20;16533:1;16522:9;16518:17;16511:47;16575:131;16701:4;16575:131;:::i;:::-;16567:139;;16294:419;;;:::o;16719:228::-;16859:34;16855:1;16847:6;16843:14;16836:58;16928:11;16923:2;16915:6;16911:15;16904:36;16719:228;:::o;16953:366::-;17095:3;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;16953:366;;;:::o;17325:419::-;17491:4;17529:2;17518:9;17514:18;17506:26;;17578:9;17572:4;17568:20;17564:1;17553:9;17549:17;17542:47;17606:131;17732:4;17606:131;:::i;:::-;17598:139;;17325:419;;;:::o;17750:147::-;17851:11;17888:3;17873:18;;17750:147;;;;:::o;17903:114::-;;:::o;18023:398::-;18182:3;18203:83;18284:1;18279:3;18203:83;:::i;:::-;18196:90;;18295:93;18384:3;18295:93;:::i;:::-;18413:1;18408:3;18404:11;18397:18;;18023:398;;;:::o;18427:379::-;18611:3;18633:147;18776:3;18633:147;:::i;:::-;18626:154;;18797:3;18790:10;;18427:379;;;:::o;18812:169::-;18952:21;18948:1;18940:6;18936:14;18929:45;18812:169;:::o;18987:366::-;19129:3;19150:67;19214:2;19209:3;19150:67;:::i;:::-;19143:74;;19226:93;19315:3;19226:93;:::i;:::-;19344:2;19339:3;19335:12;19328:19;;18987:366;;;:::o;19359:419::-;19525:4;19563:2;19552:9;19548:18;19540:26;;19612:9;19606:4;19602:20;19598:1;19587:9;19583:17;19576:47;19640:131;19766:4;19640:131;:::i;:::-;19632:139;;19359:419;;;:::o;19784:232::-;19924:34;19920:1;19912:6;19908:14;19901:58;19993:15;19988:2;19980:6;19976:15;19969:40;19784:232;:::o;20022:366::-;20164:3;20185:67;20249:2;20244:3;20185:67;:::i;:::-;20178:74;;20261:93;20350:3;20261:93;:::i;:::-;20379:2;20374:3;20370:12;20363:19;;20022:366;;;:::o;20394:419::-;20560:4;20598:2;20587:9;20583:18;20575:26;;20647:9;20641:4;20637:20;20633:1;20622:9;20618:17;20611:47;20675:131;20801:4;20675:131;:::i;:::-;20667:139;;20394:419;;;:::o;20819:180::-;20867:77;20864:1;20857:88;20964:4;20961:1;20954:15;20988:4;20985:1;20978:15;21005:305;21045:3;21064:20;21082:1;21064:20;:::i;:::-;21059:25;;21098:20;21116:1;21098:20;:::i;:::-;21093:25;;21252:1;21184:66;21180:74;21177:1;21174:81;21171:107;;;21258:18;;:::i;:::-;21171:107;21302:1;21299;21295:9;21288:16;;21005:305;;;;:::o;21316:171::-;21456:23;21452:1;21444:6;21440:14;21433:47;21316:171;:::o;21493:366::-;21635:3;21656:67;21720:2;21715:3;21656:67;:::i;:::-;21649:74;;21732:93;21821:3;21732:93;:::i;:::-;21850:2;21845:3;21841:12;21834:19;;21493:366;;;:::o;21865:419::-;22031:4;22069:2;22058:9;22054:18;22046:26;;22118:9;22112:4;22108:20;22104:1;22093:9;22089:17;22082:47;22146:131;22272:4;22146:131;:::i;:::-;22138:139;;21865:419;;;:::o;22290:348::-;22330:7;22353:20;22371:1;22353:20;:::i;:::-;22348:25;;22387:20;22405:1;22387:20;:::i;:::-;22382:25;;22575:1;22507:66;22503:74;22500:1;22497:81;22492:1;22485:9;22478:17;22474:105;22471:131;;;22582:18;;:::i;:::-;22471:131;22630:1;22627;22623:9;22612:20;;22290:348;;;;:::o;22644:169::-;22784:21;22780:1;22772:6;22768:14;22761:45;22644:169;:::o;22819:366::-;22961:3;22982:67;23046:2;23041:3;22982:67;:::i;:::-;22975:74;;23058:93;23147:3;23058:93;:::i;:::-;23176:2;23171:3;23167:12;23160:19;;22819:366;;;:::o;23191:419::-;23357:4;23395:2;23384:9;23380:18;23372:26;;23444:9;23438:4;23434:20;23430:1;23419:9;23415:17;23408:47;23472:131;23598:4;23472:131;:::i;:::-;23464:139;;23191:419;;;:::o;23616:233::-;23655:3;23678:24;23696:5;23678:24;:::i;:::-;23669:33;;23724:66;23717:5;23714:77;23711:103;;;23794:18;;:::i;:::-;23711:103;23841:1;23834:5;23830:13;23823:20;;23616:233;;;:::o;23855:234::-;23995:34;23991:1;23983:6;23979:14;23972:58;24064:17;24059:2;24051:6;24047:15;24040:42;23855:234;:::o;24095:366::-;24237:3;24258:67;24322:2;24317:3;24258:67;:::i;:::-;24251:74;;24334:93;24423:3;24334:93;:::i;:::-;24452:2;24447:3;24443:12;24436:19;;24095:366;;;:::o;24467:419::-;24633:4;24671:2;24660:9;24656:18;24648:26;;24720:9;24714:4;24710:20;24706:1;24695:9;24691:17;24684:47;24748:131;24874:4;24748:131;:::i;:::-;24740:139;;24467:419;;;:::o;24892:148::-;24994:11;25031:3;25016:18;;24892:148;;;;:::o;25046:377::-;25152:3;25180:39;25213:5;25180:39;:::i;:::-;25235:89;25317:6;25312:3;25235:89;:::i;:::-;25228:96;;25333:52;25378:6;25373:3;25366:4;25359:5;25355:16;25333:52;:::i;:::-;25410:6;25405:3;25401:16;25394:23;;25156:267;25046:377;;;;:::o;25429:141::-;25478:4;25501:3;25493:11;;25524:3;25521:1;25514:14;25558:4;25555:1;25545:18;25537:26;;25429:141;;;:::o;25600:845::-;25703:3;25740:5;25734:12;25769:36;25795:9;25769:36;:::i;:::-;25821:89;25903:6;25898:3;25821:89;:::i;:::-;25814:96;;25941:1;25930:9;25926:17;25957:1;25952:137;;;;26103:1;26098:341;;;;25919:520;;25952:137;26036:4;26032:9;26021;26017:25;26012:3;26005:38;26072:6;26067:3;26063:16;26056:23;;25952:137;;26098:341;26165:38;26197:5;26165:38;:::i;:::-;26225:1;26239:154;26253:6;26250:1;26247:13;26239:154;;;26327:7;26321:14;26317:1;26312:3;26308:11;26301:35;26377:1;26368:7;26364:15;26353:26;;26275:4;26272:1;26268:12;26263:17;;26239:154;;;26422:6;26417:3;26413:16;26406:23;;26105:334;;25919:520;;25707:738;;25600:845;;;;:::o;26451:589::-;26676:3;26698:95;26789:3;26780:6;26698:95;:::i;:::-;26691:102;;26810:95;26901:3;26892:6;26810:95;:::i;:::-;26803:102;;26922:92;27010:3;27001:6;26922:92;:::i;:::-;26915:99;;27031:3;27024:10;;26451:589;;;;;;:::o;27046:225::-;27186:34;27182:1;27174:6;27170:14;27163:58;27255:8;27250:2;27242:6;27238:15;27231:33;27046:225;:::o;27277:366::-;27419:3;27440:67;27504:2;27499:3;27440:67;:::i;:::-;27433:74;;27516:93;27605:3;27516:93;:::i;:::-;27634:2;27629:3;27625:12;27618:19;;27277:366;;;:::o;27649:419::-;27815:4;27853:2;27842:9;27838:18;27830:26;;27902:9;27896:4;27892:20;27888:1;27877:9;27873:17;27866:47;27930:131;28056:4;27930:131;:::i;:::-;27922:139;;27649:419;;;:::o;28074:224::-;28214:34;28210:1;28202:6;28198:14;28191:58;28283:7;28278:2;28270:6;28266:15;28259:32;28074:224;:::o;28304:366::-;28446:3;28467:67;28531:2;28526:3;28467:67;:::i;:::-;28460:74;;28543:93;28632:3;28543:93;:::i;:::-;28661:2;28656:3;28652:12;28645:19;;28304:366;;;:::o;28676:419::-;28842:4;28880:2;28869:9;28865:18;28857:26;;28929:9;28923:4;28919:20;28915:1;28904:9;28900:17;28893:47;28957:131;29083:4;28957:131;:::i;:::-;28949:139;;28676:419;;;:::o;29101:223::-;29241:34;29237:1;29229:6;29225:14;29218:58;29310:6;29305:2;29297:6;29293:15;29286:31;29101:223;:::o;29330:366::-;29472:3;29493:67;29557:2;29552:3;29493:67;:::i;:::-;29486:74;;29569:93;29658:3;29569:93;:::i;:::-;29687:2;29682:3;29678:12;29671:19;;29330:366;;;:::o;29702:419::-;29868:4;29906:2;29895:9;29891:18;29883:26;;29955:9;29949:4;29945:20;29941:1;29930:9;29926:17;29919:47;29983:131;30109:4;29983:131;:::i;:::-;29975:139;;29702:419;;;:::o;30127:182::-;30267:34;30263:1;30255:6;30251:14;30244:58;30127:182;:::o;30315:366::-;30457:3;30478:67;30542:2;30537:3;30478:67;:::i;:::-;30471:74;;30554:93;30643:3;30554:93;:::i;:::-;30672:2;30667:3;30663:12;30656:19;;30315:366;;;:::o;30687:419::-;30853:4;30891:2;30880:9;30876:18;30868:26;;30940:9;30934:4;30930:20;30926:1;30915:9;30911:17;30904:47;30968:131;31094:4;30968:131;:::i;:::-;30960:139;;30687:419;;;:::o;31112:175::-;31252:27;31248:1;31240:6;31236:14;31229:51;31112:175;:::o;31293:366::-;31435:3;31456:67;31520:2;31515:3;31456:67;:::i;:::-;31449:74;;31532:93;31621:3;31532:93;:::i;:::-;31650:2;31645:3;31641:12;31634:19;;31293:366;;;:::o;31665:419::-;31831:4;31869:2;31858:9;31854:18;31846:26;;31918:9;31912:4;31908:20;31904:1;31893:9;31889:17;31882:47;31946:131;32072:4;31946:131;:::i;:::-;31938:139;;31665:419;;;:::o;32090:237::-;32230:34;32226:1;32218:6;32214:14;32207:58;32299:20;32294:2;32286:6;32282:15;32275:45;32090:237;:::o;32333:366::-;32475:3;32496:67;32560:2;32555:3;32496:67;:::i;:::-;32489:74;;32572:93;32661:3;32572:93;:::i;:::-;32690:2;32685:3;32681:12;32674:19;;32333:366;;;:::o;32705:419::-;32871:4;32909:2;32898:9;32894:18;32886:26;;32958:9;32952:4;32948:20;32944:1;32933:9;32929:17;32922:47;32986:131;33112:4;32986:131;:::i;:::-;32978:139;;32705:419;;;:::o;33130:180::-;33178:77;33175:1;33168:88;33275:4;33272:1;33265:15;33299:4;33296:1;33289:15;33316:98;33367:6;33401:5;33395:12;33385:22;;33316:98;;;:::o;33420:168::-;33503:11;33537:6;33532:3;33525:19;33577:4;33572:3;33568:14;33553:29;;33420:168;;;;:::o;33594:360::-;33680:3;33708:38;33740:5;33708:38;:::i;:::-;33762:70;33825:6;33820:3;33762:70;:::i;:::-;33755:77;;33841:52;33886:6;33881:3;33874:4;33867:5;33863:16;33841:52;:::i;:::-;33918:29;33940:6;33918:29;:::i;:::-;33913:3;33909:39;33902:46;;33684:270;33594:360;;;;:::o;33960:640::-;34155:4;34193:3;34182:9;34178:19;34170:27;;34207:71;34275:1;34264:9;34260:17;34251:6;34207:71;:::i;:::-;34288:72;34356:2;34345:9;34341:18;34332:6;34288:72;:::i;:::-;34370;34438:2;34427:9;34423:18;34414:6;34370:72;:::i;:::-;34489:9;34483:4;34479:20;34474:2;34463:9;34459:18;34452:48;34517:76;34588:4;34579:6;34517:76;:::i;:::-;34509:84;;33960:640;;;;;;;:::o;34606:141::-;34662:5;34693:6;34687:13;34678:22;;34709:32;34735:5;34709:32;:::i;:::-;34606:141;;;;:::o;34753:349::-;34822:6;34871:2;34859:9;34850:7;34846:23;34842:32;34839:119;;;34877:79;;:::i;:::-;34839:119;34997:1;35022:63;35077:7;35068:6;35057:9;35053:22;35022:63;:::i;:::-;35012:73;;34968:127;34753:349;;;;:::o;35108:182::-;35248:34;35244:1;35236:6;35232:14;35225:58;35108:182;:::o;35296:366::-;35438:3;35459:67;35523:2;35518:3;35459:67;:::i;:::-;35452:74;;35535:93;35624:3;35535:93;:::i;:::-;35653:2;35648:3;35644:12;35637:19;;35296:366;;;:::o;35668:419::-;35834:4;35872:2;35861:9;35857:18;35849:26;;35921:9;35915:4;35911:20;35907:1;35896:9;35892:17;35885:47;35949:131;36075:4;35949:131;:::i;:::-;35941:139;;35668:419;;;:::o;36093:178::-;36233:30;36229:1;36221:6;36217:14;36210:54;36093:178;:::o;36277:366::-;36419:3;36440:67;36504:2;36499:3;36440:67;:::i;:::-;36433:74;;36516:93;36605:3;36516:93;:::i;:::-;36634:2;36629:3;36625:12;36618:19;;36277:366;;;:::o;36649:419::-;36815:4;36853:2;36842:9;36838:18;36830:26;;36902:9;36896:4;36892:20;36888:1;36877:9;36873:17;36866:47;36930:131;37056:4;36930:131;:::i;:::-;36922:139;;36649:419;;;:::o

Swarm Source

ipfs://51ce7816055090b3374a020a31af771a4a4496cc643d6b5f11252791b833f8f3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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