ETH Price: $3,300.64 (-3.88%)
Gas: 23 Gwei

Token

Ningen (Ningen)
 

Overview

Max Total Supply

300 Ningen

Holders

182

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Ningen

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

// File: Ningen.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ReentrancyGuard {
  
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

// File: contracts/Ningen.sol

pragma solidity >=0.8.9 <0.9.0;

contract Ningen is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    string baseURI;
    string public baseExtension = ".json";
    uint256 public price = 0.003 ether;
    uint256 public maxPerTx = 2;
    uint256 public totalFree = 100;
    uint256 public maxSupply = 300;
    uint256 public maxPerWallet = 15;
    bool public paused = true;
    
    constructor( string memory _initBaseURI) ERC721A("Ningen", "Ningen") { 
        setBaseURI(_initBaseURI);
        _safeMint(msg.sender, 1);
    }

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

    function mint(uint256 _mintAmount) external payable {
        uint256 cost = price;
        if (totalSupply() + _mintAmount < totalFree + 1) {
            cost = 0;
        }
        require(msg.value >= _mintAmount * cost, "Not enough ETH.");
        require(totalSupply() + _mintAmount < maxSupply + 1, "Exceeds supply.");
        require(!paused, "Minting is not live yet.");
        require(_mintAmount < maxPerTx + 1, "Max per TX reached.");
        require(_numberMinted(msg.sender) + _mintAmount <= maxPerWallet,"Too many per wallet!");
        _safeMint(msg.sender, _mintAmount);
    }

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;
    }
    
    function setMaxPerTx(uint256 _maxPerTx) public onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function ownerAirdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }

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

    function setPaused() public onlyOwner {
        paused = !paused;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }      
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200092b565b50660aa87bee538000600c556002600d556064600e5561012c600f55600f6010556001601160006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b5060405162004acf38038062004acf8339818101604052810190620000c0919062000b78565b6040518060400160405280600681526020017f4e696e67656e00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e696e67656e00000000000000000000000000000000000000000000000000008152508160029080519060200190620001449291906200092b565b5080600390805190602001906200015d9291906200092b565b506200016e620001c960201b60201c565b6000819055505050620001966200018a620001d260201b60201c565b620001da60201b60201c565b6001600981905550620001af81620002a060201b60201c565b620001c23360016200034b60201b60201c565b5062000e51565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b0620001d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d66200037160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200032f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003269062000c2a565b60405180910390fd5b80600a9080519060200190620003479291906200092b565b5050565b6200036d8282604051806020016040528060008152506200039b60201b60201c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000409576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000445576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200045a60008583866200078a60201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620006288673ffffffffffffffffffffffffffffffffffffffff166200079060201b62001a581760201c565b15620006fa575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006a66000878480600101955087620007b360201b60201c565b620006dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106200062f578260005414620006f457600080fd5b62000766565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620006fb575b8160008190555050506200078460008583866200092560201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007e1620001d260201b60201c565b8786866040518563ffffffff1660e01b815260040162000805949392919062000d09565b602060405180830381600087803b1580156200082057600080fd5b505af19250505080156200085457506040513d601f19601f8201168201806040525081019062000851919062000dba565b60015b620008d2573d806000811462000887576040519150601f19603f3d011682016040523d82523d6000602084013e6200088c565b606091505b50600081511415620008ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009399062000e1b565b90600052602060002090601f0160209004810192826200095d5760008555620009a9565b82601f106200097857805160ff1916838001178555620009a9565b82800160010185558215620009a9579182015b82811115620009a85782518255916020019190600101906200098b565b5b509050620009b89190620009bc565b5090565b5b80821115620009d7576000816000905550600101620009bd565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000a4482620009f9565b810181811067ffffffffffffffff8211171562000a665762000a6562000a0a565b5b80604052505050565b600062000a7b620009db565b905062000a89828262000a39565b919050565b600067ffffffffffffffff82111562000aac5762000aab62000a0a565b5b62000ab782620009f9565b9050602081019050919050565b60005b8381101562000ae457808201518184015260208101905062000ac7565b8381111562000af4576000848401525b50505050565b600062000b1162000b0b8462000a8e565b62000a6f565b90508281526020810184848401111562000b305762000b2f620009f4565b5b62000b3d84828562000ac4565b509392505050565b600082601f83011262000b5d5762000b5c620009ef565b5b815162000b6f84826020860162000afa565b91505092915050565b60006020828403121562000b915762000b90620009e5565b5b600082015167ffffffffffffffff81111562000bb25762000bb1620009ea565b5b62000bc08482850162000b45565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c1260208362000bc9565b915062000c1f8262000bda565b602082019050919050565b6000602082019050818103600083015262000c458162000c03565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c798262000c4c565b9050919050565b62000c8b8162000c6c565b82525050565b6000819050919050565b62000ca68162000c91565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000cd58262000cac565b62000ce1818562000cb7565b935062000cf381856020860162000ac4565b62000cfe81620009f9565b840191505092915050565b600060808201905062000d20600083018762000c80565b62000d2f602083018662000c80565b62000d3e604083018562000c9b565b818103606083015262000d52818462000cc8565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d948162000d5d565b811462000da057600080fd5b50565b60008151905062000db48162000d89565b92915050565b60006020828403121562000dd35762000dd2620009e5565b5b600062000de38482850162000da3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e3457607f821691505b6020821081141562000e4b5762000e4a62000dec565b5b50919050565b613c6e8062000e616000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063c6682862116100a0578063da3ef23f1161006f578063da3ef23f1461070c578063e268e4d314610735578063e985e9c51461075e578063f2fde38b1461079b578063f968adbe146107c457610204565b8063c668286214610650578063c6f6f2161461067b578063c87b56dd146106a4578063d5abeb01146106e157610204565b806395d89b41116100e757806395d89b411461058c578063a035b1fe146105b7578063a0712d68146105e2578063a22cb465146105fe578063b88d4fde1461062757610204565b8063715018a6146104f85780638da5cb5b1461050f57806391b7f5ed1461053a57806392910eec1461056357610204565b806337a66d851161019b57806355f804b31161016a57806355f804b3146104015780635c975abb1461042a5780636352211e146104555780636f8b44b01461049257806370a08231146104bb57610204565b806337a66d851461037f5780633ccfd60b1461039657806342842e0e146103ad578063453c2310146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632cfee9901461032b578063333e44e61461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612cf8565b6107ef565b60405161023d9190612d40565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612df4565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612e4c565b610963565b6040516102a59190612eba565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f01565b6109df565b005b3480156102e357600080fd5b506102ec610ae4565b6040516102f99190612f50565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612f6b565b610afb565b005b34801561033757600080fd5b50610352600480360381019061034d9190612fbe565b610b0b565b005b34801561036057600080fd5b50610369610b95565b6040516103769190612f50565b60405180910390f35b34801561038b57600080fd5b50610394610b9b565b005b3480156103a257600080fd5b506103ab610c43565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612f6b565b610d7b565b005b3480156103e257600080fd5b506103eb610d9b565b6040516103f89190612f50565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190613133565b610da1565b005b34801561043657600080fd5b5061043f610e37565b60405161044c9190612d40565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612e4c565b610e4a565b6040516104899190612eba565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612e4c565b610e60565b005b3480156104c757600080fd5b506104e260048036038101906104dd919061317c565b610ee6565b6040516104ef9190612f50565b60405180910390f35b34801561050457600080fd5b5061050d610fb6565b005b34801561051b57600080fd5b5061052461103e565b6040516105319190612eba565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190612e4c565b611068565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612e4c565b6110ee565b005b34801561059857600080fd5b506105a1611174565b6040516105ae9190612df4565b60405180910390f35b3480156105c357600080fd5b506105cc611206565b6040516105d99190612f50565b60405180910390f35b6105fc60048036038101906105f79190612e4c565b61120c565b005b34801561060a57600080fd5b50610625600480360381019061062091906131d5565b6113f6565b005b34801561063357600080fd5b5061064e600480360381019061064991906132b6565b61156e565b005b34801561065c57600080fd5b506106656115e6565b6040516106729190612df4565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612e4c565b611674565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612e4c565b6116fa565b6040516106d89190612df4565b60405180910390f35b3480156106ed57600080fd5b506106f66117a4565b6040516107039190612f50565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613133565b6117aa565b005b34801561074157600080fd5b5061075c60048036038101906107579190612e4c565b611840565b005b34801561076a57600080fd5b5061078560048036038101906107809190613339565b6118c6565b6040516107929190612d40565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061317c565b61195a565b005b3480156107d057600080fd5b506107d9611a52565b6040516107e69190612f50565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611a7b565b5b9050919050565b6060600280546108e0906133a8565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906133a8565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611ae5565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610e4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a52576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a71611b33565b73ffffffffffffffffffffffffffffffffffffffff1614610ad457610a9d81610a98611b33565b6118c6565b610ad3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610adf838383611b3b565b505050565b6000610aee611bed565b6001546000540303905090565b610b06838383611bf6565b505050565b610b13611b33565b73ffffffffffffffffffffffffffffffffffffffff16610b3161103e565b73ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90613426565b60405180910390fd5b610b9181836120ac565b5050565b600e5481565b610ba3611b33565b73ffffffffffffffffffffffffffffffffffffffff16610bc161103e565b73ffffffffffffffffffffffffffffffffffffffff1614610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613426565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b610c4b611b33565b73ffffffffffffffffffffffffffffffffffffffff16610c6961103e565b73ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613426565b60405180910390fd5b60004790506000610cce611b33565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cf190613477565b60006040518083038185875af1925050503d8060008114610d2e576040519150601f19603f3d011682016040523d82523d6000602084013e610d33565b606091505b5050905080610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e906134d8565b60405180910390fd5b5050565b610d968383836040518060200160405280600081525061156e565b505050565b60105481565b610da9611b33565b73ffffffffffffffffffffffffffffffffffffffff16610dc761103e565b73ffffffffffffffffffffffffffffffffffffffff1614610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490613426565b60405180910390fd5b80600a9080519060200190610e33929190612ba6565b5050565b601160009054906101000a900460ff1681565b6000610e55826120ca565b600001519050919050565b610e68611b33565b73ffffffffffffffffffffffffffffffffffffffff16610e8661103e565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390613426565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fbe611b33565b73ffffffffffffffffffffffffffffffffffffffff16610fdc61103e565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613426565b60405180910390fd5b61103c6000612355565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611070611b33565b73ffffffffffffffffffffffffffffffffffffffff1661108e61103e565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90613426565b60405180910390fd5b80600c8190555050565b6110f6611b33565b73ffffffffffffffffffffffffffffffffffffffff1661111461103e565b73ffffffffffffffffffffffffffffffffffffffff161461116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190613426565b60405180910390fd5b80600e8190555050565b606060038054611183906133a8565b80601f01602080910402602001604051908101604052809291908181526020018280546111af906133a8565b80156111fc5780601f106111d1576101008083540402835291602001916111fc565b820191906000526020600020905b8154815290600101906020018083116111df57829003601f168201915b5050505050905090565b600c5481565b6000600c5490506001600e546112229190613527565b8261122b610ae4565b6112359190613527565b101561124057600090505b808261124c919061357d565b34101561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590613623565b60405180910390fd5b6001600f5461129d9190613527565b826112a6610ae4565b6112b09190613527565b106112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e79061368f565b60405180910390fd5b601160009054906101000a900460ff1615611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906136fb565b60405180910390fd5b6001600d5461134f9190613527565b8210611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613767565b60405180910390fd5b6010548261139d3361241b565b6113a79190613527565b11156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df906137d3565b60405180910390fd5b6113f233836120ac565b5050565b6113fe611b33565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611463576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611470611b33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151d611b33565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115629190612d40565b60405180910390a35050565b611579848484611bf6565b6115988373ffffffffffffffffffffffffffffffffffffffff16611a58565b156115e0576115a984848484612485565b6115df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b80546115f3906133a8565b80601f016020809104026020016040519081016040528092919081815260200182805461161f906133a8565b801561166c5780601f106116415761010080835404028352916020019161166c565b820191906000526020600020905b81548152906001019060200180831161164f57829003601f168201915b505050505081565b61167c611b33565b73ffffffffffffffffffffffffffffffffffffffff1661169a61103e565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613426565b60405180910390fd5b80600d8190555050565b606061170582611ae5565b611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90613865565b60405180910390fd5b600061174e6125e5565b9050600081511161176e576040518060200160405280600081525061179c565b8061177884612677565b600b60405160200161178c93929190613955565b6040516020818303038152906040525b915050919050565b600f5481565b6117b2611b33565b73ffffffffffffffffffffffffffffffffffffffff166117d061103e565b73ffffffffffffffffffffffffffffffffffffffff1614611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d90613426565b60405180910390fd5b80600b908051906020019061183c929190612ba6565b5050565b611848611b33565b73ffffffffffffffffffffffffffffffffffffffff1661186661103e565b73ffffffffffffffffffffffffffffffffffffffff16146118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613426565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611962611b33565b73ffffffffffffffffffffffffffffffffffffffff1661198061103e565b73ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90613426565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d906139f8565b60405180910390fd5b611a4f81612355565b50565b600d5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611af0611bed565b11158015611aff575060005482105b8015611b2c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c01826120ca565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c8d611b33565b73ffffffffffffffffffffffffffffffffffffffff161480611cbc5750611cbb85611cb6611b33565b6118c6565b5b80611d015750611cca611b33565b73ffffffffffffffffffffffffffffffffffffffff16611ce984610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d3a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611da1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dae85858560016127d8565b611dba60008487611b3b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561203a57600054821461203957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a585858560016127de565b5050505050565b6120c68282604051806020016040528060008152506127e4565b5050565b6120d2612c2c565b6000829050806120e0611bed565b1161231e5760005481101561231d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121ff578092505050612350565b5b60011561231a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612315578092505050612350565b612200565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ab611b33565b8786866040518563ffffffff1660e01b81526004016124cd9493929190613a6d565b602060405180830381600087803b1580156124e757600080fd5b505af192505050801561251857506040513d601f19601f820116820180604052508101906125159190613ace565b60015b612592573d8060008114612548576040519150601f19603f3d011682016040523d82523d6000602084013e61254d565b606091505b5060008151141561258a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546125f4906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054612620906133a8565b801561266d5780601f106126425761010080835404028352916020019161266d565b820191906000526020600020905b81548152906001019060200180831161265057829003601f168201915b5050505050905090565b606060008214156126bf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127d3565b600082905060005b600082146126f15780806126da90613afb565b915050600a826126ea9190613b73565b91506126c7565b60008167ffffffffffffffff81111561270d5761270c613008565b5b6040519080825280601f01601f19166020018201604052801561273f5781602001600182028036833780820191505090505b5090505b600085146127cc576001826127589190613ba4565b9150600a856127679190613bd8565b60306127739190613527565b60f81b81838151811061278957612788613c09565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c59190613b73565b9450612743565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612851576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561288c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61289960008583866127d8565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612a5a8673ffffffffffffffffffffffffffffffffffffffff16611a58565b15612b1f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612acf6000878480600101955087612485565b612b05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612a60578260005414612b1a57600080fd5b612b8a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b20575b816000819055505050612ba060008583866127de565b50505050565b828054612bb2906133a8565b90600052602060002090601f016020900481019282612bd45760008555612c1b565b82601f10612bed57805160ff1916838001178555612c1b565b82800160010185558215612c1b579182015b82811115612c1a578251825591602001919060010190612bff565b5b509050612c289190612c6f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c88576000816000905550600101612c70565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cd581612ca0565b8114612ce057600080fd5b50565b600081359050612cf281612ccc565b92915050565b600060208284031215612d0e57612d0d612c96565b5b6000612d1c84828501612ce3565b91505092915050565b60008115159050919050565b612d3a81612d25565b82525050565b6000602082019050612d556000830184612d31565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d95578082015181840152602081019050612d7a565b83811115612da4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612dc682612d5b565b612dd08185612d66565b9350612de0818560208601612d77565b612de981612daa565b840191505092915050565b60006020820190508181036000830152612e0e8184612dbb565b905092915050565b6000819050919050565b612e2981612e16565b8114612e3457600080fd5b50565b600081359050612e4681612e20565b92915050565b600060208284031215612e6257612e61612c96565b5b6000612e7084828501612e37565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ea482612e79565b9050919050565b612eb481612e99565b82525050565b6000602082019050612ecf6000830184612eab565b92915050565b612ede81612e99565b8114612ee957600080fd5b50565b600081359050612efb81612ed5565b92915050565b60008060408385031215612f1857612f17612c96565b5b6000612f2685828601612eec565b9250506020612f3785828601612e37565b9150509250929050565b612f4a81612e16565b82525050565b6000602082019050612f656000830184612f41565b92915050565b600080600060608486031215612f8457612f83612c96565b5b6000612f9286828701612eec565b9350506020612fa386828701612eec565b9250506040612fb486828701612e37565b9150509250925092565b60008060408385031215612fd557612fd4612c96565b5b6000612fe385828601612e37565b9250506020612ff485828601612eec565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61304082612daa565b810181811067ffffffffffffffff8211171561305f5761305e613008565b5b80604052505050565b6000613072612c8c565b905061307e8282613037565b919050565b600067ffffffffffffffff82111561309e5761309d613008565b5b6130a782612daa565b9050602081019050919050565b82818337600083830152505050565b60006130d66130d184613083565b613068565b9050828152602081018484840111156130f2576130f1613003565b5b6130fd8482856130b4565b509392505050565b600082601f83011261311a57613119612ffe565b5b813561312a8482602086016130c3565b91505092915050565b60006020828403121561314957613148612c96565b5b600082013567ffffffffffffffff81111561316757613166612c9b565b5b61317384828501613105565b91505092915050565b60006020828403121561319257613191612c96565b5b60006131a084828501612eec565b91505092915050565b6131b281612d25565b81146131bd57600080fd5b50565b6000813590506131cf816131a9565b92915050565b600080604083850312156131ec576131eb612c96565b5b60006131fa85828601612eec565b925050602061320b858286016131c0565b9150509250929050565b600067ffffffffffffffff8211156132305761322f613008565b5b61323982612daa565b9050602081019050919050565b600061325961325484613215565b613068565b90508281526020810184848401111561327557613274613003565b5b6132808482856130b4565b509392505050565b600082601f83011261329d5761329c612ffe565b5b81356132ad848260208601613246565b91505092915050565b600080600080608085870312156132d0576132cf612c96565b5b60006132de87828801612eec565b94505060206132ef87828801612eec565b935050604061330087828801612e37565b925050606085013567ffffffffffffffff81111561332157613320612c9b565b5b61332d87828801613288565b91505092959194509250565b600080604083850312156133505761334f612c96565b5b600061335e85828601612eec565b925050602061336f85828601612eec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133c057607f821691505b602082108114156133d4576133d3613379565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613410602083612d66565b915061341b826133da565b602082019050919050565b6000602082019050818103600083015261343f81613403565b9050919050565b600081905092915050565b50565b6000613461600083613446565b915061346c82613451565b600082019050919050565b600061348282613454565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006134c2600e83612d66565b91506134cd8261348c565b602082019050919050565b600060208201905081810360008301526134f1816134b5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061353282612e16565b915061353d83612e16565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613572576135716134f8565b5b828201905092915050565b600061358882612e16565b915061359383612e16565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135cc576135cb6134f8565b5b828202905092915050565b7f4e6f7420656e6f756768204554482e0000000000000000000000000000000000600082015250565b600061360d600f83612d66565b9150613618826135d7565b602082019050919050565b6000602082019050818103600083015261363c81613600565b9050919050565b7f4578636565647320737570706c792e0000000000000000000000000000000000600082015250565b6000613679600f83612d66565b915061368482613643565b602082019050919050565b600060208201905081810360008301526136a88161366c565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b60006136e5601883612d66565b91506136f0826136af565b602082019050919050565b60006020820190508181036000830152613714816136d8565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613751601383612d66565b915061375c8261371b565b602082019050919050565b6000602082019050818103600083015261378081613744565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b60006137bd601483612d66565b91506137c882613787565b602082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061384f602f83612d66565b915061385a826137f3565b604082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b600081905092915050565b600061389b82612d5b565b6138a58185613885565b93506138b5818560208601612d77565b80840191505092915050565b60008190508160005260206000209050919050565b600081546138e3816133a8565b6138ed8186613885565b9450600182166000811461390857600181146139195761394c565b60ff1983168652818601935061394c565b613922856138c1565b60005b8381101561394457815481890152600182019150602081019050613925565b838801955050505b50505092915050565b60006139618286613890565b915061396d8285613890565b915061397982846138d6565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139e2602683612d66565b91506139ed82613986565b604082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a3f82613a18565b613a498185613a23565b9350613a59818560208601612d77565b613a6281612daa565b840191505092915050565b6000608082019050613a826000830187612eab565b613a8f6020830186612eab565b613a9c6040830185612f41565b8181036060830152613aae8184613a34565b905095945050505050565b600081519050613ac881612ccc565b92915050565b600060208284031215613ae457613ae3612c96565b5b6000613af284828501613ab9565b91505092915050565b6000613b0682612e16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b3957613b386134f8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b7e82612e16565b9150613b8983612e16565b925082613b9957613b98613b44565b5b828204905092915050565b6000613baf82612e16565b9150613bba83612e16565b925082821015613bcd57613bcc6134f8565b5b828203905092915050565b6000613be382612e16565b9150613bee83612e16565b925082613bfe57613bfd613b44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cb872d6b65d8066442dd2cc4213cf1cf8f4f679ad877d87cfe7eab6fda278ec164736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e5962704b7a4a454263327a5159754344344437373870376462707471766164744c783247375969625051472f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063c6682862116100a0578063da3ef23f1161006f578063da3ef23f1461070c578063e268e4d314610735578063e985e9c51461075e578063f2fde38b1461079b578063f968adbe146107c457610204565b8063c668286214610650578063c6f6f2161461067b578063c87b56dd146106a4578063d5abeb01146106e157610204565b806395d89b41116100e757806395d89b411461058c578063a035b1fe146105b7578063a0712d68146105e2578063a22cb465146105fe578063b88d4fde1461062757610204565b8063715018a6146104f85780638da5cb5b1461050f57806391b7f5ed1461053a57806392910eec1461056357610204565b806337a66d851161019b57806355f804b31161016a57806355f804b3146104015780635c975abb1461042a5780636352211e146104555780636f8b44b01461049257806370a08231146104bb57610204565b806337a66d851461037f5780633ccfd60b1461039657806342842e0e146103ad578063453c2310146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632cfee9901461032b578063333e44e61461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612cf8565b6107ef565b60405161023d9190612d40565b60405180910390f35b34801561025257600080fd5b5061025b6108d1565b6040516102689190612df4565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612e4c565b610963565b6040516102a59190612eba565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f01565b6109df565b005b3480156102e357600080fd5b506102ec610ae4565b6040516102f99190612f50565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612f6b565b610afb565b005b34801561033757600080fd5b50610352600480360381019061034d9190612fbe565b610b0b565b005b34801561036057600080fd5b50610369610b95565b6040516103769190612f50565b60405180910390f35b34801561038b57600080fd5b50610394610b9b565b005b3480156103a257600080fd5b506103ab610c43565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612f6b565b610d7b565b005b3480156103e257600080fd5b506103eb610d9b565b6040516103f89190612f50565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190613133565b610da1565b005b34801561043657600080fd5b5061043f610e37565b60405161044c9190612d40565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612e4c565b610e4a565b6040516104899190612eba565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612e4c565b610e60565b005b3480156104c757600080fd5b506104e260048036038101906104dd919061317c565b610ee6565b6040516104ef9190612f50565b60405180910390f35b34801561050457600080fd5b5061050d610fb6565b005b34801561051b57600080fd5b5061052461103e565b6040516105319190612eba565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190612e4c565b611068565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612e4c565b6110ee565b005b34801561059857600080fd5b506105a1611174565b6040516105ae9190612df4565b60405180910390f35b3480156105c357600080fd5b506105cc611206565b6040516105d99190612f50565b60405180910390f35b6105fc60048036038101906105f79190612e4c565b61120c565b005b34801561060a57600080fd5b50610625600480360381019061062091906131d5565b6113f6565b005b34801561063357600080fd5b5061064e600480360381019061064991906132b6565b61156e565b005b34801561065c57600080fd5b506106656115e6565b6040516106729190612df4565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612e4c565b611674565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612e4c565b6116fa565b6040516106d89190612df4565b60405180910390f35b3480156106ed57600080fd5b506106f66117a4565b6040516107039190612f50565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613133565b6117aa565b005b34801561074157600080fd5b5061075c60048036038101906107579190612e4c565b611840565b005b34801561076a57600080fd5b5061078560048036038101906107809190613339565b6118c6565b6040516107929190612d40565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd919061317c565b61195a565b005b3480156107d057600080fd5b506107d9611a52565b6040516107e69190612f50565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ca57506108c982611a7b565b5b9050919050565b6060600280546108e0906133a8565b80601f016020809104026020016040519081016040528092919081815260200182805461090c906133a8565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611ae5565b6109a4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ea82610e4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a52576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a71611b33565b73ffffffffffffffffffffffffffffffffffffffff1614610ad457610a9d81610a98611b33565b6118c6565b610ad3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610adf838383611b3b565b505050565b6000610aee611bed565b6001546000540303905090565b610b06838383611bf6565b505050565b610b13611b33565b73ffffffffffffffffffffffffffffffffffffffff16610b3161103e565b73ffffffffffffffffffffffffffffffffffffffff1614610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90613426565b60405180910390fd5b610b9181836120ac565b5050565b600e5481565b610ba3611b33565b73ffffffffffffffffffffffffffffffffffffffff16610bc161103e565b73ffffffffffffffffffffffffffffffffffffffff1614610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613426565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b610c4b611b33565b73ffffffffffffffffffffffffffffffffffffffff16610c6961103e565b73ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613426565b60405180910390fd5b60004790506000610cce611b33565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cf190613477565b60006040518083038185875af1925050503d8060008114610d2e576040519150601f19603f3d011682016040523d82523d6000602084013e610d33565b606091505b5050905080610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e906134d8565b60405180910390fd5b5050565b610d968383836040518060200160405280600081525061156e565b505050565b60105481565b610da9611b33565b73ffffffffffffffffffffffffffffffffffffffff16610dc761103e565b73ffffffffffffffffffffffffffffffffffffffff1614610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490613426565b60405180910390fd5b80600a9080519060200190610e33929190612ba6565b5050565b601160009054906101000a900460ff1681565b6000610e55826120ca565b600001519050919050565b610e68611b33565b73ffffffffffffffffffffffffffffffffffffffff16610e8661103e565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390613426565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fbe611b33565b73ffffffffffffffffffffffffffffffffffffffff16610fdc61103e565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613426565b60405180910390fd5b61103c6000612355565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611070611b33565b73ffffffffffffffffffffffffffffffffffffffff1661108e61103e565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90613426565b60405180910390fd5b80600c8190555050565b6110f6611b33565b73ffffffffffffffffffffffffffffffffffffffff1661111461103e565b73ffffffffffffffffffffffffffffffffffffffff161461116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190613426565b60405180910390fd5b80600e8190555050565b606060038054611183906133a8565b80601f01602080910402602001604051908101604052809291908181526020018280546111af906133a8565b80156111fc5780601f106111d1576101008083540402835291602001916111fc565b820191906000526020600020905b8154815290600101906020018083116111df57829003601f168201915b5050505050905090565b600c5481565b6000600c5490506001600e546112229190613527565b8261122b610ae4565b6112359190613527565b101561124057600090505b808261124c919061357d565b34101561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590613623565b60405180910390fd5b6001600f5461129d9190613527565b826112a6610ae4565b6112b09190613527565b106112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e79061368f565b60405180910390fd5b601160009054906101000a900460ff1615611340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611337906136fb565b60405180910390fd5b6001600d5461134f9190613527565b8210611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613767565b60405180910390fd5b6010548261139d3361241b565b6113a79190613527565b11156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df906137d3565b60405180910390fd5b6113f233836120ac565b5050565b6113fe611b33565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611463576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611470611b33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151d611b33565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115629190612d40565b60405180910390a35050565b611579848484611bf6565b6115988373ffffffffffffffffffffffffffffffffffffffff16611a58565b156115e0576115a984848484612485565b6115df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b80546115f3906133a8565b80601f016020809104026020016040519081016040528092919081815260200182805461161f906133a8565b801561166c5780601f106116415761010080835404028352916020019161166c565b820191906000526020600020905b81548152906001019060200180831161164f57829003601f168201915b505050505081565b61167c611b33565b73ffffffffffffffffffffffffffffffffffffffff1661169a61103e565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613426565b60405180910390fd5b80600d8190555050565b606061170582611ae5565b611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90613865565b60405180910390fd5b600061174e6125e5565b9050600081511161176e576040518060200160405280600081525061179c565b8061177884612677565b600b60405160200161178c93929190613955565b6040516020818303038152906040525b915050919050565b600f5481565b6117b2611b33565b73ffffffffffffffffffffffffffffffffffffffff166117d061103e565b73ffffffffffffffffffffffffffffffffffffffff1614611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d90613426565b60405180910390fd5b80600b908051906020019061183c929190612ba6565b5050565b611848611b33565b73ffffffffffffffffffffffffffffffffffffffff1661186661103e565b73ffffffffffffffffffffffffffffffffffffffff16146118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613426565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611962611b33565b73ffffffffffffffffffffffffffffffffffffffff1661198061103e565b73ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90613426565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d906139f8565b60405180910390fd5b611a4f81612355565b50565b600d5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611af0611bed565b11158015611aff575060005482105b8015611b2c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c01826120ca565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c6c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c8d611b33565b73ffffffffffffffffffffffffffffffffffffffff161480611cbc5750611cbb85611cb6611b33565b6118c6565b5b80611d015750611cca611b33565b73ffffffffffffffffffffffffffffffffffffffff16611ce984610963565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d3a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611da1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dae85858560016127d8565b611dba60008487611b3b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561203a57600054821461203957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a585858560016127de565b5050505050565b6120c68282604051806020016040528060008152506127e4565b5050565b6120d2612c2c565b6000829050806120e0611bed565b1161231e5760005481101561231d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121ff578092505050612350565b5b60011561231a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612315578092505050612350565b612200565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ab611b33565b8786866040518563ffffffff1660e01b81526004016124cd9493929190613a6d565b602060405180830381600087803b1580156124e757600080fd5b505af192505050801561251857506040513d601f19601f820116820180604052508101906125159190613ace565b60015b612592573d8060008114612548576040519150601f19603f3d011682016040523d82523d6000602084013e61254d565b606091505b5060008151141561258a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546125f4906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054612620906133a8565b801561266d5780601f106126425761010080835404028352916020019161266d565b820191906000526020600020905b81548152906001019060200180831161265057829003601f168201915b5050505050905090565b606060008214156126bf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127d3565b600082905060005b600082146126f15780806126da90613afb565b915050600a826126ea9190613b73565b91506126c7565b60008167ffffffffffffffff81111561270d5761270c613008565b5b6040519080825280601f01601f19166020018201604052801561273f5781602001600182028036833780820191505090505b5090505b600085146127cc576001826127589190613ba4565b9150600a856127679190613bd8565b60306127739190613527565b60f81b81838151811061278957612788613c09565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c59190613b73565b9450612743565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612851576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561288c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61289960008583866127d8565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612a5a8673ffffffffffffffffffffffffffffffffffffffff16611a58565b15612b1f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612acf6000878480600101955087612485565b612b05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612a60578260005414612b1a57600080fd5b612b8a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b20575b816000819055505050612ba060008583866127de565b50505050565b828054612bb2906133a8565b90600052602060002090601f016020900481019282612bd45760008555612c1b565b82601f10612bed57805160ff1916838001178555612c1b565b82800160010185558215612c1b579182015b82811115612c1a578251825591602001919060010190612bff565b5b509050612c289190612c6f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c88576000816000905550600101612c70565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cd581612ca0565b8114612ce057600080fd5b50565b600081359050612cf281612ccc565b92915050565b600060208284031215612d0e57612d0d612c96565b5b6000612d1c84828501612ce3565b91505092915050565b60008115159050919050565b612d3a81612d25565b82525050565b6000602082019050612d556000830184612d31565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d95578082015181840152602081019050612d7a565b83811115612da4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612dc682612d5b565b612dd08185612d66565b9350612de0818560208601612d77565b612de981612daa565b840191505092915050565b60006020820190508181036000830152612e0e8184612dbb565b905092915050565b6000819050919050565b612e2981612e16565b8114612e3457600080fd5b50565b600081359050612e4681612e20565b92915050565b600060208284031215612e6257612e61612c96565b5b6000612e7084828501612e37565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ea482612e79565b9050919050565b612eb481612e99565b82525050565b6000602082019050612ecf6000830184612eab565b92915050565b612ede81612e99565b8114612ee957600080fd5b50565b600081359050612efb81612ed5565b92915050565b60008060408385031215612f1857612f17612c96565b5b6000612f2685828601612eec565b9250506020612f3785828601612e37565b9150509250929050565b612f4a81612e16565b82525050565b6000602082019050612f656000830184612f41565b92915050565b600080600060608486031215612f8457612f83612c96565b5b6000612f9286828701612eec565b9350506020612fa386828701612eec565b9250506040612fb486828701612e37565b9150509250925092565b60008060408385031215612fd557612fd4612c96565b5b6000612fe385828601612e37565b9250506020612ff485828601612eec565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61304082612daa565b810181811067ffffffffffffffff8211171561305f5761305e613008565b5b80604052505050565b6000613072612c8c565b905061307e8282613037565b919050565b600067ffffffffffffffff82111561309e5761309d613008565b5b6130a782612daa565b9050602081019050919050565b82818337600083830152505050565b60006130d66130d184613083565b613068565b9050828152602081018484840111156130f2576130f1613003565b5b6130fd8482856130b4565b509392505050565b600082601f83011261311a57613119612ffe565b5b813561312a8482602086016130c3565b91505092915050565b60006020828403121561314957613148612c96565b5b600082013567ffffffffffffffff81111561316757613166612c9b565b5b61317384828501613105565b91505092915050565b60006020828403121561319257613191612c96565b5b60006131a084828501612eec565b91505092915050565b6131b281612d25565b81146131bd57600080fd5b50565b6000813590506131cf816131a9565b92915050565b600080604083850312156131ec576131eb612c96565b5b60006131fa85828601612eec565b925050602061320b858286016131c0565b9150509250929050565b600067ffffffffffffffff8211156132305761322f613008565b5b61323982612daa565b9050602081019050919050565b600061325961325484613215565b613068565b90508281526020810184848401111561327557613274613003565b5b6132808482856130b4565b509392505050565b600082601f83011261329d5761329c612ffe565b5b81356132ad848260208601613246565b91505092915050565b600080600080608085870312156132d0576132cf612c96565b5b60006132de87828801612eec565b94505060206132ef87828801612eec565b935050604061330087828801612e37565b925050606085013567ffffffffffffffff81111561332157613320612c9b565b5b61332d87828801613288565b91505092959194509250565b600080604083850312156133505761334f612c96565b5b600061335e85828601612eec565b925050602061336f85828601612eec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133c057607f821691505b602082108114156133d4576133d3613379565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613410602083612d66565b915061341b826133da565b602082019050919050565b6000602082019050818103600083015261343f81613403565b9050919050565b600081905092915050565b50565b6000613461600083613446565b915061346c82613451565b600082019050919050565b600061348282613454565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006134c2600e83612d66565b91506134cd8261348c565b602082019050919050565b600060208201905081810360008301526134f1816134b5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061353282612e16565b915061353d83612e16565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613572576135716134f8565b5b828201905092915050565b600061358882612e16565b915061359383612e16565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135cc576135cb6134f8565b5b828202905092915050565b7f4e6f7420656e6f756768204554482e0000000000000000000000000000000000600082015250565b600061360d600f83612d66565b9150613618826135d7565b602082019050919050565b6000602082019050818103600083015261363c81613600565b9050919050565b7f4578636565647320737570706c792e0000000000000000000000000000000000600082015250565b6000613679600f83612d66565b915061368482613643565b602082019050919050565b600060208201905081810360008301526136a88161366c565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b60006136e5601883612d66565b91506136f0826136af565b602082019050919050565b60006020820190508181036000830152613714816136d8565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613751601383612d66565b915061375c8261371b565b602082019050919050565b6000602082019050818103600083015261378081613744565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b60006137bd601483612d66565b91506137c882613787565b602082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061384f602f83612d66565b915061385a826137f3565b604082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b600081905092915050565b600061389b82612d5b565b6138a58185613885565b93506138b5818560208601612d77565b80840191505092915050565b60008190508160005260206000209050919050565b600081546138e3816133a8565b6138ed8186613885565b9450600182166000811461390857600181146139195761394c565b60ff1983168652818601935061394c565b613922856138c1565b60005b8381101561394457815481890152600182019150602081019050613925565b838801955050505b50505092915050565b60006139618286613890565b915061396d8285613890565b915061397982846138d6565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139e2602683612d66565b91506139ed82613986565b604082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a3f82613a18565b613a498185613a23565b9350613a59818560208601612d77565b613a6281612daa565b840191505092915050565b6000608082019050613a826000830187612eab565b613a8f6020830186612eab565b613a9c6040830185612f41565b8181036060830152613aae8184613a34565b905095945050505050565b600081519050613ac881612ccc565b92915050565b600060208284031215613ae457613ae3612c96565b5b6000613af284828501613ab9565b91505092915050565b6000613b0682612e16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b3957613b386134f8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b7e82612e16565b9150613b8983612e16565b925082613b9957613b98613b44565b5b828204905092915050565b6000613baf82612e16565b9150613bba83612e16565b925082821015613bcd57613bcc6134f8565b5b828203905092915050565b6000613be382612e16565b9150613bee83612e16565b925082613bfe57613bfd613b44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cb872d6b65d8066442dd2cc4213cf1cf8f4f679ad877d87cfe7eab6fda278ec164736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e5962704b7a4a454263327a5159754344344437373870376462707471766164744c783247375969625051472f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmNYbpKzJEBc2zQYuCD4D778p7dbptqvadtLx2G7YibPQG/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e5962704b7a4a454263327a5159754344344437373870
Arg [3] : 376462707471766164744c783247375969625051472f00000000000000000000


