ETH Price: $2,403.16 (+1.30%)

Token

SkytopianResidents (SR)
 

Overview

Max Total Supply

10,000 SR

Holders

81

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SR
0xd0deedFfbf125BB75E27694170fb5C1e5aC1E855
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:
SkytopianResidents

Compiler Version
v0.8.10+commit.fc410830

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-27
*/

// SPDX-License-Identifier: UNLICENSED
// File: @openzeppelin/contracts/utils/math/Math.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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/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/token/ERC721/extensions/ERC721Pausable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

// File: contracts/SkytopianResidents.sol


pragma solidity ^0.8.0;




contract SkytopianResidents is Ownable, ERC721Pausable {
    using Strings for uint256;

    uint256 public constant totalSupply = 10000;
    
    uint256 internal _mintAmountPerAddress = 1;
    
    uint256 internal _currentSupply;
    
    string private baseURI = "https://resources.cryptoskyland.com/SkytopianResidents/metadata_";

    mapping(address => bool) internal _minters;
    
    mapping(address => uint256) internal _mintedNumList;

    event MintLog(address to, uint256 tokenid, uint256 price);

    constructor(string memory name, string memory symbol)  ERC721(name, symbol){
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function setMinter(address minter, bool enabled) onlyOwner public {
        _minters[minter] = enabled;
    }

    function setMintAmountPerAddress(uint256 mintAmountPerAddress) onlyOwner public {
        _mintAmountPerAddress = mintAmountPerAddress;
    }

    function getMintAmountPerAddress()  public view returns(uint256 ){
        return _mintAmountPerAddress;
    }

    function isMinter(address who) public view returns (bool) {
        return _minters[who];
    }

    function mintedNum(address who) public view returns(uint256) {
        return _mintedNumList[who];
    }

    function mint(address to, uint256 tokenid, uint256 price)  public  {
        require(
            isMinter(msg.sender),
            "Only a minter can mint"
        );
        require(_mintedNumList[to] < _mintAmountPerAddress,
        "Exceed mint amount per address.");
        require(_currentSupply < totalSupply, "Exceed totalSupply");
        
        _safeMint(to, tokenid);
        _mintedNumList[to]++;
        _currentSupply++;

        emit MintLog(to, tokenid, price);
    }

    function batchTransfer(
        address from,
        address to,
        uint256[] calldata tokenidlist
    ) public {
        for (uint256 i = 0; i < tokenidlist.length; i++) {
            uint256 tokenid = tokenidlist[i];
            transferFrom(from, to,tokenid);
        }
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        _requireMinted(tokenId);
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseUri(string memory uri) public onlyOwner {
        baseURI = uri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"MintLog","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenidlist","type":"uint256[]"}],"name":"batchTransfer","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":[],"name":"getMintAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"who","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenid","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"mintedNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmountPerAddress","type":"uint256"}],"name":"setMintAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setMinter","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160085560405180606001604052806040815260200162003d1860409139600a90805190602001906200003a929190620001b3565b503480156200004857600080fd5b5060405162003d5838038062003d5883398181016040528101906200006e919062000400565b81816200009062000084620000e760201b60201c565b620000ef60201b60201c565b8160019080519060200190620000a8929190620001b3565b508060029080519060200190620000c1929190620001b3565b5050506000600760006101000a81548160ff0219169083151502179055505050620004ea565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c190620004b4565b90600052602060002090601f016020900481019282620001e5576000855562000231565b82601f106200020057805160ff191683800117855562000231565b8280016001018555821562000231579182015b828111156200023057825182559160200191906001019062000213565b5b50905062000240919062000244565b5090565b5b808211156200025f57600081600090555060010162000245565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002cc8262000281565b810181811067ffffffffffffffff82111715620002ee57620002ed62000292565b5b80604052505050565b60006200030362000263565b9050620003118282620002c1565b919050565b600067ffffffffffffffff82111562000334576200033362000292565b5b6200033f8262000281565b9050602081019050919050565b60005b838110156200036c5780820151818401526020810190506200034f565b838111156200037c576000848401525b50505050565b600062000399620003938462000316565b620002f7565b905082815260208101848484011115620003b857620003b76200027c565b5b620003c58482856200034c565b509392505050565b600082601f830112620003e557620003e462000277565b5b8151620003f784826020860162000382565b91505092915050565b600080604083850312156200041a57620004196200026d565b5b600083015167ffffffffffffffff8111156200043b576200043a62000272565b5b6200044985828601620003cd565b925050602083015167ffffffffffffffff8111156200046d576200046c62000272565b5b6200047b85828601620003cd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004cd57607f821691505b60208210811415620004e457620004e362000485565b5b50919050565b61381e80620004fa6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd146104b7578063cf456ae7146104e7578063e985e9c514610503578063f2fde38b14610533576101c4565b8063a22cb4651461044f578063aa271e1a1461046b578063b88d4fde1461049b576101c4565b80638ab02ca7116100d35780638ab02ca7146103c75780638da5cb5b146103f757806395d89b4114610415578063a0bcfc7f14610433576101c4565b806370a0823114610383578063715018a6146103b35780638456cb59146103bd576101c4565b806323b872dd1161016657806342842e0e1161014057806342842e0e146102fb578063477e5a80146103175780635c975abb146103355780636352211e14610353576101c4565b806323b872dd146102b95780633593cebc146102d55780633f4ba83a146102f1576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b314610263578063156e29f61461027f57806318160ddd1461029b576101c4565b806301ffc9a7146101c95780630411fb9f146101f957806306fdde0314610215575b600080fd5b6101e360048036038101906101de9190612300565b61054f565b6040516101f09190612348565b60405180910390f35b610213600480360381019061020e9190612399565b610631565b005b61021d610643565b60405161022a919061245f565b60405180910390f35b61024d60048036038101906102489190612399565b6106d5565b60405161025a91906124c2565b60405180910390f35b61027d60048036038101906102789190612509565b61071b565b005b61029960048036038101906102949190612549565b610833565b005b6102a36109fb565b6040516102b091906125ab565b60405180910390f35b6102d360048036038101906102ce91906125c6565b610a01565b005b6102ef60048036038101906102ea919061267e565b610a61565b005b6102f9610ab3565b005b610315600480360381019061031091906125c6565b610ac5565b005b61031f610ae5565b60405161032c91906125ab565b60405180910390f35b61033d610aef565b60405161034a9190612348565b60405180910390f35b61036d60048036038101906103689190612399565b610b06565b60405161037a91906124c2565b60405180910390f35b61039d600480360381019061039891906126f2565b610b8d565b6040516103aa91906125ab565b60405180910390f35b6103bb610c45565b005b6103c5610c59565b005b6103e160048036038101906103dc91906126f2565b610c6b565b6040516103ee91906125ab565b60405180910390f35b6103ff610cb4565b60405161040c91906124c2565b60405180910390f35b61041d610cdd565b60405161042a919061245f565b60405180910390f35b61044d6004803603810190610448919061284f565b610d6f565b005b610469600480360381019061046491906128c4565b610d91565b005b610485600480360381019061048091906126f2565b610da7565b6040516104929190612348565b60405180910390f35b6104b560048036038101906104b091906129a5565b610dfd565b005b6104d160048036038101906104cc9190612399565b610e5f565b6040516104de919061245f565b60405180910390f35b61050160048036038101906104fc91906128c4565b610e9c565b005b61051d60048036038101906105189190612a28565b610eff565b60405161052a9190612348565b60405180910390f35b61054d600480360381019061054891906126f2565b610f93565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062a575061062982611017565b5b9050919050565b610639611081565b8060088190555050565b60606001805461065290612a97565b80601f016020809104026020016040519081016040528092919081815260200182805461067e90612a97565b80156106cb5780601f106106a0576101008083540402835291602001916106cb565b820191906000526020600020905b8154815290600101906020018083116106ae57829003601f168201915b5050505050905090565b60006106e0826110ff565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072682610b06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078e90612b3b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107b661114a565b73ffffffffffffffffffffffffffffffffffffffff1614806107e557506107e4816107df61114a565b610eff565b5b610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b90612bcd565b60405180910390fd5b61082e8383611152565b505050565b61083c33610da7565b61087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087290612c39565b60405180910390fd5b600854600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f590612ca5565b60405180910390fd5b61271060095410610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90612d11565b60405180910390fd5b61094e838361120b565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061099e90612d60565b9190505550600960008154809291906109b690612d60565b91905055507f0cec0f8dc9537ba913422308f2a169d2f1248cc3e7dcab19ce34e07c3cf66ddc8383836040516109ee93929190612da9565b60405180910390a1505050565b61271081565b610a12610a0c61114a565b82611229565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890612e52565b60405180910390fd5b610a5c8383836112be565b505050565b60005b82829050811015610aac576000838383818110610a8457610a83612e72565b5b905060200201359050610a98868683610a01565b508080610aa490612d60565b915050610a64565b5050505050565b610abb611081565b610ac36115b8565b565b610ae083838360405180602001604052806000815250610dfd565b505050565b6000600854905090565b6000600760009054906101000a900460ff16905090565b600080610b128361161b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90612eed565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590612f7f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4d611081565b610c576000611658565b565b610c61611081565b610c6961171c565b565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610cec90612a97565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612a97565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b610d77611081565b80600a9080519060200190610d8d9291906121f1565b5050565b610da3610d9c61114a565b838361177f565b5050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e0e610e0861114a565b83611229565b610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490612e52565b60405180910390fd5b610e59848484846118ec565b50505050565b6060610e6a826110ff565b600a610e7583611948565b604051602001610e869291906130bb565b6040516020818303038152906040529050919050565b610ea4611081565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f9b611081565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561100b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110029061315c565b60405180910390fd5b61101481611658565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61108961114a565b73ffffffffffffffffffffffffffffffffffffffff166110a7610cb4565b73ffffffffffffffffffffffffffffffffffffffff16146110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906131c8565b60405180910390fd5b565b61110881611a20565b611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90612eed565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111c583610b06565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611225828260405180602001604052806000815250611a61565b5050565b60008061123583610b06565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061127757506112768185610eff565b5b806112b557508373ffffffffffffffffffffffffffffffffffffffff1661129d846106d5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112de82610b06565b73ffffffffffffffffffffffffffffffffffffffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b9061325a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b906132ec565b60405180910390fd5b6113b18383836001611abc565b8273ffffffffffffffffffffffffffffffffffffffff166113d182610b06565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061325a565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115b38383836001611b16565b505050565b6115c0611b1c565b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61160461114a565b60405161161191906124c2565b60405180910390a1565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611724611b65565b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861176861114a565b60405161177591906124c2565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613358565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118df9190612348565b60405180910390a3505050565b6118f78484846112be565b61190384848484611baf565b611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906133ea565b60405180910390fd5b50505050565b60606000600161195784611d37565b01905060008167ffffffffffffffff81111561197657611975612724565b5b6040519080825280601f01601f1916602001820160405280156119a85781602001600182028036833780820191505090505b509050600082602001820190505b600115611a15578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816119ff576119fe61340a565b5b0494506000851415611a1057611a15565b6119b6565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a428361161b565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611a6b8383611e8a565b611a786000848484611baf565b611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae906133ea565b60405180910390fd5b505050565b611ac8848484846120a8565b611ad0610aef565b15611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b07906134ab565b60405180910390fd5b50505050565b50505050565b611b24610aef565b611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613517565b60405180910390fd5b565b611b6d610aef565b15611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba490613583565b60405180910390fd5b565b6000611bd08473ffffffffffffffffffffffffffffffffffffffff166121ce565b15611d2a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bf961114a565b8786866040518563ffffffff1660e01b8152600401611c1b94939291906135f8565b6020604051808303816000875af1925050508015611c5757506040513d601f19601f82011682018060405250810190611c549190613659565b60015b611cda573d8060008114611c87576040519150601f19603f3d011682016040523d82523d6000602084013e611c8c565b606091505b50600081511415611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc9906133ea565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d2f565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611d95577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611d8b57611d8a61340a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611dd2576d04ee2d6d415b85acef81000000008381611dc857611dc761340a565b5b0492506020810190505b662386f26fc100008310611e0157662386f26fc100008381611df757611df661340a565b5b0492506010810190505b6305f5e1008310611e2a576305f5e1008381611e2057611e1f61340a565b5b0492506008810190505b6127108310611e4f576127108381611e4557611e4461340a565b5b0492506004810190505b60648310611e725760648381611e6857611e6761340a565b5b0492506002810190505b600a8310611e81576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef1906136d2565b60405180910390fd5b611f0381611a20565b15611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a9061373e565b60405180910390fd5b611f51600083836001611abc565b611f5a81611a20565b15611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f919061373e565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a4600083836001611b16565b5050565b60018111156121c857600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461213c5780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612134919061375e565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121c75780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121bf9190613792565b925050819055505b5b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121fd90612a97565b90600052602060002090601f01602090048101928261221f5760008555612266565b82601f1061223857805160ff1916838001178555612266565b82800160010185558215612266579182015b8281111561226557825182559160200191906001019061224a565b5b5090506122739190612277565b5090565b5b80821115612290576000816000905550600101612278565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122dd816122a8565b81146122e857600080fd5b50565b6000813590506122fa816122d4565b92915050565b6000602082840312156123165761231561229e565b5b6000612324848285016122eb565b91505092915050565b60008115159050919050565b6123428161232d565b82525050565b600060208201905061235d6000830184612339565b92915050565b6000819050919050565b61237681612363565b811461238157600080fd5b50565b6000813590506123938161236d565b92915050565b6000602082840312156123af576123ae61229e565b5b60006123bd84828501612384565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124005780820151818401526020810190506123e5565b8381111561240f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612431826123c6565b61243b81856123d1565b935061244b8185602086016123e2565b61245481612415565b840191505092915050565b600060208201905081810360008301526124798184612426565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124ac82612481565b9050919050565b6124bc816124a1565b82525050565b60006020820190506124d760008301846124b3565b92915050565b6124e6816124a1565b81146124f157600080fd5b50565b600081359050612503816124dd565b92915050565b600080604083850312156125205761251f61229e565b5b600061252e858286016124f4565b925050602061253f85828601612384565b9150509250929050565b6000806000606084860312156125625761256161229e565b5b6000612570868287016124f4565b935050602061258186828701612384565b925050604061259286828701612384565b9150509250925092565b6125a581612363565b82525050565b60006020820190506125c0600083018461259c565b92915050565b6000806000606084860312156125df576125de61229e565b5b60006125ed868287016124f4565b93505060206125fe868287016124f4565b925050604061260f86828701612384565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261263e5761263d612619565b5b8235905067ffffffffffffffff81111561265b5761265a61261e565b5b60208301915083602082028301111561267757612676612623565b5b9250929050565b600080600080606085870312156126985761269761229e565b5b60006126a6878288016124f4565b94505060206126b7878288016124f4565b935050604085013567ffffffffffffffff8111156126d8576126d76122a3565b5b6126e487828801612628565b925092505092959194509250565b6000602082840312156127085761270761229e565b5b6000612716848285016124f4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61275c82612415565b810181811067ffffffffffffffff8211171561277b5761277a612724565b5b80604052505050565b600061278e612294565b905061279a8282612753565b919050565b600067ffffffffffffffff8211156127ba576127b9612724565b5b6127c382612415565b9050602081019050919050565b82818337600083830152505050565b60006127f26127ed8461279f565b612784565b90508281526020810184848401111561280e5761280d61271f565b5b6128198482856127d0565b509392505050565b600082601f83011261283657612835612619565b5b81356128468482602086016127df565b91505092915050565b6000602082840312156128655761286461229e565b5b600082013567ffffffffffffffff811115612883576128826122a3565b5b61288f84828501612821565b91505092915050565b6128a18161232d565b81146128ac57600080fd5b50565b6000813590506128be81612898565b92915050565b600080604083850312156128db576128da61229e565b5b60006128e9858286016124f4565b92505060206128fa858286016128af565b9150509250929050565b600067ffffffffffffffff82111561291f5761291e612724565b5b61292882612415565b9050602081019050919050565b600061294861294384612904565b612784565b9050828152602081018484840111156129645761296361271f565b5b61296f8482856127d0565b509392505050565b600082601f83011261298c5761298b612619565b5b813561299c848260208601612935565b91505092915050565b600080600080608085870312156129bf576129be61229e565b5b60006129cd878288016124f4565b94505060206129de878288016124f4565b93505060406129ef87828801612384565b925050606085013567ffffffffffffffff811115612a1057612a0f6122a3565b5b612a1c87828801612977565b91505092959194509250565b60008060408385031215612a3f57612a3e61229e565b5b6000612a4d858286016124f4565b9250506020612a5e858286016124f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aaf57607f821691505b60208210811415612ac357612ac2612a68565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b256021836123d1565b9150612b3082612ac9565b604082019050919050565b60006020820190508181036000830152612b5481612b18565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612bb7603d836123d1565b9150612bc282612b5b565b604082019050919050565b60006020820190508181036000830152612be681612baa565b9050919050565b7f4f6e6c792061206d696e7465722063616e206d696e7400000000000000000000600082015250565b6000612c236016836123d1565b9150612c2e82612bed565b602082019050919050565b60006020820190508181036000830152612c5281612c16565b9050919050565b7f457863656564206d696e7420616d6f756e742070657220616464726573732e00600082015250565b6000612c8f601f836123d1565b9150612c9a82612c59565b602082019050919050565b60006020820190508181036000830152612cbe81612c82565b9050919050565b7f45786365656420746f74616c537570706c790000000000000000000000000000600082015250565b6000612cfb6012836123d1565b9150612d0682612cc5565b602082019050919050565b60006020820190508181036000830152612d2a81612cee565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d6b82612363565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d9e57612d9d612d31565b5b600182019050919050565b6000606082019050612dbe60008301866124b3565b612dcb602083018561259c565b612dd8604083018461259c565b949350505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612e3c602d836123d1565b9150612e4782612de0565b604082019050919050565b60006020820190508181036000830152612e6b81612e2f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612ed76018836123d1565b9150612ee282612ea1565b602082019050919050565b60006020820190508181036000830152612f0681612eca565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612f696029836123d1565b9150612f7482612f0d565b604082019050919050565b60006020820190508181036000830152612f9881612f5c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612fcc81612a97565b612fd68186612f9f565b94506001821660008114612ff1576001811461300257613035565b60ff19831686528186019350613035565b61300b85612faa565b60005b8381101561302d5781548189015260018201915060208101905061300e565b838801955050505b50505092915050565b6000613049826123c6565b6130538185612f9f565b93506130638185602086016123e2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130a5600583612f9f565b91506130b08261306f565b600582019050919050565b60006130c78285612fbf565b91506130d3828461303e565b91506130de82613098565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131466026836123d1565b9150613151826130ea565b604082019050919050565b6000602082019050818103600083015261317581613139565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131b26020836123d1565b91506131bd8261317c565b602082019050919050565b600060208201905081810360008301526131e1816131a5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006132446025836123d1565b915061324f826131e8565b604082019050919050565b6000602082019050818103600083015261327381613237565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132d66024836123d1565b91506132e18261327a565b604082019050919050565b60006020820190508181036000830152613305816132c9565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006133426019836123d1565b915061334d8261330c565b602082019050919050565b6000602082019050818103600083015261337181613335565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133d46032836123d1565b91506133df82613378565b604082019050919050565b60006020820190508181036000830152613403816133c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b6000613495602b836123d1565b91506134a082613439565b604082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006135016014836123d1565b915061350c826134cb565b602082019050919050565b60006020820190508181036000830152613530816134f4565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061356d6010836123d1565b915061357882613537565b602082019050919050565b6000602082019050818103600083015261359c81613560565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135ca826135a3565b6135d481856135ae565b93506135e48185602086016123e2565b6135ed81612415565b840191505092915050565b600060808201905061360d60008301876124b3565b61361a60208301866124b3565b613627604083018561259c565b818103606083015261363981846135bf565b905095945050505050565b600081519050613653816122d4565b92915050565b60006020828403121561366f5761366e61229e565b5b600061367d84828501613644565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006136bc6020836123d1565b91506136c782613686565b602082019050919050565b600060208201905081810360008301526136eb816136af565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613728601c836123d1565b9150613733826136f2565b602082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b600061376982612363565b915061377483612363565b92508282101561378757613786612d31565b5b828203905092915050565b600061379d82612363565b91506137a883612363565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137dd576137dc612d31565b5b82820190509291505056fea2646970667358221220885b656ac029bb11d2c62b89868d7f872ed92ff19ae929aca7eace2ce919bfd564736f6c634300080a003368747470733a2f2f7265736f75726365732e63727970746f736b796c616e642e636f6d2f536b79746f7069616e5265736964656e74732f6d657461646174615f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012536b79746f7069616e5265736964656e7473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025352000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd146104b7578063cf456ae7146104e7578063e985e9c514610503578063f2fde38b14610533576101c4565b8063a22cb4651461044f578063aa271e1a1461046b578063b88d4fde1461049b576101c4565b80638ab02ca7116100d35780638ab02ca7146103c75780638da5cb5b146103f757806395d89b4114610415578063a0bcfc7f14610433576101c4565b806370a0823114610383578063715018a6146103b35780638456cb59146103bd576101c4565b806323b872dd1161016657806342842e0e1161014057806342842e0e146102fb578063477e5a80146103175780635c975abb146103355780636352211e14610353576101c4565b806323b872dd146102b95780633593cebc146102d55780633f4ba83a146102f1576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b314610263578063156e29f61461027f57806318160ddd1461029b576101c4565b806301ffc9a7146101c95780630411fb9f146101f957806306fdde0314610215575b600080fd5b6101e360048036038101906101de9190612300565b61054f565b6040516101f09190612348565b60405180910390f35b610213600480360381019061020e9190612399565b610631565b005b61021d610643565b60405161022a919061245f565b60405180910390f35b61024d60048036038101906102489190612399565b6106d5565b60405161025a91906124c2565b60405180910390f35b61027d60048036038101906102789190612509565b61071b565b005b61029960048036038101906102949190612549565b610833565b005b6102a36109fb565b6040516102b091906125ab565b60405180910390f35b6102d360048036038101906102ce91906125c6565b610a01565b005b6102ef60048036038101906102ea919061267e565b610a61565b005b6102f9610ab3565b005b610315600480360381019061031091906125c6565b610ac5565b005b61031f610ae5565b60405161032c91906125ab565b60405180910390f35b61033d610aef565b60405161034a9190612348565b60405180910390f35b61036d60048036038101906103689190612399565b610b06565b60405161037a91906124c2565b60405180910390f35b61039d600480360381019061039891906126f2565b610b8d565b6040516103aa91906125ab565b60405180910390f35b6103bb610c45565b005b6103c5610c59565b005b6103e160048036038101906103dc91906126f2565b610c6b565b6040516103ee91906125ab565b60405180910390f35b6103ff610cb4565b60405161040c91906124c2565b60405180910390f35b61041d610cdd565b60405161042a919061245f565b60405180910390f35b61044d6004803603810190610448919061284f565b610d6f565b005b610469600480360381019061046491906128c4565b610d91565b005b610485600480360381019061048091906126f2565b610da7565b6040516104929190612348565b60405180910390f35b6104b560048036038101906104b091906129a5565b610dfd565b005b6104d160048036038101906104cc9190612399565b610e5f565b6040516104de919061245f565b60405180910390f35b61050160048036038101906104fc91906128c4565b610e9c565b005b61051d60048036038101906105189190612a28565b610eff565b60405161052a9190612348565b60405180910390f35b61054d600480360381019061054891906126f2565b610f93565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062a575061062982611017565b5b9050919050565b610639611081565b8060088190555050565b60606001805461065290612a97565b80601f016020809104026020016040519081016040528092919081815260200182805461067e90612a97565b80156106cb5780601f106106a0576101008083540402835291602001916106cb565b820191906000526020600020905b8154815290600101906020018083116106ae57829003601f168201915b5050505050905090565b60006106e0826110ff565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072682610b06565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078e90612b3b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107b661114a565b73ffffffffffffffffffffffffffffffffffffffff1614806107e557506107e4816107df61114a565b610eff565b5b610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b90612bcd565b60405180910390fd5b61082e8383611152565b505050565b61083c33610da7565b61087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087290612c39565b60405180910390fd5b600854600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f590612ca5565b60405180910390fd5b61271060095410610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90612d11565b60405180910390fd5b61094e838361120b565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061099e90612d60565b9190505550600960008154809291906109b690612d60565b91905055507f0cec0f8dc9537ba913422308f2a169d2f1248cc3e7dcab19ce34e07c3cf66ddc8383836040516109ee93929190612da9565b60405180910390a1505050565b61271081565b610a12610a0c61114a565b82611229565b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890612e52565b60405180910390fd5b610a5c8383836112be565b505050565b60005b82829050811015610aac576000838383818110610a8457610a83612e72565b5b905060200201359050610a98868683610a01565b508080610aa490612d60565b915050610a64565b5050505050565b610abb611081565b610ac36115b8565b565b610ae083838360405180602001604052806000815250610dfd565b505050565b6000600854905090565b6000600760009054906101000a900460ff16905090565b600080610b128361161b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90612eed565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590612f7f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4d611081565b610c576000611658565b565b610c61611081565b610c6961171c565b565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610cec90612a97565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612a97565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b610d77611081565b80600a9080519060200190610d8d9291906121f1565b5050565b610da3610d9c61114a565b838361177f565b5050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e0e610e0861114a565b83611229565b610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490612e52565b60405180910390fd5b610e59848484846118ec565b50505050565b6060610e6a826110ff565b600a610e7583611948565b604051602001610e869291906130bb565b6040516020818303038152906040529050919050565b610ea4611081565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f9b611081565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561100b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110029061315c565b60405180910390fd5b61101481611658565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61108961114a565b73ffffffffffffffffffffffffffffffffffffffff166110a7610cb4565b73ffffffffffffffffffffffffffffffffffffffff16146110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906131c8565b60405180910390fd5b565b61110881611a20565b611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90612eed565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111c583610b06565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611225828260405180602001604052806000815250611a61565b5050565b60008061123583610b06565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061127757506112768185610eff565b5b806112b557508373ffffffffffffffffffffffffffffffffffffffff1661129d846106d5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112de82610b06565b73ffffffffffffffffffffffffffffffffffffffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b9061325a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b906132ec565b60405180910390fd5b6113b18383836001611abc565b8273ffffffffffffffffffffffffffffffffffffffff166113d182610b06565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061325a565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115b38383836001611b16565b505050565b6115c0611b1c565b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61160461114a565b60405161161191906124c2565b60405180910390a1565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611724611b65565b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861176861114a565b60405161177591906124c2565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613358565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118df9190612348565b60405180910390a3505050565b6118f78484846112be565b61190384848484611baf565b611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906133ea565b60405180910390fd5b50505050565b60606000600161195784611d37565b01905060008167ffffffffffffffff81111561197657611975612724565b5b6040519080825280601f01601f1916602001820160405280156119a85781602001600182028036833780820191505090505b509050600082602001820190505b600115611a15578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816119ff576119fe61340a565b5b0494506000851415611a1057611a15565b6119b6565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611a428361161b565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611a6b8383611e8a565b611a786000848484611baf565b611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae906133ea565b60405180910390fd5b505050565b611ac8848484846120a8565b611ad0610aef565b15611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b07906134ab565b60405180910390fd5b50505050565b50505050565b611b24610aef565b611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613517565b60405180910390fd5b565b611b6d610aef565b15611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba490613583565b60405180910390fd5b565b6000611bd08473ffffffffffffffffffffffffffffffffffffffff166121ce565b15611d2a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bf961114a565b8786866040518563ffffffff1660e01b8152600401611c1b94939291906135f8565b6020604051808303816000875af1925050508015611c5757506040513d601f19601f82011682018060405250810190611c549190613659565b60015b611cda573d8060008114611c87576040519150601f19603f3d011682016040523d82523d6000602084013e611c8c565b606091505b50600081511415611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc9906133ea565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d2f565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611d95577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611d8b57611d8a61340a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611dd2576d04ee2d6d415b85acef81000000008381611dc857611dc761340a565b5b0492506020810190505b662386f26fc100008310611e0157662386f26fc100008381611df757611df661340a565b5b0492506010810190505b6305f5e1008310611e2a576305f5e1008381611e2057611e1f61340a565b5b0492506008810190505b6127108310611e4f576127108381611e4557611e4461340a565b5b0492506004810190505b60648310611e725760648381611e6857611e6761340a565b5b0492506002810190505b600a8310611e81576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef1906136d2565b60405180910390fd5b611f0381611a20565b15611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a9061373e565b60405180910390fd5b611f51600083836001611abc565b611f5a81611a20565b15611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f919061373e565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a4600083836001611b16565b5050565b60018111156121c857600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461213c5780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612134919061375e565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121c75780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121bf9190613792565b925050819055505b5b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121fd90612a97565b90600052602060002090601f01602090048101928261221f5760008555612266565b82601f1061223857805160ff1916838001178555612266565b82800160010185558215612266579182015b8281111561226557825182559160200191906001019061224a565b5b5090506122739190612277565b5090565b5b80821115612290576000816000905550600101612278565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122dd816122a8565b81146122e857600080fd5b50565b6000813590506122fa816122d4565b92915050565b6000602082840312156123165761231561229e565b5b6000612324848285016122eb565b91505092915050565b60008115159050919050565b6123428161232d565b82525050565b600060208201905061235d6000830184612339565b92915050565b6000819050919050565b61237681612363565b811461238157600080fd5b50565b6000813590506123938161236d565b92915050565b6000602082840312156123af576123ae61229e565b5b60006123bd84828501612384565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124005780820151818401526020810190506123e5565b8381111561240f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612431826123c6565b61243b81856123d1565b935061244b8185602086016123e2565b61245481612415565b840191505092915050565b600060208201905081810360008301526124798184612426565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124ac82612481565b9050919050565b6124bc816124a1565b82525050565b60006020820190506124d760008301846124b3565b92915050565b6124e6816124a1565b81146124f157600080fd5b50565b600081359050612503816124dd565b92915050565b600080604083850312156125205761251f61229e565b5b600061252e858286016124f4565b925050602061253f85828601612384565b9150509250929050565b6000806000606084860312156125625761256161229e565b5b6000612570868287016124f4565b935050602061258186828701612384565b925050604061259286828701612384565b9150509250925092565b6125a581612363565b82525050565b60006020820190506125c0600083018461259c565b92915050565b6000806000606084860312156125df576125de61229e565b5b60006125ed868287016124f4565b93505060206125fe868287016124f4565b925050604061260f86828701612384565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261263e5761263d612619565b5b8235905067ffffffffffffffff81111561265b5761265a61261e565b5b60208301915083602082028301111561267757612676612623565b5b9250929050565b600080600080606085870312156126985761269761229e565b5b60006126a6878288016124f4565b94505060206126b7878288016124f4565b935050604085013567ffffffffffffffff8111156126d8576126d76122a3565b5b6126e487828801612628565b925092505092959194509250565b6000602082840312156127085761270761229e565b5b6000612716848285016124f4565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61275c82612415565b810181811067ffffffffffffffff8211171561277b5761277a612724565b5b80604052505050565b600061278e612294565b905061279a8282612753565b919050565b600067ffffffffffffffff8211156127ba576127b9612724565b5b6127c382612415565b9050602081019050919050565b82818337600083830152505050565b60006127f26127ed8461279f565b612784565b90508281526020810184848401111561280e5761280d61271f565b5b6128198482856127d0565b509392505050565b600082601f83011261283657612835612619565b5b81356128468482602086016127df565b91505092915050565b6000602082840312156128655761286461229e565b5b600082013567ffffffffffffffff811115612883576128826122a3565b5b61288f84828501612821565b91505092915050565b6128a18161232d565b81146128ac57600080fd5b50565b6000813590506128be81612898565b92915050565b600080604083850312156128db576128da61229e565b5b60006128e9858286016124f4565b92505060206128fa858286016128af565b9150509250929050565b600067ffffffffffffffff82111561291f5761291e612724565b5b61292882612415565b9050602081019050919050565b600061294861294384612904565b612784565b9050828152602081018484840111156129645761296361271f565b5b61296f8482856127d0565b509392505050565b600082601f83011261298c5761298b612619565b5b813561299c848260208601612935565b91505092915050565b600080600080608085870312156129bf576129be61229e565b5b60006129cd878288016124f4565b94505060206129de878288016124f4565b93505060406129ef87828801612384565b925050606085013567ffffffffffffffff811115612a1057612a0f6122a3565b5b612a1c87828801612977565b91505092959194509250565b60008060408385031215612a3f57612a3e61229e565b5b6000612a4d858286016124f4565b9250506020612a5e858286016124f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612aaf57607f821691505b60208210811415612ac357612ac2612a68565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b256021836123d1565b9150612b3082612ac9565b604082019050919050565b60006020820190508181036000830152612b5481612b18565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612bb7603d836123d1565b9150612bc282612b5b565b604082019050919050565b60006020820190508181036000830152612be681612baa565b9050919050565b7f4f6e6c792061206d696e7465722063616e206d696e7400000000000000000000600082015250565b6000612c236016836123d1565b9150612c2e82612bed565b602082019050919050565b60006020820190508181036000830152612c5281612c16565b9050919050565b7f457863656564206d696e7420616d6f756e742070657220616464726573732e00600082015250565b6000612c8f601f836123d1565b9150612c9a82612c59565b602082019050919050565b60006020820190508181036000830152612cbe81612c82565b9050919050565b7f45786365656420746f74616c537570706c790000000000000000000000000000600082015250565b6000612cfb6012836123d1565b9150612d0682612cc5565b602082019050919050565b60006020820190508181036000830152612d2a81612cee565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d6b82612363565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d9e57612d9d612d31565b5b600182019050919050565b6000606082019050612dbe60008301866124b3565b612dcb602083018561259c565b612dd8604083018461259c565b949350505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612e3c602d836123d1565b9150612e4782612de0565b604082019050919050565b60006020820190508181036000830152612e6b81612e2f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612ed76018836123d1565b9150612ee282612ea1565b602082019050919050565b60006020820190508181036000830152612f0681612eca565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612f696029836123d1565b9150612f7482612f0d565b604082019050919050565b60006020820190508181036000830152612f9881612f5c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612fcc81612a97565b612fd68186612f9f565b94506001821660008114612ff1576001811461300257613035565b60ff19831686528186019350613035565b61300b85612faa565b60005b8381101561302d5781548189015260018201915060208101905061300e565b838801955050505b50505092915050565b6000613049826123c6565b6130538185612f9f565b93506130638185602086016123e2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130a5600583612f9f565b91506130b08261306f565b600582019050919050565b60006130c78285612fbf565b91506130d3828461303e565b91506130de82613098565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131466026836123d1565b9150613151826130ea565b604082019050919050565b6000602082019050818103600083015261317581613139565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131b26020836123d1565b91506131bd8261317c565b602082019050919050565b600060208201905081810360008301526131e1816131a5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006132446025836123d1565b915061324f826131e8565b604082019050919050565b6000602082019050818103600083015261327381613237565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132d66024836123d1565b91506132e18261327a565b604082019050919050565b60006020820190508181036000830152613305816132c9565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006133426019836123d1565b915061334d8261330c565b602082019050919050565b6000602082019050818103600083015261337181613335565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006133d46032836123d1565b91506133df82613378565b604082019050919050565b60006020820190508181036000830152613403816133c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b6000613495602b836123d1565b91506134a082613439565b604082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006135016014836123d1565b915061350c826134cb565b602082019050919050565b60006020820190508181036000830152613530816134f4565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061356d6010836123d1565b915061357882613537565b602082019050919050565b6000602082019050818103600083015261359c81613560565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135ca826135a3565b6135d481856135ae565b93506135e48185602086016123e2565b6135ed81612415565b840191505092915050565b600060808201905061360d60008301876124b3565b61361a60208301866124b3565b613627604083018561259c565b818103606083015261363981846135bf565b905095945050505050565b600081519050613653816122d4565b92915050565b60006020828403121561366f5761366e61229e565b5b600061367d84828501613644565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006136bc6020836123d1565b91506136c782613686565b602082019050919050565b600060208201905081810360008301526136eb816136af565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613728601c836123d1565b9150613733826136f2565b602082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b600061376982612363565b915061377483612363565b92508282101561378757613786612d31565b5b828203905092915050565b600061379d82612363565b91506137a883612363565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137dd576137dc612d31565b5b82820190509291505056fea2646970667358221220885b656ac029bb11d2c62b89868d7f872ed92ff19ae929aca7eace2ce919bfd564736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012536b79746f7069616e5265736964656e7473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025352000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SkytopianResidents
