ETH Price: $3,327.69 (-1.78%)
Gas: 24 Gwei

Token

AI Nightbirds Project X (AINPX)
 

Overview

Max Total Supply

3,120 AINPX

Holders

250

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 AINPX
0x194feaadb5972dd0451baca1300921c730062e77
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AI Nightbirds Project x Stunning collection 100 % AI generated, 30k NFTs live on Ethereum network. welcome in club Project X.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AINightbirds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-11
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overriden 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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: transfer caller is not owner nor 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: transfer caller is not owner nor 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 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 _owners[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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @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 of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @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 {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/AINPX.sol





pragma solidity ^0.8.7;

contract AINightbirds is Ownable, ERC721 {
    using SafeMath for uint256;

  uint public maxPerTransaction = 20;
  uint public freeSupply = 30000;
  bool public publicSaleActive = false;
  uint256 public totalSupply;
  string public baseURI;

  constructor(string memory name, string memory symbol, string memory baseURIinput)
    ERC721(name, symbol)
  {
      baseURI = baseURIinput;
  }

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

  function setBaseURI(string calldata newBaseUri) external onlyOwner {
    baseURI = newBaseUri;
  }

  function togglePublicSaleActive() external onlyOwner {
    publicSaleActive = !publicSaleActive;
  }

    function freeMint(uint256 numberOfTokens) public {
    require(totalSupply <= freeSupply, "Free supply is over!");
    require(publicSaleActive == true, "Sale is Paused.");
    require(numberOfTokens <= maxPerTransaction, "Over max per transaction!");

    uint256 newId = totalSupply;
        for (uint i = 0; i < numberOfTokens; i++) {
        newId+=1;
        _safeMint(msg.sender, newId);
        }
    totalSupply = newId;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIinput","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","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":"publicSaleActive","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":"newBaseUri","type":"string"}],"name":"setBaseURI","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":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260146007556175306008556000600960006101000a81548160ff0219169083151502179055503480156200003757600080fd5b506040516200382f3803806200382f83398181016040528101906200005d9190620002cf565b82826200007f62000073620000d560201b60201c565b620000dd60201b60201c565b816001908051906020019062000097929190620001a1565b508060029080519060200190620000b0929190620001a1565b50505080600b9080519060200190620000cb929190620001a1565b505050506200050c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001af906200041d565b90600052602060002090601f016020900481019282620001d357600085556200021f565b82601f10620001ee57805160ff19168380011785556200021f565b828001600101855582156200021f579182015b828111156200021e57825182559160200191906001019062000201565b5b5090506200022e919062000232565b5090565b5b808211156200024d57600081600090555060010162000233565b5090565b6000620002686200026284620003b1565b62000388565b905082815260208101848484011115620002875762000286620004ec565b5b62000294848285620003e7565b509392505050565b600082601f830112620002b457620002b3620004e7565b5b8151620002c684826020860162000251565b91505092915050565b600080600060608486031215620002eb57620002ea620004f6565b5b600084015167ffffffffffffffff8111156200030c576200030b620004f1565b5b6200031a868287016200029c565b935050602084015167ffffffffffffffff8111156200033e576200033d620004f1565b5b6200034c868287016200029c565b925050604084015167ffffffffffffffff81111562000370576200036f620004f1565b5b6200037e868287016200029c565b9150509250925092565b600062000394620003a7565b9050620003a2828262000453565b919050565b6000604051905090565b600067ffffffffffffffff821115620003cf57620003ce620004b8565b5b620003da82620004fb565b9050602081019050919050565b60005b8381101562000407578082015181840152602081019050620003ea565b8381111562000417576000848401525b50505050565b600060028204905060018216806200043657607f821691505b602082108114156200044d576200044c62000489565b5b50919050565b6200045e82620004fb565b810181811067ffffffffffffffff8211171562000480576200047f620004b8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613313806200051c6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80636352211e116100de57806395d89b4111610097578063bc8893b411610071578063bc8893b4146103ec578063c87b56dd1461040a578063e985e9c51461043a578063f2fde38b1461046a57610173565b806395d89b4114610396578063a22cb465146103b4578063b88d4fde146103d057610173565b80636352211e146102d45780636c0360eb1461030457806370a0823114610322578063715018a6146103525780637c928fe91461035c5780638da5cb5b1461037857610173565b806323b872dd1161013057806323b872dd1461023a57806324a6ab0c146102565780633ccfd60b1461027457806342842e0e1461027e5780634b980d671461029a57806355f804b3146102b857610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f65780630c894cfe1461021257806318160ddd1461021c575b600080fd5b610192600480360381019061018d919061222d565b610486565b60405161019f91906126f5565b60405180910390f35b6101b0610568565b6040516101bd9190612710565b60405180910390f35b6101e060048036038101906101db91906122d4565b6105fa565b6040516101ed919061268e565b60405180910390f35b610210600480360381019061020b91906121ed565b61067f565b005b61021a610797565b005b61022461083f565b6040516102319190612992565b60405180910390f35b610254600480360381019061024f91906120d7565b610845565b005b61025e6108a5565b60405161026b9190612992565b60405180910390f35b61027c6108ab565b005b610298600480360381019061029391906120d7565b610976565b005b6102a2610996565b6040516102af9190612992565b60405180910390f35b6102d260048036038101906102cd9190612287565b61099c565b005b6102ee60048036038101906102e991906122d4565b610a2e565b6040516102fb919061268e565b60405180910390f35b61030c610ae0565b6040516103199190612710565b60405180910390f35b61033c6004803603810190610337919061206a565b610b6e565b6040516103499190612992565b60405180910390f35b61035a610c26565b005b610376600480360381019061037191906122d4565b610cae565b005b610380610dda565b60405161038d919061268e565b60405180910390f35b61039e610e03565b6040516103ab9190612710565b60405180910390f35b6103ce60048036038101906103c991906121ad565b610e95565b005b6103ea60048036038101906103e5919061212a565b611016565b005b6103f4611078565b60405161040191906126f5565b60405180910390f35b610424600480360381019061041f91906122d4565b61108b565b6040516104319190612710565b60405180910390f35b610454600480360381019061044f9190612097565b611132565b60405161046191906126f5565b60405180910390f35b610484600480360381019061047f919061206a565b6111c6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105615750610560826112be565b5b9050919050565b60606001805461057790612bb7565b80601f01602080910402602001604051908101604052809291908181526020018280546105a390612bb7565b80156105f05780601f106105c5576101008083540402835291602001916105f0565b820191906000526020600020905b8154815290600101906020018083116105d357829003601f168201915b5050505050905090565b600061060582611328565b610644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063b90612892565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061068a82610a2e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290612912565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661071a611394565b73ffffffffffffffffffffffffffffffffffffffff161480610749575061074881610743611394565b611132565b5b610788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077f906127f2565b60405180910390fd5b610792838361139c565b505050565b61079f611394565b73ffffffffffffffffffffffffffffffffffffffff166107bd610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906128b2565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b600a5481565b610856610850611394565b82611455565b610895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088c90612932565b60405180910390fd5b6108a0838383611533565b505050565b60085481565b6108b3611394565b73ffffffffffffffffffffffffffffffffffffffff166108d1610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e906128b2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610972573d6000803e3d6000fd5b5050565b61099183838360405180602001604052806000815250611016565b505050565b60075481565b6109a4611394565b73ffffffffffffffffffffffffffffffffffffffff166109c2610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f906128b2565b60405180910390fd5b8181600b9190610a29929190611e98565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90612832565b60405180910390fd5b80915050919050565b600b8054610aed90612bb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1990612bb7565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612812565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c2e611394565b73ffffffffffffffffffffffffffffffffffffffff16610c4c610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906128b2565b60405180910390fd5b610cac600061178f565b565b600854600a541115610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90612952565b60405180910390fd5b60011515600960009054906101000a900460ff16151514610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290612972565b60405180910390fd5b600754811115610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790612852565b60405180910390fd5b6000600a54905060005b82811015610dce57600182610daf9190612a46565b9150610dbb3383611853565b8080610dc690612c1a565b915050610d9a565b5080600a819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610e1290612bb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e90612bb7565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b5050505050905090565b610e9d611394565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906127b2565b60405180910390fd5b8060066000610f18611394565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fc5611394565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161100a91906126f5565b60405180910390a35050565b611027611021611394565b83611455565b611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90612932565b60405180910390fd5b61107284848484611871565b50505050565b600960009054906101000a900460ff1681565b606061109682611328565b6110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc906128f2565b60405180910390fd5b60006110df6118cd565b905060008151116110ff576040518060200160405280600081525061112a565b806111098461195f565b60405160200161111a92919061266a565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111ce611394565b73ffffffffffffffffffffffffffffffffffffffff166111ec610dda565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611239906128b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990612752565b60405180910390fd5b6112bb8161178f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661140f83610a2e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061146082611328565b61149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906127d2565b60405180910390fd5b60006114aa83610a2e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061151957508373ffffffffffffffffffffffffffffffffffffffff16611501846105fa565b73ffffffffffffffffffffffffffffffffffffffff16145b8061152a57506115298185611132565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661155382610a2e565b73ffffffffffffffffffffffffffffffffffffffff16146115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a0906128d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090612792565b60405180910390fd5b611624838383611ac0565b61162f60008261139c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461167f9190612acd565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d69190612a46565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61186d828260405180602001604052806000815250611ac5565b5050565b61187c848484611533565b61188884848484611b20565b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612732565b60405180910390fd5b50505050565b6060600b80546118dc90612bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461190890612bb7565b80156119555780601f1061192a57610100808354040283529160200191611955565b820191906000526020600020905b81548152906001019060200180831161193857829003601f168201915b5050505050905090565b606060008214156119a7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611abb565b600082905060005b600082146119d95780806119c290612c1a565b915050600a826119d29190612a9c565b91506119af565b60008167ffffffffffffffff8111156119f5576119f4612d50565b5b6040519080825280601f01601f191660200182016040528015611a275781602001600182028036833780820191505090505b5090505b60008514611ab457600182611a409190612acd565b9150600a85611a4f9190612c63565b6030611a5b9190612a46565b60f81b818381518110611a7157611a70612d21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611aad9190612a9c565b9450611a2b565b8093505050505b919050565b505050565b611acf8383611cb7565b611adc6000848484611b20565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290612732565b60405180910390fd5b505050565b6000611b418473ffffffffffffffffffffffffffffffffffffffff16611e85565b15611caa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b6a611394565b8786866040518563ffffffff1660e01b8152600401611b8c94939291906126a9565b602060405180830381600087803b158015611ba657600080fd5b505af1925050508015611bd757506040513d601f19601f82011682018060405250810190611bd4919061225a565b60015b611c5a573d8060008114611c07576040519150601f19603f3d011682016040523d82523d6000602084013e611c0c565b606091505b50600081511415611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4990612732565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611caf565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612872565b60405180910390fd5b611d3081611328565b15611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790612772565b60405180910390fd5b611d7c60008383611ac0565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dcc9190612a46565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611ea490612bb7565b90600052602060002090601f016020900481019282611ec65760008555611f0d565b82601f10611edf57803560ff1916838001178555611f0d565b82800160010185558215611f0d579182015b82811115611f0c578235825591602001919060010190611ef1565b5b509050611f1a9190611f1e565b5090565b5b80821115611f37576000816000905550600101611f1f565b5090565b6000611f4e611f49846129d2565b6129ad565b905082815260208101848484011115611f6a57611f69612d8e565b5b611f75848285612b75565b509392505050565b600081359050611f8c81613281565b92915050565b600081359050611fa181613298565b92915050565b600081359050611fb6816132af565b92915050565b600081519050611fcb816132af565b92915050565b600082601f830112611fe657611fe5612d84565b5b8135611ff6848260208601611f3b565b91505092915050565b60008083601f84011261201557612014612d84565b5b8235905067ffffffffffffffff81111561203257612031612d7f565b5b60208301915083600182028301111561204e5761204d612d89565b5b9250929050565b600081359050612064816132c6565b92915050565b6000602082840312156120805761207f612d98565b5b600061208e84828501611f7d565b91505092915050565b600080604083850312156120ae576120ad612d98565b5b60006120bc85828601611f7d565b92505060206120cd85828601611f7d565b9150509250929050565b6000806000606084860312156120f0576120ef612d98565b5b60006120fe86828701611f7d565b935050602061210f86828701611f7d565b925050604061212086828701612055565b9150509250925092565b6000806000806080858703121561214457612143612d98565b5b600061215287828801611f7d565b945050602061216387828801611f7d565b935050604061217487828801612055565b925050606085013567ffffffffffffffff81111561219557612194612d93565b5b6121a187828801611fd1565b91505092959194509250565b600080604083850312156121c4576121c3612d98565b5b60006121d285828601611f7d565b92505060206121e385828601611f92565b9150509250929050565b6000806040838503121561220457612203612d98565b5b600061221285828601611f7d565b925050602061222385828601612055565b9150509250929050565b60006020828403121561224357612242612d98565b5b600061225184828501611fa7565b91505092915050565b6000602082840312156122705761226f612d98565b5b600061227e84828501611fbc565b91505092915050565b6000806020838503121561229e5761229d612d98565b5b600083013567ffffffffffffffff8111156122bc576122bb612d93565b5b6122c885828601611fff565b92509250509250929050565b6000602082840312156122ea576122e9612d98565b5b60006122f884828501612055565b91505092915050565b61230a81612b01565b82525050565b61231981612b13565b82525050565b600061232a82612a03565b6123348185612a19565b9350612344818560208601612b84565b61234d81612d9d565b840191505092915050565b600061236382612a0e565b61236d8185612a2a565b935061237d818560208601612b84565b61238681612d9d565b840191505092915050565b600061239c82612a0e565b6123a68185612a3b565b93506123b6818560208601612b84565b80840191505092915050565b60006123cf603283612a2a565b91506123da82612dae565b604082019050919050565b60006123f2602683612a2a565b91506123fd82612dfd565b604082019050919050565b6000612415601c83612a2a565b915061242082612e4c565b602082019050919050565b6000612438602483612a2a565b915061244382612e75565b604082019050919050565b600061245b601983612a2a565b915061246682612ec4565b602082019050919050565b600061247e602c83612a2a565b915061248982612eed565b604082019050919050565b60006124a1603883612a2a565b91506124ac82612f3c565b604082019050919050565b60006124c4602a83612a2a565b91506124cf82612f8b565b604082019050919050565b60006124e7602983612a2a565b91506124f282612fda565b604082019050919050565b600061250a601983612a2a565b915061251582613029565b602082019050919050565b600061252d602083612a2a565b915061253882613052565b602082019050919050565b6000612550602c83612a2a565b915061255b8261307b565b604082019050919050565b6000612573602083612a2a565b915061257e826130ca565b602082019050919050565b6000612596602983612a2a565b91506125a1826130f3565b604082019050919050565b60006125b9602f83612a2a565b91506125c482613142565b604082019050919050565b60006125dc602183612a2a565b91506125e782613191565b604082019050919050565b60006125ff603183612a2a565b915061260a826131e0565b604082019050919050565b6000612622601483612a2a565b915061262d8261322f565b602082019050919050565b6000612645600f83612a2a565b915061265082613258565b602082019050919050565b61266481612b6b565b82525050565b60006126768285612391565b91506126828284612391565b91508190509392505050565b60006020820190506126a36000830184612301565b92915050565b60006080820190506126be6000830187612301565b6126cb6020830186612301565b6126d8604083018561265b565b81810360608301526126ea818461231f565b905095945050505050565b600060208201905061270a6000830184612310565b92915050565b6000602082019050818103600083015261272a8184612358565b905092915050565b6000602082019050818103600083015261274b816123c2565b9050919050565b6000602082019050818103600083015261276b816123e5565b9050919050565b6000602082019050818103600083015261278b81612408565b9050919050565b600060208201905081810360008301526127ab8161242b565b9050919050565b600060208201905081810360008301526127cb8161244e565b9050919050565b600060208201905081810360008301526127eb81612471565b9050919050565b6000602082019050818103600083015261280b81612494565b9050919050565b6000602082019050818103600083015261282b816124b7565b9050919050565b6000602082019050818103600083015261284b816124da565b9050919050565b6000602082019050818103600083015261286b816124fd565b9050919050565b6000602082019050818103600083015261288b81612520565b9050919050565b600060208201905081810360008301526128ab81612543565b9050919050565b600060208201905081810360008301526128cb81612566565b9050919050565b600060208201905081810360008301526128eb81612589565b9050919050565b6000602082019050818103600083015261290b816125ac565b9050919050565b6000602082019050818103600083015261292b816125cf565b9050919050565b6000602082019050818103600083015261294b816125f2565b9050919050565b6000602082019050818103600083015261296b81612615565b9050919050565b6000602082019050818103600083015261298b81612638565b9050919050565b60006020820190506129a7600083018461265b565b92915050565b60006129b76129c8565b90506129c38282612be9565b919050565b6000604051905090565b600067ffffffffffffffff8211156129ed576129ec612d50565b5b6129f682612d9d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a5182612b6b565b9150612a5c83612b6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a9157612a90612c94565b5b828201905092915050565b6000612aa782612b6b565b9150612ab283612b6b565b925082612ac257612ac1612cc3565b5b828204905092915050565b6000612ad882612b6b565b9150612ae383612b6b565b925082821015612af657612af5612c94565b5b828203905092915050565b6000612b0c82612b4b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ba2578082015181840152602081019050612b87565b83811115612bb1576000848401525b50505050565b60006002820490506001821680612bcf57607f821691505b60208210811415612be357612be2612cf2565b5b50919050565b612bf282612d9d565b810181811067ffffffffffffffff82111715612c1157612c10612d50565b5b80604052505050565b6000612c2582612b6b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c5857612c57612c94565b5b600182019050919050565b6000612c6e82612b6b565b9150612c7983612b6b565b925082612c8957612c88612cc3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f766572206d617820706572207472616e73616374696f6e2100000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4672656520737570706c79206973206f76657221000000000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b61328a81612b01565b811461329557600080fd5b50565b6132a181612b13565b81146132ac57600080fd5b50565b6132b881612b1f565b81146132c357600080fd5b50565b6132cf81612b6b565b81146132da57600080fd5b5056fea2646970667358221220d4d1b722e3e0a4acdb565f0c1e35e40c42b6255de7dd78bf613f17e7ad47c7b664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000174149204e6967687462697264732050726f6a6563742058000000000000000000000000000000000000000000000000000000000000000000000000000000000541494e5058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d625547464d5776335939316952774c397966746266366b5a47555070426253736837723176655434614c37622f000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80636352211e116100de57806395d89b4111610097578063bc8893b411610071578063bc8893b4146103ec578063c87b56dd1461040a578063e985e9c51461043a578063f2fde38b1461046a57610173565b806395d89b4114610396578063a22cb465146103b4578063b88d4fde146103d057610173565b80636352211e146102d45780636c0360eb1461030457806370a0823114610322578063715018a6146103525780637c928fe91461035c5780638da5cb5b1461037857610173565b806323b872dd1161013057806323b872dd1461023a57806324a6ab0c146102565780633ccfd60b1461027457806342842e0e1461027e5780634b980d671461029a57806355f804b3146102b857610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f65780630c894cfe1461021257806318160ddd1461021c575b600080fd5b610192600480360381019061018d919061222d565b610486565b60405161019f91906126f5565b60405180910390f35b6101b0610568565b6040516101bd9190612710565b60405180910390f35b6101e060048036038101906101db91906122d4565b6105fa565b6040516101ed919061268e565b60405180910390f35b610210600480360381019061020b91906121ed565b61067f565b005b61021a610797565b005b61022461083f565b6040516102319190612992565b60405180910390f35b610254600480360381019061024f91906120d7565b610845565b005b61025e6108a5565b60405161026b9190612992565b60405180910390f35b61027c6108ab565b005b610298600480360381019061029391906120d7565b610976565b005b6102a2610996565b6040516102af9190612992565b60405180910390f35b6102d260048036038101906102cd9190612287565b61099c565b005b6102ee60048036038101906102e991906122d4565b610a2e565b6040516102fb919061268e565b60405180910390f35b61030c610ae0565b6040516103199190612710565b60405180910390f35b61033c6004803603810190610337919061206a565b610b6e565b6040516103499190612992565b60405180910390f35b61035a610c26565b005b610376600480360381019061037191906122d4565b610cae565b005b610380610dda565b60405161038d919061268e565b60405180910390f35b61039e610e03565b6040516103ab9190612710565b60405180910390f35b6103ce60048036038101906103c991906121ad565b610e95565b005b6103ea60048036038101906103e5919061212a565b611016565b005b6103f4611078565b60405161040191906126f5565b60405180910390f35b610424600480360381019061041f91906122d4565b61108b565b6040516104319190612710565b60405180910390f35b610454600480360381019061044f9190612097565b611132565b60405161046191906126f5565b60405180910390f35b610484600480360381019061047f919061206a565b6111c6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105615750610560826112be565b5b9050919050565b60606001805461057790612bb7565b80601f01602080910402602001604051908101604052809291908181526020018280546105a390612bb7565b80156105f05780601f106105c5576101008083540402835291602001916105f0565b820191906000526020600020905b8154815290600101906020018083116105d357829003601f168201915b5050505050905090565b600061060582611328565b610644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063b90612892565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061068a82610a2e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290612912565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661071a611394565b73ffffffffffffffffffffffffffffffffffffffff161480610749575061074881610743611394565b611132565b5b610788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077f906127f2565b60405180910390fd5b610792838361139c565b505050565b61079f611394565b73ffffffffffffffffffffffffffffffffffffffff166107bd610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906128b2565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b600a5481565b610856610850611394565b82611455565b610895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088c90612932565b60405180910390fd5b6108a0838383611533565b505050565b60085481565b6108b3611394565b73ffffffffffffffffffffffffffffffffffffffff166108d1610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e906128b2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610972573d6000803e3d6000fd5b5050565b61099183838360405180602001604052806000815250611016565b505050565b60075481565b6109a4611394565b73ffffffffffffffffffffffffffffffffffffffff166109c2610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f906128b2565b60405180910390fd5b8181600b9190610a29929190611e98565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90612832565b60405180910390fd5b80915050919050565b600b8054610aed90612bb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1990612bb7565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612812565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c2e611394565b73ffffffffffffffffffffffffffffffffffffffff16610c4c610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906128b2565b60405180910390fd5b610cac600061178f565b565b600854600a541115610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90612952565b60405180910390fd5b60011515600960009054906101000a900460ff16151514610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290612972565b60405180910390fd5b600754811115610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790612852565b60405180910390fd5b6000600a54905060005b82811015610dce57600182610daf9190612a46565b9150610dbb3383611853565b8080610dc690612c1a565b915050610d9a565b5080600a819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610e1290612bb7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e90612bb7565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b5050505050905090565b610e9d611394565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906127b2565b60405180910390fd5b8060066000610f18611394565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fc5611394565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161100a91906126f5565b60405180910390a35050565b611027611021611394565b83611455565b611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90612932565b60405180910390fd5b61107284848484611871565b50505050565b600960009054906101000a900460ff1681565b606061109682611328565b6110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc906128f2565b60405180910390fd5b60006110df6118cd565b905060008151116110ff576040518060200160405280600081525061112a565b806111098461195f565b60405160200161111a92919061266a565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111ce611394565b73ffffffffffffffffffffffffffffffffffffffff166111ec610dda565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611239906128b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990612752565b60405180910390fd5b6112bb8161178f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661140f83610a2e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061146082611328565b61149f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611496906127d2565b60405180910390fd5b60006114aa83610a2e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061151957508373ffffffffffffffffffffffffffffffffffffffff16611501846105fa565b73ffffffffffffffffffffffffffffffffffffffff16145b8061152a57506115298185611132565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661155382610a2e565b73ffffffffffffffffffffffffffffffffffffffff16146115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a0906128d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090612792565b60405180910390fd5b611624838383611ac0565b61162f60008261139c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461167f9190612acd565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d69190612a46565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61186d828260405180602001604052806000815250611ac5565b5050565b61187c848484611533565b61188884848484611b20565b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90612732565b60405180910390fd5b50505050565b6060600b80546118dc90612bb7565b80601f016020809104026020016040519081016040528092919081815260200182805461190890612bb7565b80156119555780601f1061192a57610100808354040283529160200191611955565b820191906000526020600020905b81548152906001019060200180831161193857829003601f168201915b5050505050905090565b606060008214156119a7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611abb565b600082905060005b600082146119d95780806119c290612c1a565b915050600a826119d29190612a9c565b91506119af565b60008167ffffffffffffffff8111156119f5576119f4612d50565b5b6040519080825280601f01601f191660200182016040528015611a275781602001600182028036833780820191505090505b5090505b60008514611ab457600182611a409190612acd565b9150600a85611a4f9190612c63565b6030611a5b9190612a46565b60f81b818381518110611a7157611a70612d21565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611aad9190612a9c565b9450611a2b565b8093505050505b919050565b505050565b611acf8383611cb7565b611adc6000848484611b20565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290612732565b60405180910390fd5b505050565b6000611b418473ffffffffffffffffffffffffffffffffffffffff16611e85565b15611caa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b6a611394565b8786866040518563ffffffff1660e01b8152600401611b8c94939291906126a9565b602060405180830381600087803b158015611ba657600080fd5b505af1925050508015611bd757506040513d601f19601f82011682018060405250810190611bd4919061225a565b60015b611c5a573d8060008114611c07576040519150601f19603f3d011682016040523d82523d6000602084013e611c0c565b606091505b50600081511415611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4990612732565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611caf565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612872565b60405180910390fd5b611d3081611328565b15611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790612772565b60405180910390fd5b611d7c60008383611ac0565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dcc9190612a46565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611ea490612bb7565b90600052602060002090601f016020900481019282611ec65760008555611f0d565b82601f10611edf57803560ff1916838001178555611f0d565b82800160010185558215611f0d579182015b82811115611f0c578235825591602001919060010190611ef1565b5b509050611f1a9190611f1e565b5090565b5b80821115611f37576000816000905550600101611f1f565b5090565b6000611f4e611f49846129d2565b6129ad565b905082815260208101848484011115611f6a57611f69612d8e565b5b611f75848285612b75565b509392505050565b600081359050611f8c81613281565b92915050565b600081359050611fa181613298565b92915050565b600081359050611fb6816132af565b92915050565b600081519050611fcb816132af565b92915050565b600082601f830112611fe657611fe5612d84565b5b8135611ff6848260208601611f3b565b91505092915050565b60008083601f84011261201557612014612d84565b5b8235905067ffffffffffffffff81111561203257612031612d7f565b5b60208301915083600182028301111561204e5761204d612d89565b5b9250929050565b600081359050612064816132c6565b92915050565b6000602082840312156120805761207f612d98565b5b600061208e84828501611f7d565b91505092915050565b600080604083850312156120ae576120ad612d98565b5b60006120bc85828601611f7d565b92505060206120cd85828601611f7d565b9150509250929050565b6000806000606084860312156120f0576120ef612d98565b5b60006120fe86828701611f7d565b935050602061210f86828701611f7d565b925050604061212086828701612055565b9150509250925092565b6000806000806080858703121561214457612143612d98565b5b600061215287828801611f7d565b945050602061216387828801611f7d565b935050604061217487828801612055565b925050606085013567ffffffffffffffff81111561219557612194612d93565b5b6121a187828801611fd1565b91505092959194509250565b600080604083850312156121c4576121c3612d98565b5b60006121d285828601611f7d565b92505060206121e385828601611f92565b9150509250929050565b6000806040838503121561220457612203612d98565b5b600061221285828601611f7d565b925050602061222385828601612055565b9150509250929050565b60006020828403121561224357612242612d98565b5b600061225184828501611fa7565b91505092915050565b6000602082840312156122705761226f612d98565b5b600061227e84828501611fbc565b91505092915050565b6000806020838503121561229e5761229d612d98565b5b600083013567ffffffffffffffff8111156122bc576122bb612d93565b5b6122c885828601611fff565b92509250509250929050565b6000602082840312156122ea576122e9612d98565b5b60006122f884828501612055565b91505092915050565b61230a81612b01565b82525050565b61231981612b13565b82525050565b600061232a82612a03565b6123348185612a19565b9350612344818560208601612b84565b61234d81612d9d565b840191505092915050565b600061236382612a0e565b61236d8185612a2a565b935061237d818560208601612b84565b61238681612d9d565b840191505092915050565b600061239c82612a0e565b6123a68185612a3b565b93506123b6818560208601612b84565b80840191505092915050565b60006123cf603283612a2a565b91506123da82612dae565b604082019050919050565b60006123f2602683612a2a565b91506123fd82612dfd565b604082019050919050565b6000612415601c83612a2a565b915061242082612e4c565b602082019050919050565b6000612438602483612a2a565b915061244382612e75565b604082019050919050565b600061245b601983612a2a565b915061246682612ec4565b602082019050919050565b600061247e602c83612a2a565b915061248982612eed565b604082019050919050565b60006124a1603883612a2a565b91506124ac82612f3c565b604082019050919050565b60006124c4602a83612a2a565b91506124cf82612f8b565b604082019050919050565b60006124e7602983612a2a565b91506124f282612fda565b604082019050919050565b600061250a601983612a2a565b915061251582613029565b602082019050919050565b600061252d602083612a2a565b915061253882613052565b602082019050919050565b6000612550602c83612a2a565b915061255b8261307b565b604082019050919050565b6000612573602083612a2a565b915061257e826130ca565b602082019050919050565b6000612596602983612a2a565b91506125a1826130f3565b604082019050919050565b60006125b9602f83612a2a565b91506125c482613142565b604082019050919050565b60006125dc602183612a2a565b91506125e782613191565b604082019050919050565b60006125ff603183612a2a565b915061260a826131e0565b604082019050919050565b6000612622601483612a2a565b915061262d8261322f565b602082019050919050565b6000612645600f83612a2a565b915061265082613258565b602082019050919050565b61266481612b6b565b82525050565b60006126768285612391565b91506126828284612391565b91508190509392505050565b60006020820190506126a36000830184612301565b92915050565b60006080820190506126be6000830187612301565b6126cb6020830186612301565b6126d8604083018561265b565b81810360608301526126ea818461231f565b905095945050505050565b600060208201905061270a6000830184612310565b92915050565b6000602082019050818103600083015261272a8184612358565b905092915050565b6000602082019050818103600083015261274b816123c2565b9050919050565b6000602082019050818103600083015261276b816123e5565b9050919050565b6000602082019050818103600083015261278b81612408565b9050919050565b600060208201905081810360008301526127ab8161242b565b9050919050565b600060208201905081810360008301526127cb8161244e565b9050919050565b600060208201905081810360008301526127eb81612471565b9050919050565b6000602082019050818103600083015261280b81612494565b9050919050565b6000602082019050818103600083015261282b816124b7565b9050919050565b6000602082019050818103600083015261284b816124da565b9050919050565b6000602082019050818103600083015261286b816124fd565b9050919050565b6000602082019050818103600083015261288b81612520565b9050919050565b600060208201905081810360008301526128ab81612543565b9050919050565b600060208201905081810360008301526128cb81612566565b9050919050565b600060208201905081810360008301526128eb81612589565b9050919050565b6000602082019050818103600083015261290b816125ac565b9050919050565b6000602082019050818103600083015261292b816125cf565b9050919050565b6000602082019050818103600083015261294b816125f2565b9050919050565b6000602082019050818103600083015261296b81612615565b9050919050565b6000602082019050818103600083015261298b81612638565b9050919050565b60006020820190506129a7600083018461265b565b92915050565b60006129b76129c8565b90506129c38282612be9565b919050565b6000604051905090565b600067ffffffffffffffff8211156129ed576129ec612d50565b5b6129f682612d9d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a5182612b6b565b9150612a5c83612b6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a9157612a90612c94565b5b828201905092915050565b6000612aa782612b6b565b9150612ab283612b6b565b925082612ac257612ac1612cc3565b5b828204905092915050565b6000612ad882612b6b565b9150612ae383612b6b565b925082821015612af657612af5612c94565b5b828203905092915050565b6000612b0c82612b4b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ba2578082015181840152602081019050612b87565b83811115612bb1576000848401525b50505050565b60006002820490506001821680612bcf57607f821691505b60208210811415612be357612be2612cf2565b5b50919050565b612bf282612d9d565b810181811067ffffffffffffffff82111715612c1157612c10612d50565b5b80604052505050565b6000612c2582612b6b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c5857612c57612c94565b5b600182019050919050565b6000612c6e82612b6b565b9150612c7983612b6b565b925082612c8957612c88612cc3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f766572206d617820706572207472616e73616374696f6e2100000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4672656520737570706c79206973206f76657221000000000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b61328a81612b01565b811461329557600080fd5b50565b6132a181612b13565b81146132ac57600080fd5b50565b6132b881612b1f565b81146132c357600080fd5b50565b6132cf81612b6b565b81146132da57600080fd5b5056fea2646970667358221220d4d1b722e3e0a4acdb565f0c1e35e40c42b6255de7dd78bf613f17e7ad47c7b664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000174149204e6967687462697264732050726f6a6563742058000000000000000000000000000000000000000000000000000000000000000000000000000000000541494e5058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d625547464d5776335939316952774c397966746266366b5a47555070426253736837723176655434614c37622f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): AI Nightbirds Project X
Arg [1] : symbol (string): AINPX
Arg [2] : baseURIinput (string): https://gateway.pinata.cloud/ipfs/QmbUGFMWv3Y91iRwL9yftbf6kZGUPpBbSsh7r1veT4aL7b/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [4] : 4149204e6967687462697264732050726f6a6563742058000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 41494e5058000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d625547464d5776335939316952774c397966746266366b5a47555070
Arg [10] : 426253736837723176655434614c37622f000000000000000000000000000000


Deployed Bytecode Sourcemap

42653:1320:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30463:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31408:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32967:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32490:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43268:102;;;:::i;:::-;;42849:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33857:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42773:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43827:143;;;:::i;:::-;;34267:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42734:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43162:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31102:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42880:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30832:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11727:94;;;:::i;:::-;;43378:443;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11076:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31577:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33260:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34523:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42808:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31752:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33626:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11976:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30463:305;30565:4;30617:25;30602:40;;;:11;:40;;;;:105;;;;30674:33;30659:48;;;:11;:48;;;;30602:105;:158;;;;30724:36;30748:11;30724:23;:36::i;:::-;30602:158;30582:178;;30463:305;;;:::o;31408:100::-;31462:13;31495:5;31488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31408:100;:::o;32967:221::-;33043:7;33071:16;33079:7;33071;:16::i;:::-;33063:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33156:15;:24;33172:7;33156:24;;;;;;;;;;;;;;;;;;;;;33149:31;;32967:221;;;:::o;32490:411::-;32571:13;32587:23;32602:7;32587:14;:23::i;:::-;32571:39;;32635:5;32629:11;;:2;:11;;;;32621:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32729:5;32713:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32738:37;32755:5;32762:12;:10;:12::i;:::-;32738:16;:37::i;:::-;32713:62;32691:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32872:21;32881:2;32885:7;32872:8;:21::i;:::-;32560:341;32490:411;;:::o;43268:102::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43348:16:::1;;;;;;;;;;;43347:17;43328:16;;:36;;;;;;;;;;;;;;;;;;43268:102::o:0;42849:26::-;;;;:::o;33857:339::-;34052:41;34071:12;:10;:12::i;:::-;34085:7;34052:18;:41::i;:::-;34044:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34160:28;34170:4;34176:2;34180:7;34160:9;:28::i;:::-;33857:339;;;:::o;42773:30::-;;;;:::o;43827:143::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43875:15:::1;43893:21;43875:39;;43933:10;43925:28;;:37;43954:7;43925:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43864:106;43827:143::o:0;34267:185::-;34405:39;34422:4;34428:2;34432:7;34405:39;;;;;;;;;;;;:16;:39::i;:::-;34267:185;;;:::o;42734:34::-;;;;:::o;43162:100::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43246:10:::1;;43236:7;:20;;;;;;;:::i;:::-;;43162:100:::0;;:::o;31102:239::-;31174:7;31194:13;31210:7;:16;31218:7;31210:16;;;;;;;;;;;;;;;;;;;;;31194:32;;31262:1;31245:19;;:5;:19;;;;31237:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31328:5;31321:12;;;31102:239;;;:::o;42880:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30832:208::-;30904:7;30949:1;30932:19;;:5;:19;;;;30924:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31016:9;:16;31026:5;31016:16;;;;;;;;;;;;;;;;31009:23;;30832:208;;;:::o;11727:94::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11792:21:::1;11810:1;11792:9;:21::i;:::-;11727:94::o:0;43378:443::-;43457:10;;43442:11;;:25;;43434:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43527:4;43507:24;;:16;;;;;;;;;;;:24;;;43499:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;43584:17;;43566:14;:35;;43558:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43640:13;43656:11;;43640:27;;43683:6;43678:112;43699:14;43695:1;:18;43678:112;;;43738:1;43731:8;;;;;:::i;:::-;;;43750:28;43760:10;43772:5;43750:9;:28::i;:::-;43715:3;;;;;:::i;:::-;;;;43678:112;;;;43810:5;43796:11;:19;;;;43427:394;43378:443;:::o;11076:87::-;11122:7;11149:6;;;;;;;;;;;11142:13;;11076:87;:::o;31577:104::-;31633:13;31666:7;31659:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31577:104;:::o;33260:295::-;33375:12;:10;:12::i;:::-;33363:24;;:8;:24;;;;33355:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33475:8;33430:18;:32;33449:12;:10;:12::i;:::-;33430:32;;;;;;;;;;;;;;;:42;33463:8;33430:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33528:8;33499:48;;33514:12;:10;:12::i;:::-;33499:48;;;33538:8;33499:48;;;;;;:::i;:::-;;;;;;;;33260:295;;:::o;34523:328::-;34698:41;34717:12;:10;:12::i;:::-;34731:7;34698:18;:41::i;:::-;34690:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34804:39;34818:4;34824:2;34828:7;34837:5;34804:13;:39::i;:::-;34523:328;;;;:::o;42808:36::-;;;;;;;;;;;;;:::o;31752:334::-;31825:13;31859:16;31867:7;31859;:16::i;:::-;31851:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31940:21;31964:10;:8;:10::i;:::-;31940:34;;32016:1;31998:7;31992:21;:25;:86;;;;;;;;;;;;;;;;;32044:7;32053:18;:7;:16;:18::i;:::-;32027:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31992:86;31985:93;;;31752:334;;;:::o;33626:164::-;33723:4;33747:18;:25;33766:5;33747:25;;;;;;;;;;;;;;;:35;33773:8;33747:35;;;;;;;;;;;;;;;;;;;;;;;;;33740:42;;33626:164;;;;:::o;11976:192::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12085:1:::1;12065:22;;:8;:22;;;;12057:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12141:19;12151:8;12141:9;:19::i;:::-;11976:192:::0;:::o;23274:157::-;23359:4;23398:25;23383:40;;;:11;:40;;;;23376:47;;23274:157;;;:::o;36361:127::-;36426:4;36478:1;36450:30;;:7;:16;36458:7;36450:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36443:37;;36361:127;;;:::o;9811:98::-;9864:7;9891:10;9884:17;;9811:98;:::o;40343:174::-;40445:2;40418:15;:24;40434:7;40418:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40501:7;40497:2;40463:46;;40472:23;40487:7;40472:14;:23::i;:::-;40463:46;;;;;;;;;;;;40343:174;;:::o;36655:348::-;36748:4;36773:16;36781:7;36773;:16::i;:::-;36765:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36849:13;36865:23;36880:7;36865:14;:23::i;:::-;36849:39;;36918:5;36907:16;;:7;:16;;;:51;;;;36951:7;36927:31;;:20;36939:7;36927:11;:20::i;:::-;:31;;;36907:51;:87;;;;36962:32;36979:5;36986:7;36962:16;:32::i;:::-;36907:87;36899:96;;;36655:348;;;;:::o;39647:578::-;39806:4;39779:31;;:23;39794:7;39779:14;:23::i;:::-;:31;;;39771:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39889:1;39875:16;;:2;:16;;;;39867:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39945:39;39966:4;39972:2;39976:7;39945:20;:39::i;:::-;40049:29;40066:1;40070:7;40049:8;:29::i;:::-;40110:1;40091:9;:15;40101:4;40091:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40139:1;40122:9;:13;40132:2;40122:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40170:2;40151:7;:16;40159:7;40151:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40209:7;40205:2;40190:27;;40199:4;40190:27;;;;;;;;;;;;39647:578;;;:::o;12176:173::-;12232:16;12251:6;;;;;;;;;;;12232:25;;12277:8;12268:6;;:17;;;;;;;;;;;;;;;;;;12332:8;12301:40;;12322:8;12301:40;;;;;;;;;;;;12221:128;12176:173;:::o;37345:110::-;37421:26;37431:2;37435:7;37421:26;;;;;;;;;;;;:9;:26::i;:::-;37345:110;;:::o;35733:315::-;35890:28;35900:4;35906:2;35910:7;35890:9;:28::i;:::-;35937:48;35960:4;35966:2;35970:7;35979:5;35937:22;:48::i;:::-;35929:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35733:315;;;;:::o;43062:94::-;43114:13;43143:7;43136:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43062:94;:::o;7374:723::-;7430:13;7660:1;7651:5;:10;7647:53;;;7678:10;;;;;;;;;;;;;;;;;;;;;7647:53;7710:12;7725:5;7710:20;;7741:14;7766:78;7781:1;7773:4;:9;7766:78;;7799:8;;;;;:::i;:::-;;;;7830:2;7822:10;;;;;:::i;:::-;;;7766:78;;;7854:19;7886:6;7876:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7854:39;;7904:154;7920:1;7911:5;:10;7904:154;;7948:1;7938:11;;;;;:::i;:::-;;;8015:2;8007:5;:10;;;;:::i;:::-;7994:2;:24;;;;:::i;:::-;7981:39;;7964:6;7971;7964:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8044:2;8035:11;;;;;:::i;:::-;;;7904:154;;;8082:6;8068:21;;;;;7374:723;;;;:::o;42453:126::-;;;;:::o;37682:321::-;37812:18;37818:2;37822:7;37812:5;:18::i;:::-;37863:54;37894:1;37898:2;37902:7;37911:5;37863:22;:54::i;:::-;37841:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37682:321;;;:::o;41082:799::-;41237:4;41258:15;:2;:13;;;:15::i;:::-;41254:620;;;41310:2;41294:36;;;41331:12;:10;:12::i;:::-;41345:4;41351:7;41360:5;41294:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41290:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41553:1;41536:6;:13;:18;41532:272;;;41579:60;;;;;;;;;;:::i;:::-;;;;;;;;41532:272;41754:6;41748:13;41739:6;41735:2;41731:15;41724:38;41290:529;41427:41;;;41417:51;;;:6;:51;;;;41410:58;;;;;41254:620;41858:4;41851:11;;41082:799;;;;;;;:::o;38339:382::-;38433:1;38419:16;;:2;:16;;;;38411:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38492:16;38500:7;38492;:16::i;:::-;38491:17;38483:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38554:45;38583:1;38587:2;38591:7;38554:20;:45::i;:::-;38629:1;38612:9;:13;38622:2;38612:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38660:2;38641:7;:16;38649:7;38641:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38705:7;38701:2;38680:33;;38697:1;38680:33;;;;;;;;;;;;38339:382;;:::o;13175:387::-;13235:4;13443:12;13510:7;13498:20;13490:28;;13553:1;13546:4;:8;13539:15;;;13175:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;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:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:::-;12937:3;12958:67;13022:2;13017:3;12958:67;:::i;:::-;12951:74;;13034:93;13123:3;13034:93;:::i;:::-;13152:2;13147:3;13143:12;13136:19;;12795:366;;;:::o;13167:::-;13309:3;13330:67;13394:2;13389:3;13330:67;:::i;:::-;13323:74;;13406:93;13495:3;13406:93;:::i;:::-;13524:2;13519:3;13515:12;13508:19;;13167:366;;;:::o;13539:::-;13681:3;13702:67;13766:2;13761:3;13702:67;:::i;:::-;13695:74;;13778:93;13867:3;13778:93;:::i;:::-;13896:2;13891:3;13887:12;13880:19;;13539:366;;;:::o;13911:::-;14053:3;14074:67;14138:2;14133:3;14074:67;:::i;:::-;14067:74;;14150:93;14239:3;14150:93;:::i;:::-;14268:2;14263:3;14259:12;14252:19;;13911:366;;;:::o;14283:::-;14425:3;14446:67;14510:2;14505:3;14446:67;:::i;:::-;14439:74;;14522:93;14611:3;14522:93;:::i;:::-;14640:2;14635:3;14631:12;14624:19;;14283:366;;;:::o;14655:::-;14797:3;14818:67;14882:2;14877:3;14818:67;:::i;:::-;14811:74;;14894:93;14983:3;14894:93;:::i;:::-;15012:2;15007:3;15003:12;14996:19;;14655:366;;;:::o;15027:::-;15169:3;15190:67;15254:2;15249:3;15190:67;:::i;:::-;15183:74;;15266:93;15355:3;15266:93;:::i;:::-;15384:2;15379:3;15375:12;15368:19;;15027:366;;;:::o;15399:118::-;15486:24;15504:5;15486:24;:::i;:::-;15481:3;15474:37;15399:118;;:::o;15523:435::-;15703:3;15725:95;15816:3;15807:6;15725:95;:::i;:::-;15718:102;;15837:95;15928:3;15919:6;15837:95;:::i;:::-;15830:102;;15949:3;15942:10;;15523:435;;;;;:::o;15964:222::-;16057:4;16095:2;16084:9;16080:18;16072:26;;16108:71;16176:1;16165:9;16161:17;16152:6;16108:71;:::i;:::-;15964:222;;;;:::o;16192:640::-;16387:4;16425:3;16414:9;16410:19;16402:27;;16439:71;16507:1;16496:9;16492:17;16483:6;16439:71;:::i;:::-;16520:72;16588:2;16577:9;16573:18;16564:6;16520:72;:::i;:::-;16602;16670:2;16659:9;16655:18;16646:6;16602:72;:::i;:::-;16721:9;16715:4;16711:20;16706:2;16695:9;16691:18;16684:48;16749:76;16820:4;16811:6;16749:76;:::i;:::-;16741:84;;16192:640;;;;;;;:::o;16838:210::-;16925:4;16963:2;16952:9;16948:18;16940:26;;16976:65;17038:1;17027:9;17023:17;17014:6;16976:65;:::i;:::-;16838:210;;;;:::o;17054:313::-;17167:4;17205:2;17194:9;17190:18;17182:26;;17254:9;17248:4;17244:20;17240:1;17229:9;17225:17;17218:47;17282:78;17355:4;17346:6;17282:78;:::i;:::-;17274:86;;17054:313;;;;:::o;17373:419::-;17539:4;17577:2;17566:9;17562:18;17554:26;;17626:9;17620:4;17616:20;17612:1;17601:9;17597:17;17590:47;17654:131;17780:4;17654:131;:::i;:::-;17646:139;;17373:419;;;:::o;17798:::-;17964:4;18002:2;17991:9;17987:18;17979:26;;18051:9;18045:4;18041:20;18037:1;18026:9;18022:17;18015:47;18079:131;18205:4;18079:131;:::i;:::-;18071:139;;17798:419;;;:::o;18223:::-;18389:4;18427:2;18416:9;18412:18;18404:26;;18476:9;18470:4;18466:20;18462:1;18451:9;18447:17;18440:47;18504:131;18630:4;18504:131;:::i;:::-;18496:139;;18223:419;;;:::o;18648:::-;18814:4;18852:2;18841:9;18837:18;18829:26;;18901:9;18895:4;18891:20;18887:1;18876:9;18872:17;18865:47;18929:131;19055:4;18929:131;:::i;:::-;18921:139;;18648:419;;;:::o;19073:::-;19239:4;19277:2;19266:9;19262:18;19254:26;;19326:9;19320:4;19316:20;19312:1;19301:9;19297:17;19290:47;19354:131;19480:4;19354:131;:::i;:::-;19346:139;;19073:419;;;:::o;19498:::-;19664:4;19702:2;19691:9;19687:18;19679:26;;19751:9;19745:4;19741:20;19737:1;19726:9;19722:17;19715:47;19779:131;19905:4;19779:131;:::i;:::-;19771:139;;19498:419;;;:::o;19923:::-;20089:4;20127:2;20116:9;20112:18;20104:26;;20176:9;20170:4;20166:20;20162:1;20151:9;20147:17;20140:47;20204:131;20330:4;20204:131;:::i;:::-;20196:139;;19923:419;;;:::o;20348:::-;20514:4;20552:2;20541:9;20537:18;20529:26;;20601:9;20595:4;20591:20;20587:1;20576:9;20572:17;20565:47;20629:131;20755:4;20629:131;:::i;:::-;20621:139;;20348:419;;;:::o;20773:::-;20939:4;20977:2;20966:9;20962:18;20954:26;;21026:9;21020:4;21016:20;21012:1;21001:9;20997:17;20990:47;21054:131;21180:4;21054:131;:::i;:::-;21046:139;;20773:419;;;:::o;21198:::-;21364:4;21402:2;21391:9;21387:18;21379:26;;21451:9;21445:4;21441:20;21437:1;21426:9;21422:17;21415:47;21479:131;21605:4;21479:131;:::i;:::-;21471:139;;21198:419;;;:::o;21623:::-;21789:4;21827:2;21816:9;21812:18;21804:26;;21876:9;21870:4;21866:20;21862:1;21851:9;21847:17;21840:47;21904:131;22030:4;21904:131;:::i;:::-;21896:139;;21623:419;;;:::o;22048:::-;22214:4;22252:2;22241:9;22237:18;22229:26;;22301:9;22295:4;22291:20;22287:1;22276:9;22272:17;22265:47;22329:131;22455:4;22329:131;:::i;:::-;22321:139;;22048:419;;;:::o;22473:::-;22639:4;22677:2;22666:9;22662:18;22654:26;;22726:9;22720:4;22716:20;22712:1;22701:9;22697:17;22690:47;22754:131;22880:4;22754:131;:::i;:::-;22746:139;;22473:419;;;:::o;22898:::-;23064:4;23102:2;23091:9;23087:18;23079:26;;23151:9;23145:4;23141:20;23137:1;23126:9;23122:17;23115:47;23179:131;23305:4;23179:131;:::i;:::-;23171:139;;22898:419;;;:::o;23323:::-;23489:4;23527:2;23516:9;23512:18;23504:26;;23576:9;23570:4;23566:20;23562:1;23551:9;23547:17;23540:47;23604:131;23730:4;23604:131;:::i;:::-;23596:139;;23323:419;;;:::o;23748:::-;23914:4;23952:2;23941:9;23937:18;23929:26;;24001:9;23995:4;23991:20;23987:1;23976:9;23972:17;23965:47;24029:131;24155:4;24029:131;:::i;:::-;24021:139;;23748:419;;;:::o;24173:::-;24339:4;24377:2;24366:9;24362:18;24354:26;;24426:9;24420:4;24416:20;24412:1;24401:9;24397:17;24390:47;24454:131;24580:4;24454:131;:::i;:::-;24446:139;;24173:419;;;:::o;24598:::-;24764:4;24802:2;24791:9;24787:18;24779:26;;24851:9;24845:4;24841:20;24837:1;24826:9;24822:17;24815:47;24879:131;25005:4;24879:131;:::i;:::-;24871:139;;24598:419;;;:::o;25023:::-;25189:4;25227:2;25216:9;25212:18;25204:26;;25276:9;25270:4;25266:20;25262:1;25251:9;25247:17;25240:47;25304:131;25430:4;25304:131;:::i;:::-;25296:139;;25023:419;;;:::o;25448:222::-;25541:4;25579:2;25568:9;25564:18;25556:26;;25592:71;25660:1;25649:9;25645:17;25636:6;25592:71;:::i;:::-;25448:222;;;;:::o;25676:129::-;25710:6;25737:20;;:::i;:::-;25727:30;;25766:33;25794:4;25786:6;25766:33;:::i;:::-;25676:129;;;:::o;25811:75::-;25844:6;25877:2;25871:9;25861:19;;25811:75;:::o;25892:307::-;25953:4;26043:18;26035:6;26032:30;26029:56;;;26065:18;;:::i;:::-;26029:56;26103:29;26125:6;26103:29;:::i;:::-;26095:37;;26187:4;26181;26177:15;26169:23;;25892:307;;;:::o;26205:98::-;26256:6;26290:5;26284:12;26274:22;;26205:98;;;:::o;26309:99::-;26361:6;26395:5;26389:12;26379:22;;26309:99;;;:::o;26414:168::-;26497:11;26531:6;26526:3;26519:19;26571:4;26566:3;26562:14;26547:29;;26414:168;;;;:::o;26588:169::-;26672:11;26706:6;26701:3;26694:19;26746:4;26741:3;26737:14;26722:29;;26588:169;;;;:::o;26763:148::-;26865:11;26902:3;26887:18;;26763:148;;;;:::o;26917:305::-;26957:3;26976:20;26994:1;26976:20;:::i;:::-;26971:25;;27010:20;27028:1;27010:20;:::i;:::-;27005:25;;27164:1;27096:66;27092:74;27089:1;27086:81;27083:107;;;27170:18;;:::i;:::-;27083:107;27214:1;27211;27207:9;27200:16;;26917:305;;;;:::o;27228:185::-;27268:1;27285:20;27303:1;27285:20;:::i;:::-;27280:25;;27319:20;27337:1;27319:20;:::i;:::-;27314:25;;27358:1;27348:35;;27363:18;;:::i;:::-;27348:35;27405:1;27402;27398:9;27393:14;;27228:185;;;;:::o;27419:191::-;27459:4;27479:20;27497:1;27479:20;:::i;:::-;27474:25;;27513:20;27531:1;27513:20;:::i;:::-;27508:25;;27552:1;27549;27546:8;27543:34;;;27557:18;;:::i;:::-;27543:34;27602:1;27599;27595:9;27587:17;;27419:191;;;;:::o;27616:96::-;27653:7;27682:24;27700:5;27682:24;:::i;:::-;27671:35;;27616:96;;;:::o;27718:90::-;27752:7;27795:5;27788:13;27781:21;27770:32;;27718:90;;;:::o;27814:149::-;27850:7;27890:66;27883:5;27879:78;27868:89;;27814:149;;;:::o;27969:126::-;28006:7;28046:42;28039:5;28035:54;28024:65;;27969:126;;;:::o;28101:77::-;28138:7;28167:5;28156:16;;28101:77;;;:::o;28184:154::-;28268:6;28263:3;28258;28245:30;28330:1;28321:6;28316:3;28312:16;28305:27;28184:154;;;:::o;28344:307::-;28412:1;28422:113;28436:6;28433:1;28430:13;28422:113;;;28521:1;28516:3;28512:11;28506:18;28502:1;28497:3;28493:11;28486:39;28458:2;28455:1;28451:10;28446:15;;28422:113;;;28553:6;28550:1;28547:13;28544:101;;;28633:1;28624:6;28619:3;28615:16;28608:27;28544:101;28393:258;28344:307;;;:::o;28657:320::-;28701:6;28738:1;28732:4;28728:12;28718:22;;28785:1;28779:4;28775:12;28806:18;28796:81;;28862:4;28854:6;28850:17;28840:27;;28796:81;28924:2;28916:6;28913:14;28893:18;28890:38;28887:84;;;28943:18;;:::i;:::-;28887:84;28708:269;28657:320;;;:::o;28983:281::-;29066:27;29088:4;29066:27;:::i;:::-;29058:6;29054:40;29196:6;29184:10;29181:22;29160:18;29148:10;29145:34;29142:62;29139:88;;;29207:18;;:::i;:::-;29139:88;29247:10;29243:2;29236:22;29026:238;28983:281;;:::o;29270:233::-;29309:3;29332:24;29350:5;29332:24;:::i;:::-;29323:33;;29378:66;29371:5;29368:77;29365:103;;;29448:18;;:::i;:::-;29365:103;29495:1;29488:5;29484:13;29477:20;;29270:233;;;:::o;29509:176::-;29541:1;29558:20;29576:1;29558:20;:::i;:::-;29553:25;;29592:20;29610:1;29592:20;:::i;:::-;29587:25;;29631:1;29621:35;;29636:18;;:::i;:::-;29621:35;29677:1;29674;29670:9;29665:14;;29509:176;;;;:::o;29691:180::-;29739:77;29736:1;29729:88;29836:4;29833:1;29826:15;29860:4;29857:1;29850:15;29877:180;29925:77;29922:1;29915:88;30022:4;30019:1;30012:15;30046:4;30043:1;30036:15;30063:180;30111:77;30108:1;30101:88;30208:4;30205:1;30198:15;30232:4;30229:1;30222:15;30249:180;30297:77;30294:1;30287:88;30394:4;30391:1;30384:15;30418:4;30415:1;30408:15;30435:180;30483:77;30480:1;30473:88;30580:4;30577:1;30570:15;30604:4;30601:1;30594:15;30621:117;30730:1;30727;30720:12;30744:117;30853:1;30850;30843:12;30867:117;30976:1;30973;30966:12;30990:117;31099:1;31096;31089:12;31113:117;31222:1;31219;31212:12;31236:117;31345:1;31342;31335:12;31359:102;31400:6;31451:2;31447:7;31442:2;31435:5;31431:14;31427:28;31417:38;;31359:102;;;:::o;31467:237::-;31607:34;31603:1;31595:6;31591:14;31584:58;31676:20;31671:2;31663:6;31659:15;31652:45;31467:237;:::o;31710:225::-;31850:34;31846:1;31838:6;31834:14;31827:58;31919:8;31914:2;31906:6;31902:15;31895:33;31710:225;:::o;31941:178::-;32081:30;32077:1;32069:6;32065:14;32058:54;31941:178;:::o;32125:223::-;32265:34;32261:1;32253:6;32249:14;32242:58;32334:6;32329:2;32321:6;32317:15;32310:31;32125:223;:::o;32354:175::-;32494:27;32490:1;32482:6;32478:14;32471:51;32354:175;:::o;32535:231::-;32675:34;32671:1;32663:6;32659:14;32652:58;32744:14;32739:2;32731:6;32727:15;32720:39;32535:231;:::o;32772:243::-;32912:34;32908:1;32900:6;32896:14;32889:58;32981:26;32976:2;32968:6;32964:15;32957:51;32772:243;:::o;33021:229::-;33161:34;33157:1;33149:6;33145:14;33138:58;33230:12;33225:2;33217:6;33213:15;33206:37;33021:229;:::o;33256:228::-;33396:34;33392:1;33384:6;33380:14;33373:58;33465:11;33460:2;33452:6;33448:15;33441:36;33256:228;:::o;33490:175::-;33630:27;33626:1;33618:6;33614:14;33607:51;33490:175;:::o;33671:182::-;33811:34;33807:1;33799:6;33795:14;33788:58;33671:182;:::o;33859:231::-;33999:34;33995:1;33987:6;33983:14;33976:58;34068:14;34063:2;34055:6;34051:15;34044:39;33859:231;:::o;34096:182::-;34236:34;34232:1;34224:6;34220:14;34213:58;34096:182;:::o;34284:228::-;34424:34;34420:1;34412:6;34408:14;34401:58;34493:11;34488:2;34480:6;34476:15;34469:36;34284:228;:::o;34518:234::-;34658:34;34654:1;34646:6;34642:14;34635:58;34727:17;34722:2;34714:6;34710:15;34703:42;34518:234;:::o;34758:220::-;34898:34;34894:1;34886:6;34882:14;34875:58;34967:3;34962:2;34954:6;34950:15;34943:28;34758:220;:::o;34984:236::-;35124:34;35120:1;35112:6;35108:14;35101:58;35193:19;35188:2;35180:6;35176:15;35169:44;34984:236;:::o;35226:170::-;35366:22;35362:1;35354:6;35350:14;35343:46;35226:170;:::o;35402:165::-;35542:17;35538:1;35530:6;35526:14;35519:41;35402:165;:::o;35573:122::-;35646:24;35664:5;35646:24;:::i;:::-;35639:5;35636:35;35626:63;;35685:1;35682;35675:12;35626:63;35573:122;:::o;35701:116::-;35771:21;35786:5;35771:21;:::i;:::-;35764:5;35761:32;35751:60;;35807:1;35804;35797:12;35751:60;35701:116;:::o;35823:120::-;35895:23;35912:5;35895:23;:::i;:::-;35888:5;35885:34;35875:62;;35933:1;35930;35923:12;35875:62;35823:120;:::o;35949:122::-;36022:24;36040:5;36022:24;:::i;:::-;36015:5;36012:35;36002:63;;36061:1;36058;36051:12;36002:63;35949:122;:::o

Swarm Source

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