Deployed Bytecode Sourcemap

48569:3055:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29687:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32802:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34306:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33868:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28927:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35171:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50729:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48801:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50968:73;;;;;;;;;;;;;:::i;:::-;;51406:209;;;;;;;;;;;;;:::i;:::-;;35412:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48875:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51049:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48914:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32610:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50621:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30056:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5890:103;;;;;;;;;;;;;:::i;:::-;;5239:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50868:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50288:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32971:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48726:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49224:604;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34582:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35668:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48682:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50517:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49836:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48838:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51161:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50391:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34940:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6148:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48767:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29687:305;29789:4;29841:25;29826:40;;;:11;:40;;;;:105;;;;29898:33;29883:48;;;:11;:48;;;;29826:105;:158;;;;29948:36;29972:11;29948:23;:36::i;:::-;29826:158;29806:178;;29687:305;;;:::o;32802:100::-;32856:13;32889:5;32882:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32802:100;:::o;34306:204::-;34374:7;34399:16;34407:7;34399;:16::i;:::-;34394:64;;34424:34;;;;;;;;;;;;;;34394:64;34478:15;:24;34494:7;34478:24;;;;;;;;;;;;;;;;;;;;;34471:31;;34306:204;;;:::o;33868:372::-;33941:13;33957:24;33973:7;33957:15;:24::i;:::-;33941:40;;34002:5;33996:11;;:2;:11;;;33992:48;;;34016:24;;;;;;;;;;;;;;33992:48;34073:5;34057:21;;:12;:10;:12::i;:::-;:21;;;34053:139;;34084:37;34101:5;34108:12;:10;:12::i;:::-;34084:16;:37::i;:::-;34080:112;;34145:35;;;;;;;;;;;;;;34080:112;34053:139;34204:28;34213:2;34217:7;34226:5;34204:8;:28::i;:::-;33930:310;33868:372;;:::o;28927:312::-;28980:7;29205:15;:13;:15::i;:::-;29190:12;;29174:13;;:28;:46;29167:53;;28927:312;:::o;35171:170::-;35305:28;35315:4;35321:2;35325:7;35305:9;:28::i;:::-;35171:170;;;:::o;50729:131::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50819:33:::1;50829:9;50840:11;50819:9;:33::i;:::-;50729:131:::0;;:::o;48801:30::-;;;;:::o;50968:73::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51027:6:::1;;;;;;;;;;;51026:7;51017:6;;:16;;;;;;;;;;;;;;;;;;50968:73::o:0;51406:209::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51456:15:::1;51474:21;51456:39;;51507:12;51525;:10;:12::i;:::-;:17;;51550:7;51525:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51506:56;;;51581:7;51573:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;51445:170;;51406:209::o:0;35412:185::-;35550:39;35567:4;35573:2;35577:7;35550:39;;;;;;;;;;;;:16;:39::i;:::-;35412:185;;;:::o;48875:32::-;;;;:::o;51049:104::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51134:11:::1;51124:7;:21;;;;;;;;;;;;:::i;:::-;;51049:104:::0;:::o;48914:25::-;;;;;;;;;;;;;:::o;32610:125::-;32674:7;32701:21;32714:7;32701:12;:21::i;:::-;:26;;;32694:33;;32610:125;;;:::o;50621:100::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50703:10:::1;50691:9;:22;;;;50621:100:::0;:::o;30056:206::-;30120:7;30161:1;30144:19;;:5;:19;;;30140:60;;;30172:28;;;;;;;;;;;;;;30140:60;30226:12;:19;30239:5;30226:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30218:36;;30211:43;;30056:206;;;:::o;5890:103::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5955:30:::1;5982:1;5955:18;:30::i;:::-;5890:103::o:0;5239:87::-;5285:7;5312:6;;;;;;;;;;;5305:13;;5239:87;:::o;50868:92::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50943:9:::1;50935:5;:17;;;;50868:92:::0;:::o;50288:95::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50369:6:::1;50357:9;:18;;;;50288:95:::0;:::o;32971:104::-;33027:13;33060:7;33053:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32971:104;:::o;48726:34::-;;;;:::o;49224:604::-;49287:12;49302:5;;49287:20;;49364:1;49352:9;;:13;;;;:::i;:::-;49338:11;49322:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;49318:84;;;49389:1;49382:8;;49318:84;49447:4;49433:11;:18;;;;:::i;:::-;49420:9;:31;;49412:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;49532:1;49520:9;;:13;;;;:::i;:::-;49506:11;49490:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;49482:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49573:6;;;;;;;;;;;49572:7;49564:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49652:1;49641:8;;:12;;;;:::i;:::-;49627:11;:26;49619:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49739:12;;49724:11;49696:25;49710:10;49696:13;:25::i;:::-;:39;;;;:::i;:::-;:55;;49688:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;49786:34;49796:10;49808:11;49786:9;:34::i;:::-;49276:552;49224:604;:::o;34582:287::-;34693:12;:10;:12::i;:::-;34681:24;;:8;:24;;;34677:54;;;34714:17;;;;;;;;;;;;;;34677:54;34789:8;34744:18;:32;34763:12;:10;:12::i;:::-;34744:32;;;;;;;;;;;;;;;:42;34777:8;34744:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34842:8;34813:48;;34828:12;:10;:12::i;:::-;34813:48;;;34852:8;34813:48;;;;;;:::i;:::-;;;;;;;;34582:287;;:::o;35668:370::-;35835:28;35845:4;35851:2;35855:7;35835:9;:28::i;:::-;35878:15;:2;:13;;;:15::i;:::-;35874:157;;;35899:56;35930:4;35936:2;35940:7;35949:5;35899:30;:56::i;:::-;35895:136;;35979:40;;;;;;;;;;;;;;35895:136;35874:157;35668:370;;;;:::o;48682:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50517:96::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50596:9:::1;50585:8;:20;;;;50517:96:::0;:::o;49836:444::-;49954:13;49993:16;50001:7;49993;:16::i;:::-;49985:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50072:28;50103:10;:8;:10::i;:::-;50072:41;;50162:1;50137:14;50131:28;:32;:141;;;;;;;;;;;;;;;;;50203:14;50219:18;:7;:16;:18::i;:::-;50239:13;50186:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50131:141;50124:148;;;49836:444;;;:::o;48838:30::-;;;;:::o;51161:128::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51264:17:::1;51248:13;:33;;;;;;;;;;;;:::i;:::-;;51161:128:::0;:::o;50391:114::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50484:13:::1;50469:12;:28;;;;50391:114:::0;:::o;34940:164::-;35037:4;35061:18;:25;35080:5;35061:25;;;;;;;;;;;;;;;:35;35087:8;35061:35;;;;;;;;;;;;;;;;;;;;;;;;;35054:42;;34940:164;;;;:::o;6148:201::-;5470:12;:10;:12::i;:::-;5459:23;;:7;:5;:7::i;:::-;:23;;;5451:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6257:1:::1;6237:22;;:8;:22;;;;6229:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6313:28;6332:8;6313:18;:28::i;:::-;6148:201:::0;:::o;48767:27::-;;;;:::o;7940:326::-;8000:4;8257:1;8235:7;:19;;;:23;8228:30;;7940:326;;;:::o;18046:157::-;18131:4;18170:25;18155:40;;;:11;:40;;;;18148:47;;18046:157;;;:::o;36293:174::-;36350:4;36393:7;36374:15;:13;:15::i;:::-;:26;;:53;;;;;36414:13;;36404:7;:23;36374:53;:85;;;;;36432:11;:20;36444:7;36432:20;;;;;;;;;;;:27;;;;;;;;;;;;36431:28;36374:85;36367:92;;36293:174;;;:::o;3963:98::-;4016:7;4043:10;4036:17;;3963:98;:::o;45515:196::-;45657:2;45630:15;:24;45646:7;45630:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45695:7;45691:2;45675:28;;45684:5;45675:28;;;;;;;;;;;;45515:196;;;:::o;51297:101::-;51362:7;51389:1;51382:8;;51297:101;:::o;40463:2130::-;40578:35;40616:21;40629:7;40616:12;:21::i;:::-;40578:59;;40676:4;40654:26;;:13;:18;;;:26;;;40650:67;;40689:28;;;;;;;;;;;;;;40650:67;40730:22;40772:4;40756:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40793:36;40810:4;40816:12;:10;:12::i;:::-;40793:16;:36::i;:::-;40756:73;:126;;;;40870:12;:10;:12::i;:::-;40846:36;;:20;40858:7;40846:11;:20::i;:::-;:36;;;40756:126;40730:153;;40901:17;40896:66;;40927:35;;;;;;;;;;;;;;40896:66;40991:1;40977:16;;:2;:16;;;40973:52;;;41002:23;;;;;;;;;;;;;;40973:52;41038:43;41060:4;41066:2;41070:7;41079:1;41038:21;:43::i;:::-;41146:35;41163:1;41167:7;41176:4;41146:8;:35::i;:::-;41507:1;41477:12;:18;41490:4;41477:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41551:1;41523:12;:16;41536:2;41523:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41569:31;41603:11;:20;41615:7;41603:20;;;;;;;;;;;41569:54;;41654:2;41638:8;:13;;;:18;;;;;;;;;;;;;;;;;;41704:15;41671:8;:23;;;:49;;;;;;;;;;;;;;;;;;41972:19;42004:1;41994:7;:11;41972:33;;42020:31;42054:11;:24;42066:11;42054:24;;;;;;;;;;;42020:58;;42122:1;42097:27;;:8;:13;;;;;;;;;;;;:27;;;42093:384;;;42307:13;;42292:11;:28;42288:174;;42361:4;42345:8;:13;;;:20;;;;;;;;;;;;;;;;;;42414:13;:28;;;42388:8;:23;;;:54;;;;;;;;;;;;;;;;;;42288:174;42093:384;41452:1036;;;42524:7;42520:2;42505:27;;42514:4;42505:27;;;;;;;;;;;;42543:42;42564:4;42570:2;42574:7;42583:1;42543:20;:42::i;:::-;40567:2026;;40463:2130;;;:::o;36551:104::-;36620:27;36630:2;36634:8;36620:27;;;;;;;;;;;;:9;:27::i;:::-;36551:104;;:::o;31437:1111::-;31499:21;;:::i;:::-;31533:12;31548:7;31533:22;;31616:4;31597:15;:13;:15::i;:::-;:23;31593:888;;31633:13;;31626:4;:20;31622:859;;;31667:31;31701:11;:17;31713:4;31701:17;;;;;;;;;;;31667:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31742:9;:16;;;31737:729;;31813:1;31787:28;;:9;:14;;;:28;;;31783:101;;31851:9;31844:16;;;;;;31783:101;32186:261;32193:4;32186:261;;;32226:6;;;;;;;;32271:11;:17;32283:4;32271:17;;;;;;;;;;;32259:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32345:1;32319:28;;:9;:14;;;:28;;;32315:109;;32387:9;32380:16;;;;;;32315:109;32186:261;;;31737:729;31648:833;31622:859;31593:888;32509:31;;;;;;;;;;;;;;31437:1111;;;;:::o;6509:191::-;6583:16;6602:6;;;;;;;;;;;6583:25;;6628:8;6619:6;;:17;;;;;;;;;;;;;;;;;;6683:8;6652:40;;6673:8;6652:40;;;;;;;;;;;;6572:128;6509:191;:::o;30344:137::-;30405:7;30440:12;:19;30453:5;30440:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30432:41;;30425:48;;30344:137;;;:::o;46203:667::-;46366:4;46403:2;46387:36;;;46424:12;:10;:12::i;:::-;46438:4;46444:7;46453:5;46387:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46383:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46638:1;46621:6;:13;:18;46617:235;;;46667:40;;;;;;;;;;;;;;46617:235;46810:6;46804:13;46795:6;46791:2;46787:15;46780:38;46383:480;46516:45;;;46506:55;;;:6;:55;;;;46499:62;;;46203:667;;;;;;:::o;49108:108::-;49168:13;49201:7;49194:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49108:108;:::o;1525:723::-;1581:13;1811:1;1802:5;:10;1798:53;;;1829:10;;;;;;;;;;;;;;;;;;;;;1798:53;1861:12;1876:5;1861:20;;1892:14;1917:78;1932:1;1924:4;:9;1917:78;;1950:8;;;;;:::i;:::-;;;;1981:2;1973:10;;;;;:::i;:::-;;;1917:78;;;2005:19;2037:6;2027:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2005:39;;2055:154;2071:1;2062:5;:10;2055:154;;2099:1;2089:11;;;;;:::i;:::-;;;2166:2;2158:5;:10;;;;:::i;:::-;2145:2;:24;;;;:::i;:::-;2132:39;;2115:6;2122;2115:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2195:2;2186:11;;;;;:::i;:::-;;;2055:154;;;2233:6;2219:21;;;;;1525:723;;;;:::o;47518:159::-;;;;;:::o;48336:158::-;;;;;:::o;37028:1749::-;37151:20;37174:13;;37151:36;;37216:1;37202:16;;:2;:16;;;37198:48;;;37227:19;;;;;;;;;;;;;;37198:48;37273:1;37261:8;:13;37257:44;;;37283:18;;;;;;;;;;;;;;37257:44;37314:61;37344:1;37348:2;37352:12;37366:8;37314:21;:61::i;:::-;37687:8;37652:12;:16;37665:2;37652:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37751:8;37711:12;:16;37724:2;37711:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37810:2;37777:11;:25;37789:12;37777:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37877:15;37827:11;:25;37839:12;37827:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37910:20;37933:12;37910:35;;37960:11;37989:8;37974:12;:23;37960:37;;38018:15;:2;:13;;;:15::i;:::-;38014:631;;;38054:313;38110:12;38106:2;38085:38;;38102:1;38085:38;;;;;;;;;;;;38151:69;38190:1;38194:2;38198:14;;;;;;38214:5;38151:30;:69::i;:::-;38146:174;;38256:40;;;;;;;;;;;;;;38146:174;38362:3;38347:12;:18;38054:313;;38448:12;38431:13;;:29;38427:43;;38462:8;;;38427:43;38014:631;;;38511:119;38567:14;;;;;;38563:2;38542:40;;38559:1;38542:40;;;;;;;;;;;;38625:3;38610:12;:18;38511:119;;38014:631;38675:12;38659:13;:28;;;;37627:1072;;38709:60;38738:1;38742:2;38746:12;38760:8;38709:20;:60::i;:::-;37140:1637;37028:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:474::-;5983:6;5991;6040:2;6028:9;6019:7;6015:23;6011:32;6008:119;;;6046:79;;:::i;:::-;6008:119;6166:1;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6137:117;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5915:474;;;;;:::o;6395:117::-;6504:1;6501;6494:12;6518:117;6627:1;6624;6617:12;6641:180;6689:77;6686:1;6679:88;6786:4;6783:1;6776:15;6810:4;6807:1;6800:15;6827:281;6910:27;6932:4;6910:27;:::i;:::-;6902:6;6898:40;7040:6;7028:10;7025:22;7004:18;6992:10;6989:34;6986:62;6983:88;;;7051:18;;:::i;:::-;6983:88;7091:10;7087:2;7080:22;6870:238;6827:281;;:::o;7114:129::-;7148:6;7175:20;;:::i;:::-;7165:30;;7204:33;7232:4;7224:6;7204:33;:::i;:::-;7114:129;;;:::o;7249:308::-;7311:4;7401:18;7393:6;7390:30;7387:56;;;7423:18;;:::i;:::-;7387:56;7461:29;7483:6;7461:29;:::i;:::-;7453:37;;7545:4;7539;7535:15;7527:23;;7249:308;;;:::o;7563:154::-;7647:6;7642:3;7637;7624:30;7709:1;7700:6;7695:3;7691:16;7684:27;7563:154;;;:::o;7723:412::-;7801:5;7826:66;7842:49;7884:6;7842:49;:::i;:::-;7826:66;:::i;:::-;7817:75;;7915:6;7908:5;7901:21;7953:4;7946:5;7942:16;7991:3;7982:6;7977:3;7973:16;7970:25;7967:112;;;7998:79;;:::i;:::-;7967:112;8088:41;8122:6;8117:3;8112;8088:41;:::i;:::-;7807:328;7723:412;;;;;:::o;8155:340::-;8211:5;8260:3;8253:4;8245:6;8241:17;8237:27;8227:122;;8268:79;;:::i;:::-;8227:122;8385:6;8372:20;8410:79;8485:3;8477:6;8470:4;8462:6;8458:17;8410:79;:::i;:::-;8401:88;;8217:278;8155:340;;;;:::o;8501:509::-;8570:6;8619:2;8607:9;8598:7;8594:23;8590:32;8587:119;;;8625:79;;:::i;:::-;8587:119;8773:1;8762:9;8758:17;8745:31;8803:18;8795:6;8792:30;8789:117;;;8825:79;;:::i;:::-;8789:117;8930:63;8985:7;8976:6;8965:9;8961:22;8930:63;:::i;:::-;8920:73;;8716:287;8501:509;;;;:::o;9016:329::-;9075:6;9124:2;9112:9;9103:7;9099:23;9095:32;9092:119;;;9130:79;;:::i;:::-;9092:119;9250:1;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9221:117;9016:329;;;;:::o;9351:116::-;9421:21;9436:5;9421:21;:::i;:::-;9414:5;9411:32;9401:60;;9457:1;9454;9447:12;9401:60;9351:116;:::o;9473:133::-;9516:5;9554:6;9541:20;9532:29;;9570:30;9594:5;9570:30;:::i;:::-;9473:133;;;;:::o;9612:468::-;9677:6;9685;9734:2;9722:9;9713:7;9709:23;9705:32;9702:119;;;9740:79;;:::i;:::-;9702:119;9860:1;9885:53;9930:7;9921:6;9910:9;9906:22;9885:53;:::i;:::-;9875:63;;9831:117;9987:2;10013:50;10055:7;10046:6;10035:9;10031:22;10013:50;:::i;:::-;10003:60;;9958:115;9612:468;;;;;:::o;10086:307::-;10147:4;10237:18;10229:6;10226:30;10223:56;;;10259:18;;:::i;:::-;10223:56;10297:29;10319:6;10297:29;:::i;:::-;10289:37;;10381:4;10375;10371:15;10363:23;;10086:307;;;:::o;10399:410::-;10476:5;10501:65;10517:48;10558:6;10517:48;:::i;:::-;10501:65;:::i;:::-;10492:74;;10589:6;10582:5;10575:21;10627:4;10620:5;10616:16;10665:3;10656:6;10651:3;10647:16;10644:25;10641:112;;;10672:79;;:::i;:::-;10641:112;10762:41;10796:6;10791:3;10786;10762:41;:::i;:::-;10482:327;10399:410;;;;;:::o;10828:338::-;10883:5;10932:3;10925:4;10917:6;10913:17;10909:27;10899:122;;10940:79;;:::i;:::-;10899:122;11057:6;11044:20;11082:78;11156:3;11148:6;11141:4;11133:6;11129:17;11082:78;:::i;:::-;11073:87;;10889:277;10828:338;;;;:::o;11172:943::-;11267:6;11275;11283;11291;11340:3;11328:9;11319:7;11315:23;11311:33;11308:120;;;11347:79;;:::i;:::-;11308:120;11467:1;11492:53;11537:7;11528:6;11517:9;11513:22;11492:53;:::i;:::-;11482:63;;11438:117;11594:2;11620:53;11665:7;11656:6;11645:9;11641:22;11620:53;:::i;:::-;11610:63;;11565:118;11722:2;11748:53;11793:7;11784:6;11773:9;11769:22;11748:53;:::i;:::-;11738:63;;11693:118;11878:2;11867:9;11863:18;11850:32;11909:18;11901:6;11898:30;11895:117;;;11931:79;;:::i;:::-;11895:117;12036:62;12090:7;12081:6;12070:9;12066:22;12036:62;:::i;:::-;12026:72;;11821:287;11172:943;;;;;;;:::o;12121:474::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:180::-;12649:77;12646:1;12639:88;12746:4;12743:1;12736:15;12770:4;12767:1;12760:15;12787:320;12831:6;12868:1;12862:4;12858:12;12848:22;;12915:1;12909:4;12905:12;12936:18;12926:81;;12992:4;12984:6;12980:17;12970:27;;12926:81;13054:2;13046:6;13043:14;13023:18;13020:38;13017:84;;;13073:18;;:::i;:::-;13017:84;12838:269;12787:320;;;:::o;13113:182::-;13253:34;13249:1;13241:6;13237:14;13230:58;13113:182;:::o;13301:366::-;13443:3;13464:67;13528:2;13523:3;13464:67;:::i;:::-;13457:74;;13540:93;13629:3;13540:93;:::i;:::-;13658:2;13653:3;13649:12;13642:19;;13301:366;;;:::o;13673:419::-;13839:4;13877:2;13866:9;13862:18;13854:26;;13926:9;13920:4;13916:20;13912:1;13901:9;13897:17;13890:47;13954:131;14080:4;13954:131;:::i;:::-;13946:139;;13673:419;;;:::o;14098:147::-;14199:11;14236:3;14221:18;;14098:147;;;;:::o;14251:114::-;;:::o;14371:398::-;14530:3;14551:83;14632:1;14627:3;14551:83;:::i;:::-;14544:90;;14643:93;14732:3;14643:93;:::i;:::-;14761:1;14756:3;14752:11;14745:18;;14371:398;;;:::o;14775:379::-;14959:3;14981:147;15124:3;14981:147;:::i;:::-;14974:154;;15145:3;15138:10;;14775:379;;;:::o;15160:164::-;15300:16;15296:1;15288:6;15284:14;15277:40;15160:164;:::o;15330:366::-;15472:3;15493:67;15557:2;15552:3;15493:67;:::i;:::-;15486:74;;15569:93;15658:3;15569:93;:::i;:::-;15687:2;15682:3;15678:12;15671:19;;15330:366;;;:::o;15702:419::-;15868:4;15906:2;15895:9;15891:18;15883:26;;15955:9;15949:4;15945:20;15941:1;15930:9;15926:17;15919:47;15983:131;16109:4;15983:131;:::i;:::-;15975:139;;15702:419;;;:::o;16127:180::-;16175:77;16172:1;16165:88;16272:4;16269:1;16262:15;16296:4;16293:1;16286:15;16313:305;16353:3;16372:20;16390:1;16372:20;:::i;:::-;16367:25;;16406:20;16424:1;16406:20;:::i;:::-;16401:25;;16560:1;16492:66;16488:74;16485:1;16482:81;16479:107;;;16566:18;;:::i;:::-;16479:107;16610:1;16607;16603:9;16596:16;;16313:305;;;;:::o;16624:348::-;16664:7;16687:20;16705:1;16687:20;:::i;:::-;16682:25;;16721:20;16739:1;16721:20;:::i;:::-;16716:25;;16909:1;16841:66;16837:74;16834:1;16831:81;16826:1;16819:9;16812:17;16808:105;16805:131;;;16916:18;;:::i;:::-;16805:131;16964:1;16961;16957:9;16946:20;;16624:348;;;;:::o;16978:165::-;17118:17;17114:1;17106:6;17102:14;17095:41;16978:165;:::o;17149:366::-;17291:3;17312:67;17376:2;17371:3;17312:67;:::i;:::-;17305:74;;17388:93;17477:3;17388:93;:::i;:::-;17506:2;17501:3;17497:12;17490:19;;17149:366;;;:::o;17521:419::-;17687:4;17725:2;17714:9;17710:18;17702:26;;17774:9;17768:4;17764:20;17760:1;17749:9;17745:17;17738:47;17802:131;17928:4;17802:131;:::i;:::-;17794:139;;17521:419;;;:::o;17946:165::-;18086:17;18082:1;18074:6;18070:14;18063:41;17946:165;:::o;18117:366::-;18259:3;18280:67;18344:2;18339:3;18280:67;:::i;:::-;18273:74;;18356:93;18445:3;18356:93;:::i;:::-;18474:2;18469:3;18465:12;18458:19;;18117:366;;;:::o;18489:419::-;18655:4;18693:2;18682:9;18678:18;18670:26;;18742:9;18736:4;18732:20;18728:1;18717:9;18713:17;18706:47;18770:131;18896:4;18770:131;:::i;:::-;18762:139;;18489:419;;;:::o;18914:174::-;19054:26;19050:1;19042:6;19038:14;19031:50;18914:174;:::o;19094:366::-;19236:3;19257:67;19321:2;19316:3;19257:67;:::i;:::-;19250:74;;19333:93;19422:3;19333:93;:::i;:::-;19451:2;19446:3;19442:12;19435:19;;19094:366;;;:::o;19466:419::-;19632:4;19670:2;19659:9;19655:18;19647:26;;19719:9;19713:4;19709:20;19705:1;19694:9;19690:17;19683:47;19747:131;19873:4;19747:131;:::i;:::-;19739:139;;19466:419;;;:::o;19891:169::-;20031:21;20027:1;20019:6;20015:14;20008:45;19891:169;:::o;20066:366::-;20208:3;20229:67;20293:2;20288:3;20229:67;:::i;:::-;20222:74;;20305:93;20394:3;20305:93;:::i;:::-;20423:2;20418:3;20414:12;20407:19;;20066:366;;;:::o;20438:419::-;20604:4;20642:2;20631:9;20627:18;20619:26;;20691:9;20685:4;20681:20;20677:1;20666:9;20662:17;20655:47;20719:131;20845:4;20719:131;:::i;:::-;20711:139;;20438:419;;;:::o;20863:170::-;21003:22;20999:1;20991:6;20987:14;20980:46;20863:170;:::o;21039:366::-;21181:3;21202:67;21266:2;21261:3;21202:67;:::i;:::-;21195:74;;21278:93;21367:3;21278:93;:::i;:::-;21396:2;21391:3;21387:12;21380:19;;21039:366;;;:::o;21411:419::-;21577:4;21615:2;21604:9;21600:18;21592:26;;21664:9;21658:4;21654:20;21650:1;21639:9;21635:17;21628:47;21692:131;21818:4;21692:131;:::i;:::-;21684:139;;21411:419;;;:::o;21836:234::-;21976:34;21972:1;21964:6;21960:14;21953:58;22045:17;22040:2;22032:6;22028:15;22021:42;21836:234;:::o;22076:366::-;22218:3;22239:67;22303:2;22298:3;22239:67;:::i;:::-;22232:74;;22315:93;22404:3;22315:93;:::i;:::-;22433:2;22428:3;22424:12;22417:19;;22076:366;;;:::o;22448:419::-;22614:4;22652:2;22641:9;22637:18;22629:26;;22701:9;22695:4;22691:20;22687:1;22676:9;22672:17;22665:47;22729:131;22855:4;22729:131;:::i;:::-;22721:139;;22448:419;;;:::o;22873:148::-;22975:11;23012:3;22997:18;;22873:148;;;;:::o;23027:377::-;23133:3;23161:39;23194:5;23161:39;:::i;:::-;23216:89;23298:6;23293:3;23216:89;:::i;:::-;23209:96;;23314:52;23359:6;23354:3;23347:4;23340:5;23336:16;23314:52;:::i;:::-;23391:6;23386:3;23382:16;23375:23;;23137:267;23027:377;;;;:::o;23410:141::-;23459:4;23482:3;23474:11;;23505:3;23502:1;23495:14;23539:4;23536:1;23526:18;23518:26;;23410:141;;;:::o;23581:845::-;23684:3;23721:5;23715:12;23750:36;23776:9;23750:36;:::i;:::-;23802:89;23884:6;23879:3;23802:89;:::i;:::-;23795:96;;23922:1;23911:9;23907:17;23938:1;23933:137;;;;24084:1;24079:341;;;;23900:520;;23933:137;24017:4;24013:9;24002;23998:25;23993:3;23986:38;24053:6;24048:3;24044:16;24037:23;;23933:137;;24079:341;24146:38;24178:5;24146:38;:::i;:::-;24206:1;24220:154;24234:6;24231:1;24228:13;24220:154;;;24308:7;24302:14;24298:1;24293:3;24289:11;24282:35;24358:1;24349:7;24345:15;24334:26;;24256:4;24253:1;24249:12;24244:17;;24220:154;;;24403:6;24398:3;24394:16;24387:23;;24086:334;;23900:520;;23688:738;;23581:845;;;;:::o;24432:589::-;24657:3;24679:95;24770:3;24761:6;24679:95;:::i;:::-;24672:102;;24791:95;24882:3;24873:6;24791:95;:::i;:::-;24784:102;;24903:92;24991:3;24982:6;24903:92;:::i;:::-;24896:99;;25012:3;25005:10;;24432:589;;;;;;:::o;25027:225::-;25167:34;25163:1;25155:6;25151:14;25144:58;25236:8;25231:2;25223:6;25219:15;25212:33;25027:225;:::o;25258:366::-;25400:3;25421:67;25485:2;25480:3;25421:67;:::i;:::-;25414:74;;25497:93;25586:3;25497:93;:::i;:::-;25615:2;25610:3;25606:12;25599:19;;25258:366;;;:::o;25630:419::-;25796:4;25834:2;25823:9;25819:18;25811:26;;25883:9;25877:4;25873:20;25869:1;25858:9;25854:17;25847:47;25911:131;26037:4;25911:131;:::i;:::-;25903:139;;25630:419;;;:::o;26055:98::-;26106:6;26140:5;26134:12;26124:22;;26055:98;;;:::o;26159:168::-;26242:11;26276:6;26271:3;26264:19;26316:4;26311:3;26307:14;26292:29;;26159:168;;;;:::o;26333:360::-;26419:3;26447:38;26479:5;26447:38;:::i;:::-;26501:70;26564:6;26559:3;26501:70;:::i;:::-;26494:77;;26580:52;26625:6;26620:3;26613:4;26606:5;26602:16;26580:52;:::i;:::-;26657:29;26679:6;26657:29;:::i;:::-;26652:3;26648:39;26641:46;;26423:270;26333:360;;;;:::o;26699:640::-;26894:4;26932:3;26921:9;26917:19;26909:27;;26946:71;27014:1;27003:9;26999:17;26990:6;26946:71;:::i;:::-;27027:72;27095:2;27084:9;27080:18;27071:6;27027:72;:::i;:::-;27109;27177:2;27166:9;27162:18;27153:6;27109:72;:::i;:::-;27228:9;27222:4;27218:20;27213:2;27202:9;27198:18;27191:48;27256:76;27327:4;27318:6;27256:76;:::i;:::-;27248:84;;26699:640;;;;;;;:::o;27345:141::-;27401:5;27432:6;27426:13;27417:22;;27448:32;27474:5;27448:32;:::i;:::-;27345:141;;;;:::o;27492:349::-;27561:6;27610:2;27598:9;27589:7;27585:23;27581:32;27578:119;;;27616:79;;:::i;:::-;27578:119;27736:1;27761:63;27816:7;27807:6;27796:9;27792:22;27761:63;:::i;:::-;27751:73;;27707:127;27492:349;;;;:::o;27847:233::-;27886:3;27909:24;27927:5;27909:24;:::i;:::-;27900:33;;27955:66;27948:5;27945:77;27942:103;;;28025:18;;:::i;:::-;27942:103;28072:1;28065:5;28061:13;28054:20;;27847:233;;;:::o;28086:180::-;28134:77;28131:1;28124:88;28231:4;28228:1;28221:15;28255:4;28252:1;28245:15;28272:185;28312:1;28329:20;28347:1;28329:20;:::i;:::-;28324:25;;28363:20;28381:1;28363:20;:::i;:::-;28358:25;;28402:1;28392:35;;28407:18;;:::i;:::-;28392:35;28449:1;28446;28442:9;28437:14;;28272:185;;;;:::o;28463:191::-;28503:4;28523:20;28541:1;28523:20;:::i;:::-;28518:25;;28557:20;28575:1;28557:20;:::i;:::-;28552:25;;28596:1;28593;28590:8;28587:34;;;28601:18;;:::i;:::-;28587:34;28646:1;28643;28639:9;28631:17;;28463:191;;;;:::o;28660:176::-;28692:1;28709:20;28727:1;28709:20;:::i;:::-;28704:25;;28743:20;28761:1;28743:20;:::i;:::-;28738:25;;28782:1;28772:35;;28787:18;;:::i;:::-;28772:35;28828:1;28825;28821:9;28816:14;;28660:176;;;;:::o;28842:180::-;28890:77;28887:1;28880:88;28987:4;28984:1;28977:15;29011:4;29008:1;29001:15

Swarm Source

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