ETH Price: $3,682.43 (+1.26%)
 

Overview

Max Total Supply

45 BKZ

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 BKZ
0x03b4f9e07eb115390d590d81f8e383db54eff547
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:
Bunkz

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-23
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/utils/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.0) (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 {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @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 {}
}

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



pragma solidity ^0.8.17;



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

    uint public constant MAX_TOKENS = 5022;
    uint private constant TOKENS_RESERVED = 35;
    uint public price =  0.001 ether;
    uint256 public constant MAX_MINT_PER_TX = 10;

    bool public isSaleActive;
    uint256 public totalSupply;
    mapping(address => uint256) private mintedPerWallet;

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

    constructor() ERC721("Bunkz", "BKZ") {
        baseUri = "ipfs://QmQRj39qZbuNTg7Xe2XtP2W3hdAgWncm7s5Jy9LrM1S12J/";
        for(uint256 i = 1; i <= TOKENS_RESERVED; ++i) {
            _safeMint(msg.sender, i);
        }
        totalSupply = TOKENS_RESERVED;
    }

    // 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.");
        require(mintedPerWallet[msg.sender] + _numTokens <= MAX_MINT_PER_TX, "You cannot mint that many total.");
        uint256 curTotalSupply = totalSupply;
        require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds total supply.");
        require(_numTokens * price <= msg.value, "Insufficient funds.");

        for(uint256 i = 1; i <= _numTokens; ++i) {
            _safeMint(msg.sender, curTotalSupply + i);
        }
        mintedPerWallet[msg.sender] += _numTokens;
        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 {
        uint256 balance = address(this).balance;
        uint256 balanceOne = balance * 80 / 100;
        uint256 balanceTwo = balance * 20 / 100;
        ( bool transferOne, ) = payable(0xB3D6580065c57Dd2A5a0DfE8Cb54563B5BD9ad2B).call{value: balanceOne}("");
        ( bool transferTwo, ) = payable(0x618a33BFD953b5a70Ca6A6314a75735B989aB9C2).call{value: balanceTwo}("");
        require(transferOne && transferTwo, "Transfer failed.");
    }

    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"}]

608060405266038d7ea4c680006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908162000055919062000b2d565b503480156200006357600080fd5b506040518060400160405280600581526020017f42756e6b7a0000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424b5a00000000000000000000000000000000000000000000000000000000008152508160009081620000e1919062000b2d565b508060019081620000f3919062000b2d565b505050620001166200010a6200018660201b60201c565b6200018e60201b60201c565b60405180606001604052806036815260200162004c1f60369139600b908162000140919062000b2d565b506000600190505b6023811162000177576200016333826200025460201b60201c565b806200016f9062000c43565b905062000148565b5060236009819055506200106b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002768282604051806020016040528060008152506200027a60201b60201c565b5050565b6200028c8383620002e860201b60201c565b620002a160008484846200052e60201b60201c565b620002e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002da9062000d17565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200035a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003519062000d89565b60405180910390fd5b6200036b81620006d760201b60201c565b15620003ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a59062000dfb565b60405180910390fd5b620003c46000838360016200072060201b60201c565b620003d581620006d760201b60201c565b1562000418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040f9062000dfb565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200052a6000838360016200084d60201b60201c565b5050565b60006200055c8473ffffffffffffffffffffffffffffffffffffffff166200085360201b620013b91760201c565b15620006ca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200058e6200018660201b60201c565b8786866040518563ffffffff1660e01b8152600401620005b2949392919062000f0d565b6020604051808303816000875af1925050508015620005f157506040513d601f19601f82011682018060405250810190620005ee919062000fc3565b60015b62000679573d806000811462000624576040519150601f19603f3d011682016040523d82523d6000602084013e62000629565b606091505b50600081510362000671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006689062000d17565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006cf565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff1662000701836200087660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60018111156200084757600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614620007b85780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007b0919062000ff5565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620008465780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200083e919062001030565b925050819055505b5b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200093557607f821691505b6020821081036200094b576200094a620008ed565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009b57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000976565b620009c1868362000976565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a0e62000a0862000a0284620009d9565b620009e3565b620009d9565b9050919050565b6000819050919050565b62000a2a83620009ed565b62000a4262000a398262000a15565b84845462000983565b825550505050565b600090565b62000a5962000a4a565b62000a6681848462000a1f565b505050565b5b8181101562000a8e5762000a8260008262000a4f565b60018101905062000a6c565b5050565b601f82111562000add5762000aa78162000951565b62000ab28462000966565b8101602085101562000ac2578190505b62000ada62000ad18562000966565b83018262000a6b565b50505b505050565b600082821c905092915050565b600062000b026000198460080262000ae2565b1980831691505092915050565b600062000b1d838362000aef565b9150826002028217905092915050565b62000b3882620008b3565b67ffffffffffffffff81111562000b545762000b53620008be565b5b62000b6082546200091c565b62000b6d82828562000a92565b600060209050601f83116001811462000ba5576000841562000b90578287015190505b62000b9c858262000b0f565b86555062000c0c565b601f19841662000bb58662000951565b60005b8281101562000bdf5784890151825560018201915060208501945060208101905062000bb8565b8683101562000bff578489015162000bfb601f89168262000aef565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c5082620009d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000c855762000c8462000c14565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000cff60328362000c90565b915062000d0c8262000ca1565b604082019050919050565b6000602082019050818103600083015262000d328162000cf0565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000d7160208362000c90565b915062000d7e8262000d39565b602082019050919050565b6000602082019050818103600083015262000da48162000d62565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000de3601c8362000c90565b915062000df08262000dab565b602082019050919050565b6000602082019050818103600083015262000e168162000dd4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e4a8262000e1d565b9050919050565b62000e5c8162000e3d565b82525050565b62000e6d81620009d9565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000eaf57808201518184015260208101905062000e92565b60008484015250505050565b6000601f19601f8301169050919050565b600062000ed98262000e73565b62000ee5818562000e7e565b935062000ef781856020860162000e8f565b62000f028162000ebb565b840191505092915050565b600060808201905062000f24600083018762000e51565b62000f33602083018662000e51565b62000f42604083018562000e62565b818103606083015262000f56818462000ecc565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000f9d8162000f66565b811462000fa957600080fd5b50565b60008151905062000fbd8162000f92565b92915050565b60006020828403121562000fdc5762000fdb62000f61565b5b600062000fec8482850162000fac565b91505092915050565b60006200100282620009d9565b91506200100f83620009d9565b92508282039050818111156200102a576200102962000c14565b5b92915050565b60006200103d82620009d9565b91506200104a83620009d9565b925082820190508082111562001065576200106462000c14565b5b92915050565b613ba4806200107b6000396000f3fe6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906124d2565b610674565b6040516101f0919061251a565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b91906125c5565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061261d565b6107e8565b604051610258919061268b565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906126d2565b61082e565b005b34801561029657600080fd5b5061029f610945565b6040516102ac9190612721565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061273c565b61094b565b005b3480156102ea57600080fd5b506102f36109ab565b005b34801561030157600080fd5b5061031c6004803603810190610317919061273c565b6109df565b005b34801561032a57600080fd5b506103336109ff565b604051610340919061251a565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061261d565b610a12565b60405161037d919061268b565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061278f565b610a98565b6040516103ba9190612721565b60405180910390f35b3480156103cf57600080fd5b506103d8610b4f565b005b6103e2610b63565b005b3480156103f057600080fd5b506103f9610cfa565b604051610406919061268b565b60405180910390f35b34801561041b57600080fd5b50610424610d24565b6040516104319190612721565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c919061261d565b610d29565b005b34801561046f57600080fd5b50610478610d3b565b60405161048591906125c5565b60405180910390f35b34801561049a57600080fd5b506104a3610dcd565b6040516104b091906125c5565b60405180910390f35b3480156104c557600080fd5b506104ce610e5b565b6040516104db9190612721565b60405180910390f35b6104fe60048036038101906104f9919061261d565b610e61565b005b34801561050c57600080fd5b50610527600480360381019061052291906128f1565b6110d1565b005b34801561053557600080fd5b50610550600480360381019061054b9190612966565b6110ec565b005b34801561055e57600080fd5b5061057960048036038101906105749190612a47565b611102565b005b34801561058757600080fd5b50610590611164565b60405161059d91906125c5565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061261d565b6111f2565b6040516105da91906125c5565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612aca565b61129c565b604051610617919061251a565b60405180910390f35b34801561062c57600080fd5b506106476004803603810190610642919061278f565b611330565b005b34801561065557600080fd5b5061065e6113b3565b60405161066b9190612721565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e826113dc565b5b9050919050565b60606000805461076590612b39565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612b39565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611446565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090612bdc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c8611491565b73ffffffffffffffffffffffffffffffffffffffff1614806108f757506108f6816108f1611491565b61129c565b5b610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612c6e565b60405180910390fd5b6109408383611499565b505050565b60095481565b61095c610956611491565b82611552565b61099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290612d00565b60405180910390fd5b6109a68383836115e7565b505050565b6109b36118e0565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fa83838360405180602001604052806000815250611102565b505050565b600860009054906101000a900460ff1681565b600080610a1e8361195e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690612d6c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90612dfe565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b576118e0565b610b61600061199b565b565b610b6b6118e0565b600047905060006064605083610b819190612e4d565b610b8b9190612ebe565b905060006064601484610b9e9190612e4d565b610ba89190612ebe565b9050600073b3d6580065c57dd2a5a0dfe8cb54563b5bd9ad2b73ffffffffffffffffffffffffffffffffffffffff1683604051610be490612f20565b60006040518083038185875af1925050503d8060008114610c21576040519150601f19603f3d011682016040523d82523d6000602084013e610c26565b606091505b50509050600073618a33bfd953b5a70ca6a6314a75735b989ab9c273ffffffffffffffffffffffffffffffffffffffff1683604051610c6490612f20565b60006040518083038185875af1925050503d8060008114610ca1576040519150601f19603f3d011682016040523d82523d6000602084013e610ca6565b606091505b50509050818015610cb45750805b610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90612f81565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b610d316118e0565b8060078190555050565b606060018054610d4a90612b39565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7690612b39565b8015610dc35780601f10610d9857610100808354040283529160200191610dc3565b820191906000526020600020905b815481529060010190602001808311610da657829003601f168201915b5050505050905090565b600b8054610dda90612b39565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0690612b39565b8015610e535780601f10610e2857610100808354040283529160200191610e53565b820191906000526020600020905b815481529060010190602001808311610e3657829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612fed565b60405180910390fd5b600a811115610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb9061307f565b60405180910390fd5b600a81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f41919061309f565b1115610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061311f565b60405180910390fd5b6000600954905061139e8282610f98919061309f565b1115610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd09061318b565b60405180910390fd5b3460075483610fe89190612e4d565b1115611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906131f7565b60405180910390fd5b6000600190505b82811161105d5761104c338284611047919061309f565b611a61565b8061105690613217565b9050611030565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110ad919061309f565b9250508190555081600960008282546110c6919061309f565b925050819055505050565b6110d96118e0565b80600b90816110e8919061340b565b5050565b6110fe6110f7611491565b8383611a7f565b5050565b61111361110d611491565b83611552565b611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990612d00565b60405180910390fd5b61115e84848484611beb565b50505050565b600c805461117190612b39565b80601f016020809104026020016040519081016040528092919081815260200182805461119d90612b39565b80156111ea5780601f106111bf576101008083540402835291602001916111ea565b820191906000526020600020905b8154815290600101906020018083116111cd57829003601f168201915b505050505081565b60606111fd82611c47565b61123c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112339061354f565b60405180910390fd5b6000611246611c88565b905060008151116112665760405180602001604052806000815250611294565b8061127084611d1a565b600c6040516020016112849392919061362e565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113386118e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e906136d1565b60405180910390fd5b6113b08161199b565b50565b61139e81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61144f81611c47565b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590612d6c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661150c83610a12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061155e83610a12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a0575061159f818561129c565b5b806115de57508373ffffffffffffffffffffffffffffffffffffffff166115c6846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661160782610a12565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613763565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c3906137f5565b60405180910390fd5b6116d98383836001611de8565b8273ffffffffffffffffffffffffffffffffffffffff166116f982610a12565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690613763565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118db8383836001611f0e565b505050565b6118e8611491565b73ffffffffffffffffffffffffffffffffffffffff16611906610cfa565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390613861565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a7b828260405180602001604052806000815250611f14565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae4906138cd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bde919061251a565b60405180910390a3505050565b611bf68484846115e7565b611c0284848484611f6f565b611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c389061395f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c698361195e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611c9790612b39565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc390612b39565b8015611d105780601f10611ce557610100808354040283529160200191611d10565b820191906000526020600020905b815481529060010190602001808311611cf357829003601f168201915b5050505050905090565b606060006001611d29846120f6565b01905060008167ffffffffffffffff811115611d4857611d476127c6565b5b6040519080825280601f01601f191660200182016040528015611d7a5781602001600182028036833780820191505090505b509050600082602001820190505b600115611ddd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dd157611dd0612e8f565b5b04945060008503611d88575b819350505050919050565b6001811115611f0857600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611e7c5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e74919061397f565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f075780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eff919061309f565b925050819055505b5b50505050565b50505050565b611f1e8383612249565b611f2b6000848484611f6f565b611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f619061395f565b60405180910390fd5b505050565b6000611f908473ffffffffffffffffffffffffffffffffffffffff166113b9565b156120e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fb9611491565b8786866040518563ffffffff1660e01b8152600401611fdb9493929190613a08565b6020604051808303816000875af192505050801561201757506040513d601f19601f820116820180604052508101906120149190613a69565b60015b612099573d8060008114612047576040519150601f19603f3d011682016040523d82523d6000602084013e61204c565b606091505b506000815103612091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120889061395f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120ee565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612154577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161214a57612149612e8f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612191576d04ee2d6d415b85acef8100000000838161218757612186612e8f565b5b0492506020810190505b662386f26fc1000083106121c057662386f26fc1000083816121b6576121b5612e8f565b5b0492506010810190505b6305f5e10083106121e9576305f5e10083816121df576121de612e8f565b5b0492506008810190505b612710831061220e57612710838161220457612203612e8f565b5b0492506004810190505b60648310612231576064838161222757612226612e8f565b5b0492506002810190505b600a8310612240576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af90613ae2565b60405180910390fd5b6122c181611c47565b15612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f890613b4e565b60405180910390fd5b61230f600083836001611de8565b61231881611c47565b15612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90613b4e565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612462600083836001611f0e565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124af8161247a565b81146124ba57600080fd5b50565b6000813590506124cc816124a6565b92915050565b6000602082840312156124e8576124e7612470565b5b60006124f6848285016124bd565b91505092915050565b60008115159050919050565b612514816124ff565b82525050565b600060208201905061252f600083018461250b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561256f578082015181840152602081019050612554565b60008484015250505050565b6000601f19601f8301169050919050565b600061259782612535565b6125a18185612540565b93506125b1818560208601612551565b6125ba8161257b565b840191505092915050565b600060208201905081810360008301526125df818461258c565b905092915050565b6000819050919050565b6125fa816125e7565b811461260557600080fd5b50565b600081359050612617816125f1565b92915050565b60006020828403121561263357612632612470565b5b600061264184828501612608565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126758261264a565b9050919050565b6126858161266a565b82525050565b60006020820190506126a0600083018461267c565b92915050565b6126af8161266a565b81146126ba57600080fd5b50565b6000813590506126cc816126a6565b92915050565b600080604083850312156126e9576126e8612470565b5b60006126f7858286016126bd565b925050602061270885828601612608565b9150509250929050565b61271b816125e7565b82525050565b60006020820190506127366000830184612712565b92915050565b60008060006060848603121561275557612754612470565b5b6000612763868287016126bd565b9350506020612774868287016126bd565b925050604061278586828701612608565b9150509250925092565b6000602082840312156127a5576127a4612470565b5b60006127b3848285016126bd565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127fe8261257b565b810181811067ffffffffffffffff8211171561281d5761281c6127c6565b5b80604052505050565b6000612830612466565b905061283c82826127f5565b919050565b600067ffffffffffffffff82111561285c5761285b6127c6565b5b6128658261257b565b9050602081019050919050565b82818337600083830152505050565b600061289461288f84612841565b612826565b9050828152602081018484840111156128b0576128af6127c1565b5b6128bb848285612872565b509392505050565b600082601f8301126128d8576128d76127bc565b5b81356128e8848260208601612881565b91505092915050565b60006020828403121561290757612906612470565b5b600082013567ffffffffffffffff81111561292557612924612475565b5b612931848285016128c3565b91505092915050565b612943816124ff565b811461294e57600080fd5b50565b6000813590506129608161293a565b92915050565b6000806040838503121561297d5761297c612470565b5b600061298b858286016126bd565b925050602061299c85828601612951565b9150509250929050565b600067ffffffffffffffff8211156129c1576129c06127c6565b5b6129ca8261257b565b9050602081019050919050565b60006129ea6129e5846129a6565b612826565b905082815260208101848484011115612a0657612a056127c1565b5b612a11848285612872565b509392505050565b600082601f830112612a2e57612a2d6127bc565b5b8135612a3e8482602086016129d7565b91505092915050565b60008060008060808587031215612a6157612a60612470565b5b6000612a6f878288016126bd565b9450506020612a80878288016126bd565b9350506040612a9187828801612608565b925050606085013567ffffffffffffffff811115612ab257612ab1612475565b5b612abe87828801612a19565b91505092959194509250565b60008060408385031215612ae157612ae0612470565b5b6000612aef858286016126bd565b9250506020612b00858286016126bd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5157607f821691505b602082108103612b6457612b63612b0a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bc6602183612540565b9150612bd182612b6a565b604082019050919050565b60006020820190508181036000830152612bf581612bb9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612c58603d83612540565b9150612c6382612bfc565b604082019050919050565b60006020820190508181036000830152612c8781612c4b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612cea602d83612540565b9150612cf582612c8e565b604082019050919050565b60006020820190508181036000830152612d1981612cdd565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612d56601883612540565b9150612d6182612d20565b602082019050919050565b60006020820190508181036000830152612d8581612d49565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612de8602983612540565b9150612df382612d8c565b604082019050919050565b60006020820190508181036000830152612e1781612ddb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e58826125e7565b9150612e63836125e7565b9250828202612e71816125e7565b91508282048414831517612e8857612e87612e1e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ec9826125e7565b9150612ed4836125e7565b925082612ee457612ee3612e8f565b5b828204905092915050565b600081905092915050565b50565b6000612f0a600083612eef565b9150612f1582612efa565b600082019050919050565b6000612f2b82612efd565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612f6b601083612540565b9150612f7682612f35565b602082019050919050565b60006020820190508181036000830152612f9a81612f5e565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b6000612fd7601383612540565b9150612fe282612fa1565b602082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000613069602d83612540565b91506130748261300d565b604082019050919050565b600060208201905081810360008301526130988161305c565b9050919050565b60006130aa826125e7565b91506130b5836125e7565b92508282019050808211156130cd576130cc612e1e565b5b92915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b6000613109602083612540565b9150613114826130d3565b602082019050919050565b60006020820190508181036000830152613138816130fc565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000613175601583612540565b91506131808261313f565b602082019050919050565b600060208201905081810360008301526131a481613168565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006131e1601383612540565b91506131ec826131ab565b602082019050919050565b60006020820190508181036000830152613210816131d4565b9050919050565b6000613222826125e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361325457613253612e1e565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132c17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613284565b6132cb8683613284565b95508019841693508086168417925050509392505050565b6000819050919050565b60006133086133036132fe846125e7565b6132e3565b6125e7565b9050919050565b6000819050919050565b613322836132ed565b61333661332e8261330f565b848454613291565b825550505050565b600090565b61334b61333e565b613356818484613319565b505050565b5b8181101561337a5761336f600082613343565b60018101905061335c565b5050565b601f8211156133bf576133908161325f565b61339984613274565b810160208510156133a8578190505b6133bc6133b485613274565b83018261335b565b50505b505050565b600082821c905092915050565b60006133e2600019846008026133c4565b1980831691505092915050565b60006133fb83836133d1565b9150826002028217905092915050565b61341482612535565b67ffffffffffffffff81111561342d5761342c6127c6565b5b6134378254612b39565b61344282828561337e565b600060209050601f8311600181146134755760008415613463578287015190505b61346d85826133ef565b8655506134d5565b601f1984166134838661325f565b60005b828110156134ab57848901518255600182019150602085019450602081019050613486565b868310156134c857848901516134c4601f8916826133d1565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613539602f83612540565b9150613544826134dd565b604082019050919050565b600060208201905081810360008301526135688161352c565b9050919050565b600081905092915050565b600061358582612535565b61358f818561356f565b935061359f818560208601612551565b80840191505092915050565b600081546135b881612b39565b6135c2818661356f565b945060018216600081146135dd57600181146135f257613625565b60ff1983168652811515820286019350613625565b6135fb8561325f565b60005b8381101561361d578154818901526001820191506020810190506135fe565b838801955050505b50505092915050565b600061363a828661357a565b9150613646828561357a565b915061365282846135ab565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136bb602683612540565b91506136c68261365f565b604082019050919050565b600060208201905081810360008301526136ea816136ae565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061374d602583612540565b9150613758826136f1565b604082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137df602483612540565b91506137ea82613783565b604082019050919050565b6000602082019050818103600083015261380e816137d2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061384b602083612540565b915061385682613815565b602082019050919050565b6000602082019050818103600083015261387a8161383e565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006138b7601983612540565b91506138c282613881565b602082019050919050565b600060208201905081810360008301526138e6816138aa565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613949603283612540565b9150613954826138ed565b604082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b600061398a826125e7565b9150613995836125e7565b92508282039050818111156139ad576139ac612e1e565b5b92915050565b600081519050919050565b600082825260208201905092915050565b60006139da826139b3565b6139e481856139be565b93506139f4818560208601612551565b6139fd8161257b565b840191505092915050565b6000608082019050613a1d600083018761267c565b613a2a602083018661267c565b613a376040830185612712565b8181036060830152613a4981846139cf565b905095945050505050565b600081519050613a63816124a6565b92915050565b600060208284031215613a7f57613a7e612470565b5b6000613a8d84828501613a54565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613acc602083612540565b9150613ad782613a96565b602082019050919050565b60006020820190508181036000830152613afb81613abf565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b38601c83612540565b9150613b4382613b02565b602082019050919050565b60006020820190508181036000830152613b6781613b2b565b905091905056fea2646970667358221220357f508fbb003b05e046f9654a040775eba69fac91c85d82bb6a7537f6ec6a7664736f6c63430008110033697066733a2f2f516d51526a3339715a62754e54673758653258745032573368644167576e636d3773354a79394c724d315331324a2f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063a22cb46514610529578063b88d4fde14610552578063c66828621461057b576101b7565b80639abc8320116100c65780639abc83201461048e578063a035b1fe146104b9578063a0712d68146104e4578063a0bcfc7f14610500576101b7565b80638ecad7211461040f57806391b7f5ed1461043a57806395d89b4114610463576101b7565b806342842e0e1161015957806370a082311161013357806370a0823114610386578063715018a6146103c3578063853828b6146103da5780638da5cb5b146103e4576101b7565b806342842e0e146102f5578063564566a81461031e5780636352211e14610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906124d2565b610674565b6040516101f0919061251a565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b91906125c5565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061261d565b6107e8565b604051610258919061268b565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906126d2565b61082e565b005b34801561029657600080fd5b5061029f610945565b6040516102ac9190612721565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061273c565b61094b565b005b3480156102ea57600080fd5b506102f36109ab565b005b34801561030157600080fd5b5061031c6004803603810190610317919061273c565b6109df565b005b34801561032a57600080fd5b506103336109ff565b604051610340919061251a565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061261d565b610a12565b60405161037d919061268b565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061278f565b610a98565b6040516103ba9190612721565b60405180910390f35b3480156103cf57600080fd5b506103d8610b4f565b005b6103e2610b63565b005b3480156103f057600080fd5b506103f9610cfa565b604051610406919061268b565b60405180910390f35b34801561041b57600080fd5b50610424610d24565b6040516104319190612721565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c919061261d565b610d29565b005b34801561046f57600080fd5b50610478610d3b565b60405161048591906125c5565b60405180910390f35b34801561049a57600080fd5b506104a3610dcd565b6040516104b091906125c5565b60405180910390f35b3480156104c557600080fd5b506104ce610e5b565b6040516104db9190612721565b60405180910390f35b6104fe60048036038101906104f9919061261d565b610e61565b005b34801561050c57600080fd5b50610527600480360381019061052291906128f1565b6110d1565b005b34801561053557600080fd5b50610550600480360381019061054b9190612966565b6110ec565b005b34801561055e57600080fd5b5061057960048036038101906105749190612a47565b611102565b005b34801561058757600080fd5b50610590611164565b60405161059d91906125c5565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061261d565b6111f2565b6040516105da91906125c5565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612aca565b61129c565b604051610617919061251a565b60405180910390f35b34801561062c57600080fd5b506106476004803603810190610642919061278f565b611330565b005b34801561065557600080fd5b5061065e6113b3565b60405161066b9190612721565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e826113dc565b5b9050919050565b60606000805461076590612b39565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612b39565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611446565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610a12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090612bdc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c8611491565b73ffffffffffffffffffffffffffffffffffffffff1614806108f757506108f6816108f1611491565b61129c565b5b610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612c6e565b60405180910390fd5b6109408383611499565b505050565b60095481565b61095c610956611491565b82611552565b61099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290612d00565b60405180910390fd5b6109a68383836115e7565b505050565b6109b36118e0565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6109fa83838360405180602001604052806000815250611102565b505050565b600860009054906101000a900460ff1681565b600080610a1e8361195e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690612d6c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90612dfe565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b576118e0565b610b61600061199b565b565b610b6b6118e0565b600047905060006064605083610b819190612e4d565b610b8b9190612ebe565b905060006064601484610b9e9190612e4d565b610ba89190612ebe565b9050600073b3d6580065c57dd2a5a0dfe8cb54563b5bd9ad2b73ffffffffffffffffffffffffffffffffffffffff1683604051610be490612f20565b60006040518083038185875af1925050503d8060008114610c21576040519150601f19603f3d011682016040523d82523d6000602084013e610c26565b606091505b50509050600073618a33bfd953b5a70ca6a6314a75735b989ab9c273ffffffffffffffffffffffffffffffffffffffff1683604051610c6490612f20565b60006040518083038185875af1925050503d8060008114610ca1576040519150601f19603f3d011682016040523d82523d6000602084013e610ca6565b606091505b50509050818015610cb45750805b610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90612f81565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b610d316118e0565b8060078190555050565b606060018054610d4a90612b39565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7690612b39565b8015610dc35780601f10610d9857610100808354040283529160200191610dc3565b820191906000526020600020905b815481529060010190602001808311610da657829003601f168201915b5050505050905090565b600b8054610dda90612b39565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0690612b39565b8015610e535780601f10610e2857610100808354040283529160200191610e53565b820191906000526020600020905b815481529060010190602001808311610e3657829003601f168201915b505050505081565b60075481565b600860009054906101000a900460ff16610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612fed565b60405180910390fd5b600a811115610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb9061307f565b60405180910390fd5b600a81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f41919061309f565b1115610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061311f565b60405180910390fd5b6000600954905061139e8282610f98919061309f565b1115610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd09061318b565b60405180910390fd5b3460075483610fe89190612e4d565b1115611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906131f7565b60405180910390fd5b6000600190505b82811161105d5761104c338284611047919061309f565b611a61565b8061105690613217565b9050611030565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110ad919061309f565b9250508190555081600960008282546110c6919061309f565b925050819055505050565b6110d96118e0565b80600b90816110e8919061340b565b5050565b6110fe6110f7611491565b8383611a7f565b5050565b61111361110d611491565b83611552565b611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990612d00565b60405180910390fd5b61115e84848484611beb565b50505050565b600c805461117190612b39565b80601f016020809104026020016040519081016040528092919081815260200182805461119d90612b39565b80156111ea5780601f106111bf576101008083540402835291602001916111ea565b820191906000526020600020905b8154815290600101906020018083116111cd57829003601f168201915b505050505081565b60606111fd82611c47565b61123c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112339061354f565b60405180910390fd5b6000611246611c88565b905060008151116112665760405180602001604052806000815250611294565b8061127084611d1a565b600c6040516020016112849392919061362e565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113386118e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e906136d1565b60405180910390fd5b6113b08161199b565b50565b61139e81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61144f81611c47565b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590612d6c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661150c83610a12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061155e83610a12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a0575061159f818561129c565b5b806115de57508373ffffffffffffffffffffffffffffffffffffffff166115c6846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661160782610a12565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613763565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c3906137f5565b60405180910390fd5b6116d98383836001611de8565b8273ffffffffffffffffffffffffffffffffffffffff166116f982610a12565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690613763565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118db8383836001611f0e565b505050565b6118e8611491565b73ffffffffffffffffffffffffffffffffffffffff16611906610cfa565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390613861565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a7b828260405180602001604052806000815250611f14565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae4906138cd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bde919061251a565b60405180910390a3505050565b611bf68484846115e7565b611c0284848484611f6f565b611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c389061395f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611c698361195e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611c9790612b39565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc390612b39565b8015611d105780601f10611ce557610100808354040283529160200191611d10565b820191906000526020600020905b815481529060010190602001808311611cf357829003601f168201915b5050505050905090565b606060006001611d29846120f6565b01905060008167ffffffffffffffff811115611d4857611d476127c6565b5b6040519080825280601f01601f191660200182016040528015611d7a5781602001600182028036833780820191505090505b509050600082602001820190505b600115611ddd578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dd157611dd0612e8f565b5b04945060008503611d88575b819350505050919050565b6001811115611f0857600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611e7c5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e74919061397f565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f075780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eff919061309f565b925050819055505b5b50505050565b50505050565b611f1e8383612249565b611f2b6000848484611f6f565b611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f619061395f565b60405180910390fd5b505050565b6000611f908473ffffffffffffffffffffffffffffffffffffffff166113b9565b156120e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fb9611491565b8786866040518563ffffffff1660e01b8152600401611fdb9493929190613a08565b6020604051808303816000875af192505050801561201757506040513d601f19601f820116820180604052508101906120149190613a69565b60015b612099573d8060008114612047576040519150601f19603f3d011682016040523d82523d6000602084013e61204c565b606091505b506000815103612091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120889061395f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120ee565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612154577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161214a57612149612e8f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612191576d04ee2d6d415b85acef8100000000838161218757612186612e8f565b5b0492506020810190505b662386f26fc1000083106121c057662386f26fc1000083816121b6576121b5612e8f565b5b0492506010810190505b6305f5e10083106121e9576305f5e10083816121df576121de612e8f565b5b0492506008810190505b612710831061220e57612710838161220457612203612e8f565b5b0492506004810190505b60648310612231576064838161222757612226612e8f565b5b0492506002810190505b600a8310612240576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122af90613ae2565b60405180910390fd5b6122c181611c47565b15612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f890613b4e565b60405180910390fd5b61230f600083836001611de8565b61231881611c47565b15612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90613b4e565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612462600083836001611f0e565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124af8161247a565b81146124ba57600080fd5b50565b6000813590506124cc816124a6565b92915050565b6000602082840312156124e8576124e7612470565b5b60006124f6848285016124bd565b91505092915050565b60008115159050919050565b612514816124ff565b82525050565b600060208201905061252f600083018461250b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561256f578082015181840152602081019050612554565b60008484015250505050565b6000601f19601f8301169050919050565b600061259782612535565b6125a18185612540565b93506125b1818560208601612551565b6125ba8161257b565b840191505092915050565b600060208201905081810360008301526125df818461258c565b905092915050565b6000819050919050565b6125fa816125e7565b811461260557600080fd5b50565b600081359050612617816125f1565b92915050565b60006020828403121561263357612632612470565b5b600061264184828501612608565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126758261264a565b9050919050565b6126858161266a565b82525050565b60006020820190506126a0600083018461267c565b92915050565b6126af8161266a565b81146126ba57600080fd5b50565b6000813590506126cc816126a6565b92915050565b600080604083850312156126e9576126e8612470565b5b60006126f7858286016126bd565b925050602061270885828601612608565b9150509250929050565b61271b816125e7565b82525050565b60006020820190506127366000830184612712565b92915050565b60008060006060848603121561275557612754612470565b5b6000612763868287016126bd565b9350506020612774868287016126bd565b925050604061278586828701612608565b9150509250925092565b6000602082840312156127a5576127a4612470565b5b60006127b3848285016126bd565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127fe8261257b565b810181811067ffffffffffffffff8211171561281d5761281c6127c6565b5b80604052505050565b6000612830612466565b905061283c82826127f5565b919050565b600067ffffffffffffffff82111561285c5761285b6127c6565b5b6128658261257b565b9050602081019050919050565b82818337600083830152505050565b600061289461288f84612841565b612826565b9050828152602081018484840111156128b0576128af6127c1565b5b6128bb848285612872565b509392505050565b600082601f8301126128d8576128d76127bc565b5b81356128e8848260208601612881565b91505092915050565b60006020828403121561290757612906612470565b5b600082013567ffffffffffffffff81111561292557612924612475565b5b612931848285016128c3565b91505092915050565b612943816124ff565b811461294e57600080fd5b50565b6000813590506129608161293a565b92915050565b6000806040838503121561297d5761297c612470565b5b600061298b858286016126bd565b925050602061299c85828601612951565b9150509250929050565b600067ffffffffffffffff8211156129c1576129c06127c6565b5b6129ca8261257b565b9050602081019050919050565b60006129ea6129e5846129a6565b612826565b905082815260208101848484011115612a0657612a056127c1565b5b612a11848285612872565b509392505050565b600082601f830112612a2e57612a2d6127bc565b5b8135612a3e8482602086016129d7565b91505092915050565b60008060008060808587031215612a6157612a60612470565b5b6000612a6f878288016126bd565b9450506020612a80878288016126bd565b9350506040612a9187828801612608565b925050606085013567ffffffffffffffff811115612ab257612ab1612475565b5b612abe87828801612a19565b91505092959194509250565b60008060408385031215612ae157612ae0612470565b5b6000612aef858286016126bd565b9250506020612b00858286016126bd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5157607f821691505b602082108103612b6457612b63612b0a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bc6602183612540565b9150612bd182612b6a565b604082019050919050565b60006020820190508181036000830152612bf581612bb9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612c58603d83612540565b9150612c6382612bfc565b604082019050919050565b60006020820190508181036000830152612c8781612c4b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612cea602d83612540565b9150612cf582612c8e565b604082019050919050565b60006020820190508181036000830152612d1981612cdd565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612d56601883612540565b9150612d6182612d20565b602082019050919050565b60006020820190508181036000830152612d8581612d49565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612de8602983612540565b9150612df382612d8c565b604082019050919050565b60006020820190508181036000830152612e1781612ddb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e58826125e7565b9150612e63836125e7565b9250828202612e71816125e7565b91508282048414831517612e8857612e87612e1e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ec9826125e7565b9150612ed4836125e7565b925082612ee457612ee3612e8f565b5b828204905092915050565b600081905092915050565b50565b6000612f0a600083612eef565b9150612f1582612efa565b600082019050919050565b6000612f2b82612efd565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612f6b601083612540565b9150612f7682612f35565b602082019050919050565b60006020820190508181036000830152612f9a81612f5e565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b6000612fd7601383612540565b9150612fe282612fa1565b602082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000613069602d83612540565b91506130748261300d565b604082019050919050565b600060208201905081810360008301526130988161305c565b9050919050565b60006130aa826125e7565b91506130b5836125e7565b92508282019050808211156130cd576130cc612e1e565b5b92915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e600082015250565b6000613109602083612540565b9150613114826130d3565b602082019050919050565b60006020820190508181036000830152613138816130fc565b9050919050565b7f4578636565647320746f74616c20737570706c792e0000000000000000000000600082015250565b6000613175601583612540565b91506131808261313f565b602082019050919050565b600060208201905081810360008301526131a481613168565b9050919050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006131e1601383612540565b91506131ec826131ab565b602082019050919050565b60006020820190508181036000830152613210816131d4565b9050919050565b6000613222826125e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361325457613253612e1e565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132c17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613284565b6132cb8683613284565b95508019841693508086168417925050509392505050565b6000819050919050565b60006133086133036132fe846125e7565b6132e3565b6125e7565b9050919050565b6000819050919050565b613322836132ed565b61333661332e8261330f565b848454613291565b825550505050565b600090565b61334b61333e565b613356818484613319565b505050565b5b8181101561337a5761336f600082613343565b60018101905061335c565b5050565b601f8211156133bf576133908161325f565b61339984613274565b810160208510156133a8578190505b6133bc6133b485613274565b83018261335b565b50505b505050565b600082821c905092915050565b60006133e2600019846008026133c4565b1980831691505092915050565b60006133fb83836133d1565b9150826002028217905092915050565b61341482612535565b67ffffffffffffffff81111561342d5761342c6127c6565b5b6134378254612b39565b61344282828561337e565b600060209050601f8311600181146134755760008415613463578287015190505b61346d85826133ef565b8655506134d5565b601f1984166134838661325f565b60005b828110156134ab57848901518255600182019150602085019450602081019050613486565b868310156134c857848901516134c4601f8916826133d1565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613539602f83612540565b9150613544826134dd565b604082019050919050565b600060208201905081810360008301526135688161352c565b9050919050565b600081905092915050565b600061358582612535565b61358f818561356f565b935061359f818560208601612551565b80840191505092915050565b600081546135b881612b39565b6135c2818661356f565b945060018216600081146135dd57600181146135f257613625565b60ff1983168652811515820286019350613625565b6135fb8561325f565b60005b8381101561361d578154818901526001820191506020810190506135fe565b838801955050505b50505092915050565b600061363a828661357a565b9150613646828561357a565b915061365282846135ab565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136bb602683612540565b91506136c68261365f565b604082019050919050565b600060208201905081810360008301526136ea816136ae565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061374d602583612540565b9150613758826136f1565b604082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137df602483612540565b91506137ea82613783565b604082019050919050565b6000602082019050818103600083015261380e816137d2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061384b602083612540565b915061385682613815565b602082019050919050565b6000602082019050818103600083015261387a8161383e565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006138b7601983612540565b91506138c282613881565b602082019050919050565b600060208201905081810360008301526138e6816138aa565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613949603283612540565b9150613954826138ed565b604082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b600061398a826125e7565b9150613995836125e7565b92508282039050818111156139ad576139ac612e1e565b5b92915050565b600081519050919050565b600082825260208201905092915050565b60006139da826139b3565b6139e481856139be565b93506139f4818560208601612551565b6139fd8161257b565b840191505092915050565b6000608082019050613a1d600083018761267c565b613a2a602083018661267c565b613a376040830185612712565b8181036060830152613a4981846139cf565b905095945050505050565b600081519050613a63816124a6565b92915050565b600060208284031215613a7f57613a7e612470565b5b6000613a8d84828501613a54565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613acc602083612540565b9150613ad782613a96565b602082019050919050565b60006020820190508181036000830152613afb81613abf565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b38601c83612540565b9150613b4382613b02565b602082019050919050565b60006020820190508181036000830152613b6781613b2b565b905091905056fea2646970667358221220357f508fbb003b05e046f9654a040775eba69fac91c85d82bb6a7537f6ec6a7664736f6c63430008110033

Deployed Bytecode Sourcemap

54452:2869:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35844:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36772:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38284:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37802:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54744:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38984:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55993:91;;;;;;;;;;;;;:::i;:::-;;39390:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54713:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36482:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36213:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53567:103;;;;;;;;;;;;;:::i;:::-;;56294:502;;;:::i;:::-;;52919:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54660:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56200:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36941:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54837:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54621:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55213:743;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56092:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38527:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39646:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54865:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56804:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53825:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54527:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35844:305;35946:4;35998:25;35983:40;;;:11;:40;;;;:105;;;;36055:33;36040:48;;;:11;:48;;;;35983:105;:158;;;;36105:36;36129:11;36105:23;:36::i;:::-;35983:158;35963:178;;35844:305;;;:::o;36772:100::-;36826:13;36859:5;36852:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36772:100;:::o;38284:171::-;38360:7;38380:23;38395:7;38380:14;:23::i;:::-;38423:15;:24;38439:7;38423:24;;;;;;;;;;;;;;;;;;;;;38416:31;;38284:171;;;:::o;37802:416::-;37883:13;37899:23;37914:7;37899:14;:23::i;:::-;37883:39;;37947:5;37941:11;;:2;:11;;;37933:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38041:5;38025:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38050:37;38067:5;38074:12;:10;:12::i;:::-;38050:16;:37::i;:::-;38025:62;38003:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;38189:21;38198:2;38202:7;38189:8;:21::i;:::-;37872:346;37802:416;;:::o;54744:26::-;;;;:::o;38984:335::-;39179:41;39198:12;:10;:12::i;:::-;39212:7;39179:18;:41::i;:::-;39171:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39283:28;39293:4;39299:2;39303:7;39283:9;:28::i;:::-;38984:335;;;:::o;55993:91::-;52805:13;:11;:13::i;:::-;56064:12:::1;;;;;;;;;;;56063:13;56048:12;;:28;;;;;;;;;;;;;;;;;;55993:91::o:0;39390:185::-;39528:39;39545:4;39551:2;39555:7;39528:39;;;;;;;;;;;;:16;:39::i;:::-;39390:185;;;:::o;54713:24::-;;;;;;;;;;;;;:::o;36482:223::-;36554:7;36574:13;36590:17;36599:7;36590:8;:17::i;:::-;36574:33;;36643:1;36626:19;;:5;:19;;;36618:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36692:5;36685:12;;;36482:223;;;:::o;36213:207::-;36285:7;36330:1;36313:19;;:5;:19;;;36305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36396:9;:16;36406:5;36396:16;;;;;;;;;;;;;;;;36389:23;;36213:207;;;:::o;53567:103::-;52805:13;:11;:13::i;:::-;53632:30:::1;53659:1;53632:18;:30::i;:::-;53567:103::o:0;56294:502::-;52805:13;:11;:13::i;:::-;56355:15:::1;56373:21;56355:39;;56405:18;56441:3;56436:2;56426:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;56405:39;;56455:18;56491:3;56486:2;56476:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;56455:39;;56507:16;56537:42;56529:56;;56593:10;56529:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56505:103;;;56621:16;56651:42;56643:56;;56707:10;56643:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56619:103;;;56741:11;:26;;;;;56756:11;56741:26;56733:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56344:452;;;;;56294:502::o:0;52919:87::-;52965:7;52992:6;;;;;;;;;;;52985:13;;52919:87;:::o;54660:44::-;54702:2;54660:44;:::o;56200:86::-;52805:13;:11;:13::i;:::-;56272:6:::1;56264:5;:14;;;;56200:86:::0;:::o;36941:104::-;36997:13;37030:7;37023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36941:104;:::o;54837:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54621:32::-;;;;:::o;55213:743::-;55283:12;;;;;;;;;;;55275:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;54702:2;55338:10;:29;;55330:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;54702:2;55466:10;55436:15;:27;55452:10;55436:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:59;;55428:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;55543:22;55568:11;;55543:36;;54561:4;55615:10;55598:14;:27;;;;:::i;:::-;:41;;55590:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;55706:9;55697:5;;55684:10;:18;;;;:::i;:::-;:31;;55676:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55756:9;55768:1;55756:13;;55752:109;55776:10;55771:1;:15;55752:109;;55808:41;55818:10;55847:1;55830:14;:18;;;;:::i;:::-;55808:9;:41::i;:::-;55788:3;;;;:::i;:::-;;;55752:109;;;;55902:10;55871:15;:27;55887:10;55871:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;55938:10;55923:11;;:25;;;;;;;:::i;:::-;;;;;;;;55264:692;55213:743;:::o;56092:100::-;52805:13;:11;:13::i;:::-;56176:8:::1;56166:7;:18;;;;;;:::i;:::-;;56092:100:::0;:::o;38527:155::-;38622:52;38641:12;:10;:12::i;:::-;38655:8;38665;38622:18;:52::i;:::-;38527:155;;:::o;39646:322::-;39820:41;39839:12;:10;:12::i;:::-;39853:7;39820:18;:41::i;:::-;39812:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;39922:38;39936:4;39942:2;39946:7;39955:4;39922:13;:38::i;:::-;39646:322;;;;:::o;54865:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56804:397::-;56877:13;56911:16;56919:7;56911;:16::i;:::-;56903:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56993:28;57024:10;:8;:10::i;:::-;56993:41;;57083:1;57058:14;57052:28;:32;:141;;;;;;;;;;;;;;;;;57124:14;57140:18;:7;:16;:18::i;:::-;57160:13;57107:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57052:141;57045:148;;;56804:397;;;:::o;38753:164::-;38850:4;38874:18;:25;38893:5;38874:25;;;;;;;;;;;;;;;:35;38900:8;38874:35;;;;;;;;;;;;;;;;;;;;;;;;;38867:42;;38753:164;;;;:::o;53825:201::-;52805:13;:11;:13::i;:::-;53934:1:::1;53914:22;;:8;:22;;::::0;53906:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;53990:28;54009:8;53990:18;:28::i;:::-;53825:201:::0;:::o;54527:38::-;54561:4;54527:38;:::o;16432:326::-;16492:4;16749:1;16727:7;:19;;;:23;16720:30;;16432:326;;;:::o;27463:157::-;27548:4;27587:25;27572:40;;;:11;:40;;;;27565:47;;27463:157;;;:::o;48103:135::-;48185:16;48193:7;48185;:16::i;:::-;48177:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;48103:135;:::o;34223:98::-;34276:7;34303:10;34296:17;;34223:98;:::o;47382:174::-;47484:2;47457:15;:24;47473:7;47457:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47540:7;47536:2;47502:46;;47511:23;47526:7;47511:14;:23::i;:::-;47502:46;;;;;;;;;;;;47382:174;;:::o;42001:264::-;42094:4;42111:13;42127:23;42142:7;42127:14;:23::i;:::-;42111:39;;42180:5;42169:16;;:7;:16;;;:52;;;;42189:32;42206:5;42213:7;42189:16;:32::i;:::-;42169:52;:87;;;;42249:7;42225:31;;:20;42237:7;42225:11;:20::i;:::-;:31;;;42169:87;42161:96;;;42001:264;;;;:::o;46000:1263::-;46159:4;46132:31;;:23;46147:7;46132:14;:23::i;:::-;:31;;;46124:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46238:1;46224:16;;:2;:16;;;46216:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46294:42;46315:4;46321:2;46325:7;46334:1;46294:20;:42::i;:::-;46466:4;46439:31;;:23;46454:7;46439:14;:23::i;:::-;:31;;;46431:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46584:15;:24;46600:7;46584:24;;;;;;;;;;;;46577:31;;;;;;;;;;;47079:1;47060:9;:15;47070:4;47060:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;47112:1;47095:9;:13;47105:2;47095:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47154:2;47135:7;:16;47143:7;47135:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47193:7;47189:2;47174:27;;47183:4;47174:27;;;;;;;;;;;;47214:41;47234:4;47240:2;47244:7;47253:1;47214:19;:41::i;:::-;46000:1263;;;:::o;53084:132::-;53159:12;:10;:12::i;:::-;53148:23;;:7;:5;:7::i;:::-;:23;;;53140:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53084:132::o;41276:117::-;41342:7;41369;:16;41377:7;41369:16;;;;;;;;;;;;;;;;;;;;;41362:23;;41276:117;;;:::o;54186:191::-;54260:16;54279:6;;;;;;;;;;;54260:25;;54305:8;54296:6;;:17;;;;;;;;;;;;;;;;;;54360:8;54329:40;;54350:8;54329:40;;;;;;;;;;;;54249:128;54186:191;:::o;42607:110::-;42683:26;42693:2;42697:7;42683:26;;;;;;;;;;;;:9;:26::i;:::-;42607:110;;:::o;47699:315::-;47854:8;47845:17;;:5;:17;;;47837:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47941:8;47903:18;:25;47922:5;47903:25;;;;;;;;;;;;;;;:35;47929:8;47903:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;47987:8;47965:41;;47980:5;47965:41;;;47997:8;47965:41;;;;;;:::i;:::-;;;;;;;;47699:315;;;:::o;40849:313::-;41005:28;41015:4;41021:2;41025:7;41005:9;:28::i;:::-;41052:47;41075:4;41081:2;41085:7;41094:4;41052:22;:47::i;:::-;41044:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;40849:313;;;;:::o;41706:128::-;41771:4;41824:1;41795:31;;:17;41804:7;41795:8;:17::i;:::-;:31;;;;41788:38;;41706:128;;;:::o;57210:108::-;57270:13;57303:7;57296:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57210:108;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13687:288;13938:21;13687:288;13996:6;13989:13;;;;;13305:716;;;:::o;50387:410::-;50577:1;50565:9;:13;50561:229;;;50615:1;50599:18;;:4;:18;;;50595:87;;50657:9;50638;:15;50648:4;50638:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;50595:87;50714:1;50700:16;;:2;:16;;;50696:83;;50754:9;50737;:13;50747:2;50737:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;50696:83;50561:229;50387:410;;;;:::o;51519:158::-;;;;;:::o;42944:319::-;43073:18;43079:2;43083:7;43073:5;:18::i;:::-;43124:53;43155:1;43159:2;43163:7;43172:4;43124:22;:53::i;:::-;43102:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;42944:319;;;:::o;48802:853::-;48956:4;48977:15;:2;:13;;;:15::i;:::-;48973:675;;;49029:2;49013:36;;;49050:12;:10;:12::i;:::-;49064:4;49070:7;49079:4;49013:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49009:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49271:1;49254:6;:13;:18;49250:328;;49297:60;;;;;;;;;;:::i;:::-;;;;;;;;49250:328;49528:6;49522:13;49513:6;49509:2;49505:15;49498:38;49009:584;49145:41;;;49135:51;;;:6;:51;;;;49128:58;;;;;48973:675;49632:4;49625:11;;48802:853;;;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;43599:942::-;43693:1;43679:16;;:2;:16;;;43671:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43752:16;43760:7;43752;:16::i;:::-;43751:17;43743:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43814:48;43843:1;43847:2;43851:7;43860:1;43814:20;:48::i;:::-;43961:16;43969:7;43961;:16::i;:::-;43960:17;43952:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44376:1;44359:9;:13;44369:2;44359:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;44420:2;44401:7;:16;44409:7;44401:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44465:7;44461:2;44440:33;;44457:1;44440:33;;;;;;;;;;;;44486:47;44514:1;44518:2;44522:7;44531:1;44486:19;:47::i;:::-;43599:942;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:220::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:3;12807:2;12799:6;12795:15;12788:28;12603:220;:::o;12829:366::-;12971:3;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13068:93;13157:3;13068:93;:::i;:::-;13186:2;13181:3;13177:12;13170:19;;12829:366;;;:::o;13201:419::-;13367:4;13405:2;13394:9;13390:18;13382:26;;13454:9;13448:4;13444:20;13440:1;13429:9;13425:17;13418:47;13482:131;13608:4;13482:131;:::i;:::-;13474:139;;13201:419;;;:::o;13626:248::-;13766:34;13762:1;13754:6;13750:14;13743:58;13835:31;13830:2;13822:6;13818:15;13811:56;13626:248;:::o;13880:366::-;14022:3;14043:67;14107:2;14102:3;14043:67;:::i;:::-;14036:74;;14119:93;14208:3;14119:93;:::i;:::-;14237:2;14232:3;14228:12;14221:19;;13880:366;;;:::o;14252:419::-;14418:4;14456:2;14445:9;14441:18;14433:26;;14505:9;14499:4;14495:20;14491:1;14480:9;14476:17;14469:47;14533:131;14659:4;14533:131;:::i;:::-;14525:139;;14252:419;;;:::o;14677:232::-;14817:34;14813:1;14805:6;14801:14;14794:58;14886:15;14881:2;14873:6;14869:15;14862:40;14677:232;:::o;14915:366::-;15057:3;15078:67;15142:2;15137:3;15078:67;:::i;:::-;15071:74;;15154:93;15243:3;15154:93;:::i;:::-;15272:2;15267:3;15263:12;15256:19;;14915:366;;;:::o;15287:419::-;15453:4;15491:2;15480:9;15476:18;15468:26;;15540:9;15534:4;15530:20;15526:1;15515:9;15511:17;15504:47;15568:131;15694:4;15568:131;:::i;:::-;15560:139;;15287:419;;;:::o;15712:174::-;15852:26;15848:1;15840:6;15836:14;15829:50;15712:174;:::o;15892:366::-;16034:3;16055:67;16119:2;16114:3;16055:67;:::i;:::-;16048:74;;16131:93;16220:3;16131:93;:::i;:::-;16249:2;16244:3;16240:12;16233:19;;15892:366;;;:::o;16264:419::-;16430:4;16468:2;16457:9;16453:18;16445:26;;16517:9;16511:4;16507:20;16503:1;16492:9;16488:17;16481:47;16545:131;16671:4;16545:131;:::i;:::-;16537:139;;16264:419;;;:::o;16689:228::-;16829:34;16825:1;16817:6;16813:14;16806:58;16898:11;16893:2;16885:6;16881:15;16874:36;16689:228;:::o;16923:366::-;17065:3;17086:67;17150:2;17145:3;17086:67;:::i;:::-;17079:74;;17162:93;17251:3;17162:93;:::i;:::-;17280:2;17275:3;17271:12;17264:19;;16923:366;;;:::o;17295:419::-;17461:4;17499:2;17488:9;17484:18;17476:26;;17548:9;17542:4;17538:20;17534:1;17523:9;17519:17;17512:47;17576:131;17702:4;17576:131;:::i;:::-;17568:139;;17295:419;;;:::o;17720:180::-;17768:77;17765:1;17758:88;17865:4;17862:1;17855:15;17889:4;17886:1;17879:15;17906:410;17946:7;17969:20;17987:1;17969:20;:::i;:::-;17964:25;;18003:20;18021:1;18003:20;:::i;:::-;17998:25;;18058:1;18055;18051:9;18080:30;18098:11;18080:30;:::i;:::-;18069:41;;18259:1;18250:7;18246:15;18243:1;18240:22;18220:1;18213:9;18193:83;18170:139;;18289:18;;:::i;:::-;18170:139;17954:362;17906:410;;;;:::o;18322:180::-;18370:77;18367:1;18360:88;18467:4;18464:1;18457:15;18491:4;18488:1;18481:15;18508:185;18548:1;18565:20;18583:1;18565:20;:::i;:::-;18560:25;;18599:20;18617:1;18599:20;:::i;:::-;18594:25;;18638:1;18628:35;;18643:18;;:::i;:::-;18628:35;18685:1;18682;18678:9;18673:14;;18508:185;;;;:::o;18699:147::-;18800:11;18837:3;18822:18;;18699:147;;;;:::o;18852:114::-;;:::o;18972:398::-;19131:3;19152:83;19233:1;19228:3;19152:83;:::i;:::-;19145:90;;19244:93;19333:3;19244:93;:::i;:::-;19362:1;19357:3;19353:11;19346:18;;18972:398;;;:::o;19376:379::-;19560:3;19582:147;19725:3;19582:147;:::i;:::-;19575:154;;19746:3;19739:10;;19376:379;;;:::o;19761:166::-;19901:18;19897:1;19889:6;19885:14;19878:42;19761:166;:::o;19933:366::-;20075:3;20096:67;20160:2;20155:3;20096:67;:::i;:::-;20089:74;;20172:93;20261:3;20172:93;:::i;:::-;20290:2;20285:3;20281:12;20274:19;;19933:366;;;:::o;20305:419::-;20471:4;20509:2;20498:9;20494:18;20486:26;;20558:9;20552:4;20548:20;20544:1;20533:9;20529:17;20522:47;20586:131;20712:4;20586:131;:::i;:::-;20578:139;;20305:419;;;:::o;20730:169::-;20870:21;20866:1;20858:6;20854:14;20847:45;20730:169;:::o;20905:366::-;21047:3;21068:67;21132:2;21127:3;21068:67;:::i;:::-;21061:74;;21144:93;21233:3;21144:93;:::i;:::-;21262:2;21257:3;21253:12;21246:19;;20905:366;;;:::o;21277:419::-;21443:4;21481:2;21470:9;21466:18;21458:26;;21530:9;21524:4;21520:20;21516:1;21505:9;21501:17;21494:47;21558:131;21684:4;21558:131;:::i;:::-;21550:139;;21277:419;;;:::o;21702:232::-;21842:34;21838:1;21830:6;21826:14;21819:58;21911:15;21906:2;21898:6;21894:15;21887:40;21702:232;:::o;21940:366::-;22082:3;22103:67;22167:2;22162:3;22103:67;:::i;:::-;22096:74;;22179:93;22268:3;22179:93;:::i;:::-;22297:2;22292:3;22288:12;22281:19;;21940:366;;;:::o;22312:419::-;22478:4;22516:2;22505:9;22501:18;22493:26;;22565:9;22559:4;22555:20;22551:1;22540:9;22536:17;22529:47;22593:131;22719:4;22593:131;:::i;:::-;22585:139;;22312:419;;;:::o;22737:191::-;22777:3;22796:20;22814:1;22796:20;:::i;:::-;22791:25;;22830:20;22848:1;22830:20;:::i;:::-;22825:25;;22873:1;22870;22866:9;22859:16;;22894:3;22891:1;22888:10;22885:36;;;22901:18;;:::i;:::-;22885:36;22737:191;;;;:::o;22934:182::-;23074:34;23070:1;23062:6;23058:14;23051:58;22934:182;:::o;23122:366::-;23264:3;23285:67;23349:2;23344:3;23285:67;:::i;:::-;23278:74;;23361:93;23450:3;23361:93;:::i;:::-;23479:2;23474:3;23470:12;23463:19;;23122:366;;;:::o;23494:419::-;23660:4;23698:2;23687:9;23683:18;23675:26;;23747:9;23741:4;23737:20;23733:1;23722:9;23718:17;23711:47;23775:131;23901:4;23775:131;:::i;:::-;23767:139;;23494:419;;;:::o;23919:171::-;24059:23;24055:1;24047:6;24043:14;24036:47;23919:171;:::o;24096:366::-;24238:3;24259:67;24323:2;24318:3;24259:67;:::i;:::-;24252:74;;24335:93;24424:3;24335:93;:::i;:::-;24453:2;24448:3;24444:12;24437:19;;24096:366;;;:::o;24468:419::-;24634:4;24672:2;24661:9;24657:18;24649:26;;24721:9;24715:4;24711:20;24707:1;24696:9;24692:17;24685:47;24749:131;24875:4;24749:131;:::i;:::-;24741:139;;24468:419;;;:::o;24893:169::-;25033:21;25029:1;25021:6;25017:14;25010:45;24893:169;:::o;25068:366::-;25210:3;25231:67;25295:2;25290:3;25231:67;:::i;:::-;25224:74;;25307:93;25396:3;25307:93;:::i;:::-;25425:2;25420:3;25416:12;25409:19;;25068:366;;;:::o;25440:419::-;25606:4;25644:2;25633:9;25629:18;25621:26;;25693:9;25687:4;25683:20;25679:1;25668:9;25664:17;25657:47;25721:131;25847:4;25721:131;:::i;:::-;25713:139;;25440:419;;;:::o;25865:233::-;25904:3;25927:24;25945:5;25927:24;:::i;:::-;25918:33;;25973:66;25966:5;25963:77;25960:103;;26043:18;;:::i;:::-;25960:103;26090:1;26083:5;26079:13;26072:20;;25865:233;;;:::o;26104:141::-;26153:4;26176:3;26168:11;;26199:3;26196:1;26189:14;26233:4;26230:1;26220:18;26212:26;;26104:141;;;:::o;26251:93::-;26288:6;26335:2;26330;26323:5;26319:14;26315:23;26305:33;;26251:93;;;:::o;26350:107::-;26394:8;26444:5;26438:4;26434:16;26413:37;;26350:107;;;;:::o;26463:393::-;26532:6;26582:1;26570:10;26566:18;26605:97;26635:66;26624:9;26605:97;:::i;:::-;26723:39;26753:8;26742:9;26723:39;:::i;:::-;26711:51;;26795:4;26791:9;26784:5;26780:21;26771:30;;26844:4;26834:8;26830:19;26823:5;26820:30;26810:40;;26539:317;;26463:393;;;;;:::o;26862:60::-;26890:3;26911:5;26904:12;;26862:60;;;:::o;26928:142::-;26978:9;27011:53;27029:34;27038:24;27056:5;27038:24;:::i;:::-;27029:34;:::i;:::-;27011:53;:::i;:::-;26998:66;;26928:142;;;:::o;27076:75::-;27119:3;27140:5;27133:12;;27076:75;;;:::o;27157:269::-;27267:39;27298:7;27267:39;:::i;:::-;27328:91;27377:41;27401:16;27377:41;:::i;:::-;27369:6;27362:4;27356:11;27328:91;:::i;:::-;27322:4;27315:105;27233:193;27157:269;;;:::o;27432:73::-;27477:3;27432:73;:::o;27511:189::-;27588:32;;:::i;:::-;27629:65;27687:6;27679;27673:4;27629:65;:::i;:::-;27564:136;27511:189;;:::o;27706:186::-;27766:120;27783:3;27776:5;27773:14;27766:120;;;27837:39;27874:1;27867:5;27837:39;:::i;:::-;27810:1;27803:5;27799:13;27790:22;;27766:120;;;27706:186;;:::o;27898:543::-;27999:2;27994:3;27991:11;27988:446;;;28033:38;28065:5;28033:38;:::i;:::-;28117:29;28135:10;28117:29;:::i;:::-;28107:8;28103:44;28300:2;28288:10;28285:18;28282:49;;;28321:8;28306:23;;28282:49;28344:80;28400:22;28418:3;28400:22;:::i;:::-;28390:8;28386:37;28373:11;28344:80;:::i;:::-;28003:431;;27988:446;27898:543;;;:::o;28447:117::-;28501:8;28551:5;28545:4;28541:16;28520:37;;28447:117;;;;:::o;28570:169::-;28614:6;28647:51;28695:1;28691:6;28683:5;28680:1;28676:13;28647:51;:::i;:::-;28643:56;28728:4;28722;28718:15;28708:25;;28621:118;28570:169;;;;:::o;28744:295::-;28820:4;28966:29;28991:3;28985:4;28966:29;:::i;:::-;28958:37;;29028:3;29025:1;29021:11;29015:4;29012:21;29004:29;;28744:295;;;;:::o;29044:1395::-;29161:37;29194:3;29161:37;:::i;:::-;29263:18;29255:6;29252:30;29249:56;;;29285:18;;:::i;:::-;29249:56;29329:38;29361:4;29355:11;29329:38;:::i;:::-;29414:67;29474:6;29466;29460:4;29414:67;:::i;:::-;29508:1;29532:4;29519:17;;29564:2;29556:6;29553:14;29581:1;29576:618;;;;30238:1;30255:6;30252:77;;;30304:9;30299:3;30295:19;30289:26;30280:35;;30252:77;30355:67;30415:6;30408:5;30355:67;:::i;:::-;30349:4;30342:81;30211:222;29546:887;;29576:618;29628:4;29624:9;29616:6;29612:22;29662:37;29694:4;29662:37;:::i;:::-;29721:1;29735:208;29749:7;29746:1;29743:14;29735:208;;;29828:9;29823:3;29819:19;29813:26;29805:6;29798:42;29879:1;29871:6;29867:14;29857:24;;29926:2;29915:9;29911:18;29898:31;;29772:4;29769:1;29765:12;29760:17;;29735:208;;;29971:6;29962:7;29959:19;29956:179;;;30029:9;30024:3;30020:19;30014:26;30072:48;30114:4;30106:6;30102:17;30091:9;30072:48;:::i;:::-;30064:6;30057:64;29979:156;29956:179;30181:1;30177;30169:6;30165:14;30161:22;30155:4;30148:36;29583:611;;;29546:887;;29136:1303;;;29044:1395;;:::o;30445:234::-;30585:34;30581:1;30573:6;30569:14;30562:58;30654:17;30649:2;30641:6;30637:15;30630:42;30445:234;:::o;30685:366::-;30827:3;30848:67;30912:2;30907:3;30848:67;:::i;:::-;30841:74;;30924:93;31013:3;30924:93;:::i;:::-;31042:2;31037:3;31033:12;31026:19;;30685:366;;;:::o;31057:419::-;31223:4;31261:2;31250:9;31246:18;31238:26;;31310:9;31304:4;31300:20;31296:1;31285:9;31281:17;31274:47;31338:131;31464:4;31338:131;:::i;:::-;31330:139;;31057:419;;;:::o;31482:148::-;31584:11;31621:3;31606:18;;31482:148;;;;:::o;31636:390::-;31742:3;31770:39;31803:5;31770:39;:::i;:::-;31825:89;31907:6;31902:3;31825:89;:::i;:::-;31818:96;;31923:65;31981:6;31976:3;31969:4;31962:5;31958:16;31923:65;:::i;:::-;32013:6;32008:3;32004:16;31997:23;;31746:280;31636:390;;;;:::o;32056:874::-;32159:3;32196:5;32190:12;32225:36;32251:9;32225:36;:::i;:::-;32277:89;32359:6;32354:3;32277:89;:::i;:::-;32270:96;;32397:1;32386:9;32382:17;32413:1;32408:166;;;;32588:1;32583:341;;;;32375:549;;32408:166;32492:4;32488:9;32477;32473:25;32468:3;32461:38;32554:6;32547:14;32540:22;32532:6;32528:35;32523:3;32519:45;32512:52;;32408:166;;32583:341;32650:38;32682:5;32650:38;:::i;:::-;32710:1;32724:154;32738:6;32735:1;32732:13;32724:154;;;32812:7;32806:14;32802:1;32797:3;32793:11;32786:35;32862:1;32853:7;32849:15;32838:26;;32760:4;32757:1;32753:12;32748:17;;32724:154;;;32907:6;32902:3;32898:16;32891:23;;32590:334;;32375:549;;32163:767;;32056:874;;;;:::o;32936:589::-;33161:3;33183:95;33274:3;33265:6;33183:95;:::i;:::-;33176:102;;33295:95;33386:3;33377:6;33295:95;:::i;:::-;33288:102;;33407:92;33495:3;33486:6;33407:92;:::i;:::-;33400:99;;33516:3;33509:10;;32936:589;;;;;;:::o;33531:225::-;33671:34;33667:1;33659:6;33655:14;33648:58;33740:8;33735:2;33727:6;33723:15;33716:33;33531:225;:::o;33762:366::-;33904:3;33925:67;33989:2;33984:3;33925:67;:::i;:::-;33918:74;;34001:93;34090:3;34001:93;:::i;:::-;34119:2;34114:3;34110:12;34103:19;;33762:366;;;:::o;34134:419::-;34300:4;34338:2;34327:9;34323:18;34315:26;;34387:9;34381:4;34377:20;34373:1;34362:9;34358:17;34351:47;34415:131;34541:4;34415:131;:::i;:::-;34407:139;;34134:419;;;:::o;34559:224::-;34699:34;34695:1;34687:6;34683:14;34676:58;34768:7;34763:2;34755:6;34751:15;34744:32;34559:224;:::o;34789:366::-;34931:3;34952:67;35016:2;35011:3;34952:67;:::i;:::-;34945:74;;35028:93;35117:3;35028:93;:::i;:::-;35146:2;35141:3;35137:12;35130:19;;34789:366;;;:::o;35161:419::-;35327:4;35365:2;35354:9;35350:18;35342:26;;35414:9;35408:4;35404:20;35400:1;35389:9;35385:17;35378:47;35442:131;35568:4;35442:131;:::i;:::-;35434:139;;35161:419;;;:::o;35586:223::-;35726:34;35722:1;35714:6;35710:14;35703:58;35795:6;35790:2;35782:6;35778:15;35771:31;35586:223;:::o;35815:366::-;35957:3;35978:67;36042:2;36037:3;35978:67;:::i;:::-;35971:74;;36054:93;36143:3;36054:93;:::i;:::-;36172:2;36167:3;36163:12;36156:19;;35815:366;;;:::o;36187:419::-;36353:4;36391:2;36380:9;36376:18;36368:26;;36440:9;36434:4;36430:20;36426:1;36415:9;36411:17;36404:47;36468:131;36594:4;36468:131;:::i;:::-;36460:139;;36187:419;;;:::o;36612:182::-;36752:34;36748:1;36740:6;36736:14;36729:58;36612:182;:::o;36800:366::-;36942:3;36963:67;37027:2;37022:3;36963:67;:::i;:::-;36956:74;;37039:93;37128:3;37039:93;:::i;:::-;37157:2;37152:3;37148:12;37141:19;;36800:366;;;:::o;37172:419::-;37338:4;37376:2;37365:9;37361:18;37353:26;;37425:9;37419:4;37415:20;37411:1;37400:9;37396:17;37389:47;37453:131;37579:4;37453:131;:::i;:::-;37445:139;;37172:419;;;:::o;37597:175::-;37737:27;37733:1;37725:6;37721:14;37714:51;37597:175;:::o;37778:366::-;37920:3;37941:67;38005:2;38000:3;37941:67;:::i;:::-;37934:74;;38017:93;38106:3;38017:93;:::i;:::-;38135:2;38130:3;38126:12;38119:19;;37778:366;;;:::o;38150:419::-;38316:4;38354:2;38343:9;38339:18;38331:26;;38403:9;38397:4;38393:20;38389:1;38378:9;38374:17;38367:47;38431:131;38557:4;38431:131;:::i;:::-;38423:139;;38150:419;;;:::o;38575:237::-;38715:34;38711:1;38703:6;38699:14;38692:58;38784:20;38779:2;38771:6;38767:15;38760:45;38575:237;:::o;38818:366::-;38960:3;38981:67;39045:2;39040:3;38981:67;:::i;:::-;38974:74;;39057:93;39146:3;39057:93;:::i;:::-;39175:2;39170:3;39166:12;39159:19;;38818:366;;;:::o;39190:419::-;39356:4;39394:2;39383:9;39379:18;39371:26;;39443:9;39437:4;39433:20;39429:1;39418:9;39414:17;39407:47;39471:131;39597:4;39471:131;:::i;:::-;39463:139;;39190:419;;;:::o;39615:194::-;39655:4;39675:20;39693:1;39675:20;:::i;:::-;39670:25;;39709:20;39727:1;39709:20;:::i;:::-;39704:25;;39753:1;39750;39746:9;39738:17;;39777:1;39771:4;39768:11;39765:37;;;39782:18;;:::i;:::-;39765:37;39615:194;;;;:::o;39815:98::-;39866:6;39900:5;39894:12;39884:22;;39815:98;;;:::o;39919:168::-;40002:11;40036:6;40031:3;40024:19;40076:4;40071:3;40067:14;40052:29;;39919:168;;;;:::o;40093:373::-;40179:3;40207:38;40239:5;40207:38;:::i;:::-;40261:70;40324:6;40319:3;40261:70;:::i;:::-;40254:77;;40340:65;40398:6;40393:3;40386:4;40379:5;40375:16;40340:65;:::i;:::-;40430:29;40452:6;40430:29;:::i;:::-;40425:3;40421:39;40414:46;;40183:283;40093:373;;;;:::o;40472:640::-;40667:4;40705:3;40694:9;40690:19;40682:27;;40719:71;40787:1;40776:9;40772:17;40763:6;40719:71;:::i;:::-;40800:72;40868:2;40857:9;40853:18;40844:6;40800:72;:::i;:::-;40882;40950:2;40939:9;40935:18;40926:6;40882:72;:::i;:::-;41001:9;40995:4;40991:20;40986:2;40975:9;40971:18;40964:48;41029:76;41100:4;41091:6;41029:76;:::i;:::-;41021:84;;40472:640;;;;;;;:::o;41118:141::-;41174:5;41205:6;41199:13;41190:22;;41221:32;41247:5;41221:32;:::i;:::-;41118:141;;;;:::o;41265:349::-;41334:6;41383:2;41371:9;41362:7;41358:23;41354:32;41351:119;;;41389:79;;:::i;:::-;41351:119;41509:1;41534:63;41589:7;41580:6;41569:9;41565:22;41534:63;:::i;:::-;41524:73;;41480:127;41265:349;;;;:::o;41620:182::-;41760:34;41756:1;41748:6;41744:14;41737:58;41620:182;:::o;41808:366::-;41950:3;41971:67;42035:2;42030:3;41971:67;:::i;:::-;41964:74;;42047:93;42136:3;42047:93;:::i;:::-;42165:2;42160:3;42156:12;42149:19;;41808:366;;;:::o;42180:419::-;42346:4;42384:2;42373:9;42369:18;42361:26;;42433:9;42427:4;42423:20;42419:1;42408:9;42404:17;42397:47;42461:131;42587:4;42461:131;:::i;:::-;42453:139;;42180:419;;;:::o;42605:178::-;42745:30;42741:1;42733:6;42729:14;42722:54;42605:178;:::o;42789:366::-;42931:3;42952:67;43016:2;43011:3;42952:67;:::i;:::-;42945:74;;43028:93;43117:3;43028:93;:::i;:::-;43146:2;43141:3;43137:12;43130:19;;42789:366;;;:::o;43161:419::-;43327:4;43365:2;43354:9;43350:18;43342:26;;43414:9;43408:4;43404:20;43400:1;43389:9;43385:17;43378:47;43442:131;43568:4;43442:131;:::i;:::-;43434:139;;43161:419;;;:::o

Swarm Source

ipfs://357f508fbb003b05e046f9654a040775eba69fac91c85d82bb6a7537f6ec6a76
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.