Arg [1] : symbol (string): SR

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 536b79746f7069616e5265736964656e74730000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 5352000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

58183:2488:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41239:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59071:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42167:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43679:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43197:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59561:500;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58279:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44379:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60069:293;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58877:67;;;:::i;:::-;;44785:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59222:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20505:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41877:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41608:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18015:103;;;:::i;:::-;;58806:63;;;:::i;:::-;;59447:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17367:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42336:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60580:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43922:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59342:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45041:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60370:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58952:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44148:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18273:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41239:305;41341:4;41393:25;41378:40;;;:11;:40;;;;:105;;;;41450:33;41435:48;;;:11;:48;;;;41378:105;:158;;;;41500:36;41524:11;41500:23;:36::i;:::-;41378:158;41358:178;;41239:305;;;:::o;59071:143::-;17253:13;:11;:13::i;:::-;59186:20:::1;59162:21;:44;;;;59071:143:::0;:::o;42167:100::-;42221:13;42254:5;42247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42167:100;:::o;43679:171::-;43755:7;43775:23;43790:7;43775:14;:23::i;:::-;43818:15;:24;43834:7;43818:24;;;;;;;;;;;;;;;;;;;;;43811:31;;43679:171;;;:::o;43197:416::-;43278:13;43294:23;43309:7;43294:14;:23::i;:::-;43278:39;;43342:5;43336:11;;:2;:11;;;;43328:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43436:5;43420:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;43445:37;43462:5;43469:12;:10;:12::i;:::-;43445:16;:37::i;:::-;43420:62;43398:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;43584:21;43593:2;43597:7;43584:8;:21::i;:::-;43267:346;43197:416;;:::o;59561:500::-;59661:20;59670:10;59661:8;:20::i;:::-;59639:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;59771:21;;59750:14;:18;59765:2;59750:18;;;;;;;;;;;;;;;;:42;59742:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;58317:5;59856:14;;:28;59848:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;59928:22;59938:2;59942:7;59928:9;:22::i;:::-;59961:14;:18;59976:2;59961:18;;;;;;;;;;;;;;;;:20;;;;;;;;;:::i;:::-;;;;;;59992:14;;:16;;;;;;;;;:::i;:::-;;;;;;60026:27;60034:2;60038:7;60047:5;60026:27;;;;;;;;:::i;:::-;;;;;;;;59561:500;;;:::o;58279:43::-;58317:5;58279:43;:::o;44379:335::-;44574:41;44593:12;:10;:12::i;:::-;44607:7;44574:18;:41::i;:::-;44566:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44678:28;44688:4;44694:2;44698:7;44678:9;:28::i;:::-;44379:335;;;:::o;60069:293::-;60207:9;60202:153;60226:11;;:18;;60222:1;:22;60202:153;;;60266:15;60284:11;;60296:1;60284:14;;;;;;;:::i;:::-;;;;;;;;60266:32;;60313:30;60326:4;60332:2;60335:7;60313:12;:30::i;:::-;60251:104;60246:3;;;;;:::i;:::-;;;;60202:153;;;;60069:293;;;;:::o;58877:67::-;17253:13;:11;:13::i;:::-;58926:10:::1;:8;:10::i;:::-;58877:67::o:0;44785:185::-;44923:39;44940:4;44946:2;44950:7;44923:39;;;;;;;;;;;;:16;:39::i;:::-;44785:185;;;:::o;59222:112::-;59278:7;59305:21;;59298:28;;59222:112;:::o;20505:86::-;20552:4;20576:7;;;;;;;;;;;20569:14;;20505:86;:::o;41877:223::-;41949:7;41969:13;41985:17;41994:7;41985:8;:17::i;:::-;41969:33;;42038:1;42021:19;;:5;:19;;;;42013:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;42087:5;42080:12;;;41877:223;;;:::o;41608:207::-;41680:7;41725:1;41708:19;;:5;:19;;;;41700:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41791:9;:16;41801:5;41791:16;;;;;;;;;;;;;;;;41784:23;;41608:207;;;:::o;18015:103::-;17253:13;:11;:13::i;:::-;18080:30:::1;18107:1;18080:18;:30::i;:::-;18015:103::o:0;58806:63::-;17253:13;:11;:13::i;:::-;58853:8:::1;:6;:8::i;:::-;58806:63::o:0;59447:106::-;59499:7;59526:14;:19;59541:3;59526:19;;;;;;;;;;;;;;;;59519:26;;59447:106;;;:::o;17367:87::-;17413:7;17440:6;;;;;;;;;;;17433:13;;17367:87;:::o;42336:104::-;42392:13;42425:7;42418:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42336:104;:::o;60580:88::-;17253:13;:11;:13::i;:::-;60657:3:::1;60647:7;:13;;;;;;;;;;;;:::i;:::-;;60580:88:::0;:::o;43922:155::-;44017:52;44036:12;:10;:12::i;:::-;44050:8;44060;44017:18;:52::i;:::-;43922:155;;:::o;59342:97::-;59394:4;59418:8;:13;59427:3;59418:13;;;;;;;;;;;;;;;;;;;;;;;;;59411:20;;59342:97;;;:::o;45041:322::-;45215:41;45234:12;:10;:12::i;:::-;45248:7;45215:18;:41::i;:::-;45207:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45317:38;45331:4;45337:2;45341:7;45350:4;45317:13;:38::i;:::-;45041:322;;;;:::o;60370:202::-;60435:13;60461:23;60476:7;60461:14;:23::i;:::-;60526:7;60535:18;:7;:16;:18::i;:::-;60509:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60495:69;;60370:202;;;:::o;58952:111::-;17253:13;:11;:13::i;:::-;59048:7:::1;59029:8;:16;59038:6;59029:16;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;58952:111:::0;;:::o;44148:164::-;44245:4;44269:18;:25;44288:5;44269:25;;;;;;;;;;;;;;;:35;44295:8;44269:35;;;;;;;;;;;;;;;;;;;;;;;;;44262:42;;44148:164;;;;:::o;18273:201::-;17253:13;:11;:13::i;:::-;18382:1:::1;18362:22;;:8;:22;;;;18354:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18438:28;18457:8;18438:18;:28::i;:::-;18273:201:::0;:::o;33751:157::-;33836:4;33875:25;33860:40;;;:11;:40;;;;33853:47;;33751:157;;;:::o;17532:132::-;17607:12;:10;:12::i;:::-;17596:23;;:7;:5;:7::i;:::-;:23;;;17588:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17532:132::o;53498:135::-;53580:16;53588:7;53580;:16::i;:::-;53572:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53498:135;:::o;15918:98::-;15971:7;15998:10;15991:17;;15918:98;:::o;52777:174::-;52879:2;52852:15;:24;52868:7;52852:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52935:7;52931:2;52897:46;;52906:23;52921:7;52906:14;:23::i;:::-;52897:46;;;;;;;;;;;;52777:174;;:::o;48002:110::-;48078:26;48088:2;48092:7;48078:26;;;;;;;;;;;;:9;:26::i;:::-;48002:110;;:::o;47396:264::-;47489:4;47506:13;47522:23;47537:7;47522:14;:23::i;:::-;47506:39;;47575:5;47564:16;;:7;:16;;;:52;;;;47584:32;47601:5;47608:7;47584:16;:32::i;:::-;47564:52;:87;;;;47644:7;47620:31;;:20;47632:7;47620:11;:20::i;:::-;:31;;;47564:87;47556:96;;;47396:264;;;;:::o;51395:1263::-;51554:4;51527:31;;:23;51542:7;51527:14;:23::i;:::-;:31;;;51519:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51633:1;51619:16;;:2;:16;;;;51611:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51689:42;51710:4;51716:2;51720:7;51729:1;51689:20;:42::i;:::-;51861:4;51834:31;;:23;51849:7;51834:14;:23::i;:::-;:31;;;51826:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51979:15;:24;51995:7;51979:24;;;;;;;;;;;;51972:31;;;;;;;;;;;52474:1;52455:9;:15;52465:4;52455:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;52507:1;52490:9;:13;52500:2;52490:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;52549:2;52530:7;:16;52538:7;52530:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52588:7;52584:2;52569:27;;52578:4;52569:27;;;;;;;;;;;;52609:41;52629:4;52635:2;52639:7;52648:1;52609:19;:41::i;:::-;51395:1263;;;:::o;21360:120::-;20369:16;:14;:16::i;:::-;21429:5:::1;21419:7;;:15;;;;;;;;;;;;;;;;;;21450:22;21459:12;:10;:12::i;:::-;21450:22;;;;;;:::i;:::-;;;;;;;;21360:120::o:0;46671:117::-;46737:7;46764;:16;46772:7;46764:16;;;;;;;;;;;;;;;;;;;;;46757:23;;46671:117;;;:::o;18634:191::-;18708:16;18727:6;;;;;;;;;;;18708:25;;18753:8;18744:6;;:17;;;;;;;;;;;;;;;;;;18808:8;18777:40;;18798:8;18777:40;;;;;;;;;;;;18697:128;18634:191;:::o;21101:118::-;20110:19;:17;:19::i;:::-;21171:4:::1;21161:7;;:14;;;;;;;;;;;;;;;;;;21191:20;21198:12;:10;:12::i;:::-;21191:20;;;;;;:::i;:::-;;;;;;;;21101:118::o:0;53094:315::-;53249:8;53240:17;;:5;:17;;;;53232:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53336:8;53298:18;:25;53317:5;53298:25;;;;;;;;;;;;;;;:35;53324:8;53298:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;53382:8;53360:41;;53375:5;53360:41;;;53392:8;53360:41;;;;;;:::i;:::-;;;;;;;;53094:315;;;:::o;46244:313::-;46400:28;46410:4;46416:2;46420:7;46400:9;:28::i;:::-;46447:47;46470:4;46476:2;46480:7;46489:4;46447:22;:47::i;:::-;46439:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46244:313;;;;:::o;13345:716::-;13401:13;13452:14;13489:1;13469:17;13480:5;13469:10;:17::i;:::-;:21;13452:38;;13505:20;13539:6;13528:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13505:41;;13561:11;13690:6;13686:2;13682:15;13674:6;13670:28;13663:35;;13727:288;13734:4;13727:288;;;13759:5;;;;;;;;13901:8;13896:2;13889:5;13885:14;13880:30;13875:3;13867:44;13957:2;13948:11;;;;;;:::i;:::-;;;;;13991:1;13982:5;:10;13978:21;;;13994:5;;13978:21;13727:288;;;14036:6;14029:13;;;;;13345:716;;;:::o;47101:128::-;47166:4;47219:1;47190:31;;:17;47199:7;47190:8;:17::i;:::-;:31;;;;47183:38;;47101:128;;;:::o;48339:319::-;48468:18;48474:2;48478:7;48468:5;:18::i;:::-;48519:53;48550:1;48554:2;48558:7;48567:4;48519:22;:53::i;:::-;48497:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;48339:319;;;:::o;57772:324::-;57949:61;57976:4;57982:2;57986:12;58000:9;57949:26;:61::i;:::-;58032:8;:6;:8::i;:::-;58031:9;58023:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57772:324;;;;:::o;56914:158::-;;;;;:::o;20849:108::-;20916:8;:6;:8::i;:::-;20908:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;20849:108::o;20664:::-;20735:8;:6;:8::i;:::-;20734:9;20726:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;20664:108::o;54197:853::-;54351:4;54372:15;:2;:13;;;:15::i;:::-;54368:675;;;54424:2;54408:36;;;54445:12;:10;:12::i;:::-;54459:4;54465:7;54474:4;54408:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54404:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54666:1;54649:6;:13;:18;54645:328;;;54692:60;;;;;;;;;;:::i;:::-;;;;;;;;54645:328;54923:6;54917:13;54908:6;54904:2;54900:15;54893:38;54404:584;54540:41;;;54530:51;;;:6;:51;;;;54523:58;;;;;54368:675;55027:4;55020:11;;54197:853;;;;;;;:::o;10211:922::-;10264:7;10284:14;10301:1;10284:18;;10351:6;10342:5;:15;10338:102;;10387:6;10378:15;;;;;;:::i;:::-;;;;;10422:2;10412:12;;;;10338:102;10467:6;10458:5;:15;10454:102;;10503:6;10494:15;;;;;;:::i;:::-;;;;;10538:2;10528:12;;;;10454:102;10583:6;10574:5;:15;10570:102;;10619:6;10610:15;;;;;;:::i;:::-;;;;;10654:2;10644:12;;;;10570:102;10699:5;10690;:14;10686:99;;10734:5;10725:14;;;;;;:::i;:::-;;;;;10768:1;10758:11;;;;10686:99;10812:5;10803;:14;10799:99;;10847:5;10838:14;;;;;;:::i;:::-;;;;;10881:1;10871:11;;;;10799:99;10925:5;10916;:14;10912:99;;10960:5;10951:14;;;;;;:::i;:::-;;;;;10994:1;10984:11;;;;10912:99;11038:5;11029;:14;11025:66;;11074:1;11064:11;;;;11025:66;11119:6;11112:13;;;10211:922;;;:::o;48994:942::-;49088:1;49074:16;;:2;:16;;;;49066:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49147:16;49155:7;49147;:16::i;:::-;49146:17;49138:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49209:48;49238:1;49242:2;49246:7;49255:1;49209:20;:48::i;:::-;49356:16;49364:7;49356;:16::i;:::-;49355:17;49347:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49771:1;49754:9;:13;49764:2;49754:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49815:2;49796:7;:16;49804:7;49796:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49860:7;49856:2;49835:33;;49852:1;49835:33;;;;;;;;;;;;49881:47;49909:1;49913:2;49917:7;49926:1;49881:19;:47::i;:::-;48994:942;;:::o;55782:410::-;55972:1;55960:9;:13;55956:229;;;56010:1;55994:18;;:4;:18;;;55990:87;;56052:9;56033;:15;56043:4;56033:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;55990:87;56109:1;56095:16;;:2;:16;;;56091:83;;56149:9;56132;:13;56142:2;56132:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;56091:83;55956:229;55782:410;;;;:::o;22720:326::-;22780:4;23037:1;23015:7;:19;;;:23;23008:30;;22720:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:307::-;2557:1;2567:113;2581:6;2578:1;2575:13;2567:113;;;2666:1;2661:3;2657:11;2651:18;2647:1;2642:3;2638:11;2631:39;2603:2;2600:1;2596:10;2591:15;;2567:113;;;2698:6;2695:1;2692:13;2689:101;;;2778:1;2769:6;2764:3;2760:16;2753:27;2689:101;2538:258;2489:307;;;:::o;2802:102::-;2843:6;2894:2;2890:7;2885:2;2878:5;2874:14;2870:28;2860:38;;2802:102;;;:::o;2910:364::-;2998:3;3026:39;3059:5;3026:39;:::i;:::-;3081:71;3145:6;3140:3;3081:71;:::i;:::-;3074:78;;3161:52;3206:6;3201:3;3194:4;3187:5;3183:16;3161:52;:::i;:::-;3238:29;3260:6;3238:29;:::i;:::-;3233:3;3229:39;3222:46;;3002:272;2910:364;;;;:::o;3280:313::-;3393:4;3431:2;3420:9;3416:18;3408:26;;3480:9;3474:4;3470:20;3466:1;3455:9;3451:17;3444:47;3508:78;3581:4;3572:6;3508:78;:::i;:::-;3500:86;;3280:313;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:118::-;5650:24;5668:5;5650:24;:::i;:::-;5645:3;5638:37;5563:118;;:::o;5687:222::-;5780:4;5818:2;5807:9;5803:18;5795:26;;5831:71;5899:1;5888:9;5884:17;5875:6;5831:71;:::i;:::-;5687:222;;;;:::o;5915:619::-;5992:6;6000;6008;6057:2;6045:9;6036:7;6032:23;6028:32;6025:119;;;6063:79;;:::i;:::-;6025:119;6183:1;6208:53;6253:7;6244:6;6233:9;6229:22;6208:53;:::i;:::-;6198:63;;6154:117;6310:2;6336:53;6381:7;6372:6;6361:9;6357:22;6336:53;:::i;:::-;6326:63;;6281:118;6438:2;6464:53;6509:7;6500:6;6489:9;6485:22;6464:53;:::i;:::-;6454:63;;6409:118;5915:619;;;;;:::o;6540:117::-;6649:1;6646;6639:12;6663:117;6772:1;6769;6762:12;6786:117;6895:1;6892;6885:12;6926:568;6999:8;7009:6;7059:3;7052:4;7044:6;7040:17;7036:27;7026:122;;7067:79;;:::i;:::-;7026:122;7180:6;7167:20;7157:30;;7210:18;7202:6;7199:30;7196:117;;;7232:79;;:::i;:::-;7196:117;7346:4;7338:6;7334:17;7322:29;;7400:3;7392:4;7384:6;7380:17;7370:8;7366:32;7363:41;7360:128;;;7407:79;;:::i;:::-;7360:128;6926:568;;;;;:::o;7500:849::-;7604:6;7612;7620;7628;7677:2;7665:9;7656:7;7652:23;7648:32;7645:119;;;7683:79;;:::i;:::-;7645:119;7803:1;7828:53;7873:7;7864:6;7853:9;7849:22;7828:53;:::i;:::-;7818:63;;7774:117;7930:2;7956:53;8001:7;7992:6;7981:9;7977:22;7956:53;:::i;:::-;7946:63;;7901:118;8086:2;8075:9;8071:18;8058:32;8117:18;8109:6;8106:30;8103:117;;;8139:79;;:::i;:::-;8103:117;8252:80;8324:7;8315:6;8304:9;8300:22;8252:80;:::i;:::-;8234:98;;;;8029:313;7500:849;;;;;;;:::o;8355:329::-;8414:6;8463:2;8451:9;8442:7;8438:23;8434:32;8431:119;;;8469:79;;:::i;:::-;8431:119;8589:1;8614:53;8659:7;8650:6;8639:9;8635:22;8614:53;:::i;:::-;8604:63;;8560:117;8355:329;;;;:::o;8690:117::-;8799:1;8796;8789:12;8813:180;8861:77;8858:1;8851:88;8958:4;8955:1;8948:15;8982:4;8979:1;8972:15;8999:281;9082:27;9104:4;9082:27;:::i;:::-;9074:6;9070:40;9212:6;9200:10;9197:22;9176:18;9164:10;9161:34;9158:62;9155:88;;;9223:18;;:::i;:::-;9155:88;9263:10;9259:2;9252:22;9042:238;8999:281;;:::o;9286:129::-;9320:6;9347:20;;:::i;:::-;9337:30;;9376:33;9404:4;9396:6;9376:33;:::i;:::-;9286:129;;;:::o;9421:308::-;9483:4;9573:18;9565:6;9562:30;9559:56;;;9595:18;;:::i;:::-;9559:56;9633:29;9655:6;9633:29;:::i;:::-;9625:37;;9717:4;9711;9707:15;9699:23;;9421:308;;;:::o;9735:154::-;9819:6;9814:3;9809;9796:30;9881:1;9872:6;9867:3;9863:16;9856:27;9735:154;;;:::o;9895:412::-;9973:5;9998:66;10014:49;10056:6;10014:49;:::i;:::-;9998:66;:::i;:::-;9989:75;;10087:6;10080:5;10073:21;10125:4;10118:5;10114:16;10163:3;10154:6;10149:3;10145:16;10142:25;10139:112;;;10170:79;;:::i;:::-;10139:112;10260:41;10294:6;10289:3;10284;10260:41;:::i;:::-;9979:328;9895:412;;;;;:::o;10327:340::-;10383:5;10432:3;10425:4;10417:6;10413:17;10409:27;10399:122;;10440:79;;:::i;:::-;10399:122;10557:6;10544:20;10582:79;10657:3;10649:6;10642:4;10634:6;10630:17;10582:79;:::i;:::-;10573:88;;10389:278;10327:340;;;;:::o;10673:509::-;10742:6;10791:2;10779:9;10770:7;10766:23;10762:32;10759:119;;;10797:79;;:::i;:::-;10759:119;10945:1;10934:9;10930:17;10917:31;10975:18;10967:6;10964:30;10961:117;;;10997:79;;:::i;:::-;10961:117;11102:63;11157:7;11148:6;11137:9;11133:22;11102:63;:::i;:::-;11092:73;;10888:287;10673:509;;;;:::o;11188:116::-;11258:21;11273:5;11258:21;:::i;:::-;11251:5;11248:32;11238:60;;11294:1;11291;11284:12;11238:60;11188:116;:::o;11310:133::-;11353:5;11391:6;11378:20;11369:29;;11407:30;11431:5;11407:30;:::i;:::-;11310:133;;;;:::o;11449:468::-;11514:6;11522;11571:2;11559:9;11550:7;11546:23;11542:32;11539:119;;;11577:79;;:::i;:::-;11539:119;11697:1;11722:53;11767:7;11758:6;11747:9;11743:22;11722:53;:::i;:::-;11712:63;;11668:117;11824:2;11850:50;11892:7;11883:6;11872:9;11868:22;11850:50;:::i;:::-;11840:60;;11795:115;11449:468;;;;;:::o;11923:307::-;11984:4;12074:18;12066:6;12063:30;12060:56;;;12096:18;;:::i;:::-;12060:56;12134:29;12156:6;12134:29;:::i;:::-;12126:37;;12218:4;12212;12208:15;12200:23;;11923:307;;;:::o;12236:410::-;12313:5;12338:65;12354:48;12395:6;12354:48;:::i;:::-;12338:65;:::i;:::-;12329:74;;12426:6;12419:5;12412:21;12464:4;12457:5;12453:16;12502:3;12493:6;12488:3;12484:16;12481:25;12478:112;;;12509:79;;:::i;:::-;12478:112;12599:41;12633:6;12628:3;12623;12599:41;:::i;:::-;12319:327;12236:410;;;;;:::o;12665:338::-;12720:5;12769:3;12762:4;12754:6;12750:17;12746:27;12736:122;;12777:79;;:::i;:::-;12736:122;12894:6;12881:20;12919:78;12993:3;12985:6;12978:4;12970:6;12966:17;12919:78;:::i;:::-;12910:87;;12726:277;12665:338;;;;:::o;13009:943::-;13104:6;13112;13120;13128;13177:3;13165:9;13156:7;13152:23;13148:33;13145:120;;;13184:79;;:::i;:::-;13145:120;13304:1;13329:53;13374:7;13365:6;13354:9;13350:22;13329:53;:::i;:::-;13319:63;;13275:117;13431:2;13457:53;13502:7;13493:6;13482:9;13478:22;13457:53;:::i;:::-;13447:63;;13402:118;13559:2;13585:53;13630:7;13621:6;13610:9;13606:22;13585:53;:::i;:::-;13575:63;;13530:118;13715:2;13704:9;13700:18;13687:32;13746:18;13738:6;13735:30;13732:117;;;13768:79;;:::i;:::-;13732:117;13873:62;13927:7;13918:6;13907:9;13903:22;13873:62;:::i;:::-;13863:72;;13658:287;13009:943;;;;;;;:::o;13958:474::-;14026:6;14034;14083:2;14071:9;14062:7;14058:23;14054:32;14051:119;;;14089:79;;:::i;:::-;14051:119;14209:1;14234:53;14279:7;14270:6;14259:9;14255:22;14234:53;:::i;:::-;14224:63;;14180:117;14336:2;14362:53;14407:7;14398:6;14387:9;14383:22;14362:53;:::i;:::-;14352:63;;14307:118;13958:474;;;;;:::o;14438:180::-;14486:77;14483:1;14476:88;14583:4;14580:1;14573:15;14607:4;14604:1;14597:15;14624:320;14668:6;14705:1;14699:4;14695:12;14685:22;;14752:1;14746:4;14742:12;14773:18;14763:81;;14829:4;14821:6;14817:17;14807:27;;14763:81;14891:2;14883:6;14880:14;14860:18;14857:38;14854:84;;;14910:18;;:::i;:::-;14854:84;14675:269;14624:320;;;:::o;14950:220::-;15090:34;15086:1;15078:6;15074:14;15067:58;15159:3;15154:2;15146:6;15142:15;15135:28;14950:220;:::o;15176:366::-;15318:3;15339:67;15403:2;15398:3;15339:67;:::i;:::-;15332:74;;15415:93;15504:3;15415:93;:::i;:::-;15533:2;15528:3;15524:12;15517:19;;15176:366;;;:::o;15548:419::-;15714:4;15752:2;15741:9;15737:18;15729:26;;15801:9;15795:4;15791:20;15787:1;15776:9;15772:17;15765:47;15829:131;15955:4;15829:131;:::i;:::-;15821:139;;15548:419;;;:::o;15973:248::-;16113:34;16109:1;16101:6;16097:14;16090:58;16182:31;16177:2;16169:6;16165:15;16158:56;15973:248;:::o;16227:366::-;16369:3;16390:67;16454:2;16449:3;16390:67;:::i;:::-;16383:74;;16466:93;16555:3;16466:93;:::i;:::-;16584:2;16579:3;16575:12;16568:19;;16227:366;;;:::o;16599:419::-;16765:4;16803:2;16792:9;16788:18;16780:26;;16852:9;16846:4;16842:20;16838:1;16827:9;16823:17;16816:47;16880:131;17006:4;16880:131;:::i;:::-;16872:139;;16599:419;;;:::o;17024:172::-;17164:24;17160:1;17152:6;17148:14;17141:48;17024:172;:::o;17202:366::-;17344:3;17365:67;17429:2;17424:3;17365:67;:::i;:::-;17358:74;;17441:93;17530:3;17441:93;:::i;:::-;17559:2;17554:3;17550:12;17543:19;;17202:366;;;:::o;17574:419::-;17740:4;17778:2;17767:9;17763:18;17755:26;;17827:9;17821:4;17817:20;17813:1;17802:9;17798:17;17791:47;17855:131;17981:4;17855:131;:::i;:::-;17847:139;;17574:419;;;:::o;17999:181::-;18139:33;18135:1;18127:6;18123:14;18116:57;17999:181;:::o;18186:366::-;18328:3;18349:67;18413:2;18408:3;18349:67;:::i;:::-;18342:74;;18425:93;18514:3;18425:93;:::i;:::-;18543:2;18538:3;18534:12;18527:19;;18186:366;;;:::o;18558:419::-;18724:4;18762:2;18751:9;18747:18;18739:26;;18811:9;18805:4;18801:20;18797:1;18786:9;18782:17;18775:47;18839:131;18965:4;18839:131;:::i;:::-;18831:139;;18558:419;;;:::o;18983:168::-;19123:20;19119:1;19111:6;19107:14;19100:44;18983:168;:::o;19157:366::-;19299:3;19320:67;19384:2;19379:3;19320:67;:::i;:::-;19313:74;;19396:93;19485:3;19396:93;:::i;:::-;19514:2;19509:3;19505:12;19498:19;;19157:366;;;:::o;19529:419::-;19695:4;19733:2;19722:9;19718:18;19710:26;;19782:9;19776:4;19772:20;19768:1;19757:9;19753:17;19746:47;19810:131;19936:4;19810:131;:::i;:::-;19802:139;;19529:419;;;:::o;19954:180::-;20002:77;19999:1;19992:88;20099:4;20096:1;20089:15;20123:4;20120:1;20113:15;20140:233;20179:3;20202:24;20220:5;20202:24;:::i;:::-;20193:33;;20248:66;20241:5;20238:77;20235:103;;;20318:18;;:::i;:::-;20235:103;20365:1;20358:5;20354:13;20347:20;;20140:233;;;:::o;20379:442::-;20528:4;20566:2;20555:9;20551:18;20543:26;;20579:71;20647:1;20636:9;20632:17;20623:6;20579:71;:::i;:::-;20660:72;20728:2;20717:9;20713:18;20704:6;20660:72;:::i;:::-;20742;20810:2;20799:9;20795:18;20786:6;20742:72;:::i;:::-;20379:442;;;;;;:::o;20827:232::-;20967:34;20963:1;20955:6;20951:14;20944:58;21036:15;21031:2;21023:6;21019:15;21012:40;20827:232;:::o;21065:366::-;21207:3;21228:67;21292:2;21287:3;21228:67;:::i;:::-;21221:74;;21304:93;21393:3;21304:93;:::i;:::-;21422:2;21417:3;21413:12;21406:19;;21065:366;;;:::o;21437:419::-;21603:4;21641:2;21630:9;21626:18;21618:26;;21690:9;21684:4;21680:20;21676:1;21665:9;21661:17;21654:47;21718:131;21844:4;21718:131;:::i;:::-;21710:139;;21437:419;;;:::o;21862:180::-;21910:77;21907:1;21900:88;22007:4;22004:1;21997:15;22031:4;22028:1;22021:15;22048:174;22188:26;22184:1;22176:6;22172:14;22165:50;22048:174;:::o;22228:366::-;22370:3;22391:67;22455:2;22450:3;22391:67;:::i;:::-;22384:74;;22467:93;22556:3;22467:93;:::i;:::-;22585:2;22580:3;22576:12;22569:19;;22228:366;;;:::o;22600:419::-;22766:4;22804:2;22793:9;22789:18;22781:26;;22853:9;22847:4;22843:20;22839:1;22828:9;22824:17;22817:47;22881:131;23007:4;22881:131;:::i;:::-;22873:139;;22600:419;;;:::o;23025:228::-;23165:34;23161:1;23153:6;23149:14;23142:58;23234:11;23229:2;23221:6;23217:15;23210:36;23025:228;:::o;23259:366::-;23401:3;23422:67;23486:2;23481:3;23422:67;:::i;:::-;23415:74;;23498:93;23587:3;23498:93;:::i;:::-;23616:2;23611:3;23607:12;23600:19;;23259:366;;;:::o;23631:419::-;23797:4;23835:2;23824:9;23820:18;23812:26;;23884:9;23878:4;23874:20;23870:1;23859:9;23855:17;23848:47;23912:131;24038:4;23912:131;:::i;:::-;23904:139;;23631:419;;;:::o;24056:148::-;24158:11;24195:3;24180:18;;24056:148;;;;:::o;24210:141::-;24259:4;24282:3;24274:11;;24305:3;24302:1;24295:14;24339:4;24336:1;24326:18;24318:26;;24210:141;;;:::o;24381:845::-;24484:3;24521:5;24515:12;24550:36;24576:9;24550:36;:::i;:::-;24602:89;24684:6;24679:3;24602:89;:::i;:::-;24595:96;;24722:1;24711:9;24707:17;24738:1;24733:137;;;;24884:1;24879:341;;;;24700:520;;24733:137;24817:4;24813:9;24802;24798:25;24793:3;24786:38;24853:6;24848:3;24844:16;24837:23;;24733:137;;24879:341;24946:38;24978:5;24946:38;:::i;:::-;25006:1;25020:154;25034:6;25031:1;25028:13;25020:154;;;25108:7;25102:14;25098:1;25093:3;25089:11;25082:35;25158:1;25149:7;25145:15;25134:26;;25056:4;25053:1;25049:12;25044:17;;25020:154;;;25203:6;25198:3;25194:16;25187:23;;24886:334;;24700:520;;24488:738;;24381:845;;;;:::o;25232:377::-;25338:3;25366:39;25399:5;25366:39;:::i;:::-;25421:89;25503:6;25498:3;25421:89;:::i;:::-;25414:96;;25519:52;25564:6;25559:3;25552:4;25545:5;25541:16;25519:52;:::i;:::-;25596:6;25591:3;25587:16;25580:23;;25342:267;25232:377;;;;:::o;25615:155::-;25755:7;25751:1;25743:6;25739:14;25732:31;25615:155;:::o;25776:400::-;25936:3;25957:84;26039:1;26034:3;25957:84;:::i;:::-;25950:91;;26050:93;26139:3;26050:93;:::i;:::-;26168:1;26163:3;26159:11;26152:18;;25776:400;;;:::o;26182:695::-;26460:3;26482:92;26570:3;26561:6;26482:92;:::i;:::-;26475:99;;26591:95;26682:3;26673:6;26591:95;:::i;:::-;26584:102;;26703:148;26847:3;26703:148;:::i;:::-;26696:155;;26868:3;26861:10;;26182:695;;;;;:::o;26883:225::-;27023:34;27019:1;27011:6;27007:14;27000:58;27092:8;27087:2;27079:6;27075:15;27068:33;26883:225;:::o;27114:366::-;27256:3;27277:67;27341:2;27336:3;27277:67;:::i;:::-;27270:74;;27353:93;27442:3;27353:93;:::i;:::-;27471:2;27466:3;27462:12;27455:19;;27114:366;;;:::o;27486:419::-;27652:4;27690:2;27679:9;27675:18;27667:26;;27739:9;27733:4;27729:20;27725:1;27714:9;27710:17;27703:47;27767:131;27893:4;27767:131;:::i;:::-;27759:139;;27486:419;;;:::o;27911:182::-;28051:34;28047:1;28039:6;28035:14;28028:58;27911:182;:::o;28099:366::-;28241:3;28262:67;28326:2;28321:3;28262:67;:::i;:::-;28255:74;;28338:93;28427:3;28338:93;:::i;:::-;28456:2;28451:3;28447:12;28440:19;;28099:366;;;:::o;28471:419::-;28637:4;28675:2;28664:9;28660:18;28652:26;;28724:9;28718:4;28714:20;28710:1;28699:9;28695:17;28688:47;28752:131;28878:4;28752:131;:::i;:::-;28744:139;;28471:419;;;:::o;28896:224::-;29036:34;29032:1;29024:6;29020:14;29013:58;29105:7;29100:2;29092:6;29088:15;29081:32;28896:224;:::o;29126:366::-;29268:3;29289:67;29353:2;29348:3;29289:67;:::i;:::-;29282:74;;29365:93;29454:3;29365:93;:::i;:::-;29483:2;29478:3;29474:12;29467:19;;29126:366;;;:::o;29498:419::-;29664:4;29702:2;29691:9;29687:18;29679:26;;29751:9;29745:4;29741:20;29737:1;29726:9;29722:17;29715:47;29779:131;29905:4;29779:131;:::i;:::-;29771:139;;29498:419;;;:::o;29923:223::-;30063:34;30059:1;30051:6;30047:14;30040:58;30132:6;30127:2;30119:6;30115:15;30108:31;29923:223;:::o;30152:366::-;30294:3;30315:67;30379:2;30374:3;30315:67;:::i;:::-;30308:74;;30391:93;30480:3;30391:93;:::i;:::-;30509:2;30504:3;30500:12;30493:19;;30152:366;;;:::o;30524:419::-;30690:4;30728:2;30717:9;30713:18;30705:26;;30777:9;30771:4;30767:20;30763:1;30752:9;30748:17;30741:47;30805:131;30931:4;30805:131;:::i;:::-;30797:139;;30524:419;;;:::o;30949:175::-;31089:27;31085:1;31077:6;31073:14;31066:51;30949:175;:::o;31130:366::-;31272:3;31293:67;31357:2;31352:3;31293:67;:::i;:::-;31286:74;;31369:93;31458:3;31369:93;:::i;:::-;31487:2;31482:3;31478:12;31471:19;;31130:366;;;:::o;31502:419::-;31668:4;31706:2;31695:9;31691:18;31683:26;;31755:9;31749:4;31745:20;31741:1;31730:9;31726:17;31719:47;31783:131;31909:4;31783:131;:::i;:::-;31775:139;;31502:419;;;:::o;31927:237::-;32067:34;32063:1;32055:6;32051:14;32044:58;32136:20;32131:2;32123:6;32119:15;32112:45;31927:237;:::o;32170:366::-;32312:3;32333:67;32397:2;32392:3;32333:67;:::i;:::-;32326:74;;32409:93;32498:3;32409:93;:::i;:::-;32527:2;32522:3;32518:12;32511:19;;32170:366;;;:::o;32542:419::-;32708:4;32746:2;32735:9;32731:18;32723:26;;32795:9;32789:4;32785:20;32781:1;32770:9;32766:17;32759:47;32823:131;32949:4;32823:131;:::i;:::-;32815:139;;32542:419;;;:::o;32967:180::-;33015:77;33012:1;33005:88;33112:4;33109:1;33102:15;33136:4;33133:1;33126:15;33153:230;33293:34;33289:1;33281:6;33277:14;33270:58;33362:13;33357:2;33349:6;33345:15;33338:38;33153:230;:::o;33389:366::-;33531:3;33552:67;33616:2;33611:3;33552:67;:::i;:::-;33545:74;;33628:93;33717:3;33628:93;:::i;:::-;33746:2;33741:3;33737:12;33730:19;;33389:366;;;:::o;33761:419::-;33927:4;33965:2;33954:9;33950:18;33942:26;;34014:9;34008:4;34004:20;34000:1;33989:9;33985:17;33978:47;34042:131;34168:4;34042:131;:::i;:::-;34034:139;;33761:419;;;:::o;34186:170::-;34326:22;34322:1;34314:6;34310:14;34303:46;34186:170;:::o;34362:366::-;34504:3;34525:67;34589:2;34584:3;34525:67;:::i;:::-;34518:74;;34601:93;34690:3;34601:93;:::i;:::-;34719:2;34714:3;34710:12;34703:19;;34362:366;;;:::o;34734:419::-;34900:4;34938:2;34927:9;34923:18;34915:26;;34987:9;34981:4;34977:20;34973:1;34962:9;34958:17;34951:47;35015:131;35141:4;35015:131;:::i;:::-;35007:139;;34734:419;;;:::o;35159:166::-;35299:18;35295:1;35287:6;35283:14;35276:42;35159:166;:::o;35331:366::-;35473:3;35494:67;35558:2;35553:3;35494:67;:::i;:::-;35487:74;;35570:93;35659:3;35570:93;:::i;:::-;35688:2;35683:3;35679:12;35672:19;;35331:366;;;:::o;35703:419::-;35869:4;35907:2;35896:9;35892:18;35884:26;;35956:9;35950:4;35946:20;35942:1;35931:9;35927:17;35920:47;35984:131;36110:4;35984:131;:::i;:::-;35976:139;;35703:419;;;:::o;36128:98::-;36179:6;36213:5;36207:12;36197:22;;36128:98;;;:::o;36232:168::-;36315:11;36349:6;36344:3;36337:19;36389:4;36384:3;36380:14;36365:29;;36232:168;;;;:::o;36406:360::-;36492:3;36520:38;36552:5;36520:38;:::i;:::-;36574:70;36637:6;36632:3;36574:70;:::i;:::-;36567:77;;36653:52;36698:6;36693:3;36686:4;36679:5;36675:16;36653:52;:::i;:::-;36730:29;36752:6;36730:29;:::i;:::-;36725:3;36721:39;36714:46;;36496:270;36406:360;;;;:::o;36772:640::-;36967:4;37005:3;36994:9;36990:19;36982:27;;37019:71;37087:1;37076:9;37072:17;37063:6;37019:71;:::i;:::-;37100:72;37168:2;37157:9;37153:18;37144:6;37100:72;:::i;:::-;37182;37250:2;37239:9;37235:18;37226:6;37182:72;:::i;:::-;37301:9;37295:4;37291:20;37286:2;37275:9;37271:18;37264:48;37329:76;37400:4;37391:6;37329:76;:::i;:::-;37321:84;;36772:640;;;;;;;:::o;37418:141::-;37474:5;37505:6;37499:13;37490:22;;37521:32;37547:5;37521:32;:::i;:::-;37418:141;;;;:::o;37565:349::-;37634:6;37683:2;37671:9;37662:7;37658:23;37654:32;37651:119;;;37689:79;;:::i;:::-;37651:119;37809:1;37834:63;37889:7;37880:6;37869:9;37865:22;37834:63;:::i;:::-;37824:73;;37780:127;37565:349;;;;:::o;37920:182::-;38060:34;38056:1;38048:6;38044:14;38037:58;37920:182;:::o;38108:366::-;38250:3;38271:67;38335:2;38330:3;38271:67;:::i;:::-;38264:74;;38347:93;38436:3;38347:93;:::i;:::-;38465:2;38460:3;38456:12;38449:19;;38108:366;;;:::o;38480:419::-;38646:4;38684:2;38673:9;38669:18;38661:26;;38733:9;38727:4;38723:20;38719:1;38708:9;38704:17;38697:47;38761:131;38887:4;38761:131;:::i;:::-;38753:139;;38480:419;;;:::o;38905:178::-;39045:30;39041:1;39033:6;39029:14;39022:54;38905:178;:::o;39089:366::-;39231:3;39252:67;39316:2;39311:3;39252:67;:::i;:::-;39245:74;;39328:93;39417:3;39328:93;:::i;:::-;39446:2;39441:3;39437:12;39430:19;;39089:366;;;:::o;39461:419::-;39627:4;39665:2;39654:9;39650:18;39642:26;;39714:9;39708:4;39704:20;39700:1;39689:9;39685:17;39678:47;39742:131;39868:4;39742:131;:::i;:::-;39734:139;;39461:419;;;:::o;39886:191::-;39926:4;39946:20;39964:1;39946:20;:::i;:::-;39941:25;;39980:20;39998:1;39980:20;:::i;:::-;39975:25;;40019:1;40016;40013:8;40010:34;;;40024:18;;:::i;:::-;40010:34;40069:1;40066;40062:9;40054:17;;39886:191;;;;:::o;40083:305::-;40123:3;40142:20;40160:1;40142:20;:::i;:::-;40137:25;;40176:20;40194:1;40176:20;:::i;:::-;40171:25;;40330:1;40262:66;40258:74;40255:1;40252:81;40249:107;;;40336:18;;:::i;:::-;40249:107;40380:1;40377;40373:9;40366:16;;40083:305;;;;:::o

Swarm Source

ipfs://885b656ac029bb11d2c62b89868d7f872ed92ff19ae929aca7eace2ce919bfd5
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.