ETH Price: $2,972.56 (+1.41%)
Gas: 2 Gwei

Token

DesignerPunk Kids (DP)
 

Overview

Max Total Supply

328 DP

Holders

96

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0x8008132.eth
Balance
1 DP
0x70dc5257d79625bbbae2f9d2d9ae9086aec5cad3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collection of 5,555 randomly generated kids with more fashion sense .

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SimpleCollectible

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 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: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @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)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

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

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

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

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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`.
   */
  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.
   *
   * 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` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: contracts/MFPooma.sol

//"SPDX-License-Identifier: UNLICENSED"
pragma solidity ^0.8.7;




enum SaleState {
    NOSALE, PRESALE, MAINSALE
}

contract SimpleCollectible is ERC721A, Ownable, ReentrancyGuard {
    uint256 private tokenCounter;

    uint256 public presalePrice = 10000000000000000;
    uint256 public salePrice = 20000000000000000;

    uint256 private presaleSupply = 2000;
    uint256 private maxSupply = 5555; 

    uint256 private maxPerPresaleWallet = 25; 
    uint256 private maxPerTx = 25;

    string private baseTokenURI;
    SaleState public saleState; // 0 - No sale. 1 - Presale. 2 - Main Sale.

    // Faciliating the needed functionality for the presale
    mapping(address => bool) addressToPreSaleEntry;
    mapping(address => uint256) addressToMintable;
    mapping(address => uint256) addressToMintedInPresale;

    constructor () ERC721A ("DesignerPunk Kids","DP", maxPerTx, maxSupply)  {
        saleState = SaleState.PRESALE;
        tokenCounter = 1;
        setBaseURI("https://mfproductions.mypinata.cloud/ipfs/QmeZ9dKXCFDJKJ63X9BQ7SRqp6Crf81xFxGVkkAwKkSSvo/");
    }

    function mintPresaleCollectibles(uint256 _count) public payable nonReentrant {
        require(saleState == SaleState.PRESALE, "Sale is not yet open");
        require(addressToMintedInPresale[msg.sender] + _count <= maxPerPresaleWallet, "Max reached per presale wallet");
        require(isWalletInPresale(msg.sender), "Wallet isnt in presale! The owner needs to addWalletToPresale.");
        require((_count + tokenCounter) <= (presaleSupply+1), "Ran out of NFTs for presale! Sry!");
        require(msg.value >= (presalePrice * _count), "Ether value sent is too low");

        _safeMint(msg.sender, _count);
        tokenCounter += _count;
        addressToMintedInPresale[msg.sender] += _count;
    }

    function mintFreePresaleCollectibles(uint256 _count) public nonReentrant {
        require(saleState == SaleState.PRESALE, "Sale is not yet open");
        require(addressToMintable[msg.sender] >= _count, "Max reached per presale wallet");
        require(isWalletInPresale(msg.sender), "Wallet isnt in presale! The owner needs to addWalletToPresale.");
        require((_count + tokenCounter) <= (presaleSupply+1), "Ran out of NFTs for presale! Sry!");

        _safeMint(msg.sender, _count);
        tokenCounter += _count;
        addressToMintable[msg.sender] -= _count;
    }

    function mintCollectibles(uint256 _count) public payable nonReentrant {
        require(saleState == SaleState.MAINSALE, "Sale is not yet open");
        require(msg.value >= (salePrice * _count), "Ether value sent is not correct");
        require((_count + tokenCounter) <= (maxSupply+1), "Ran out of NFTs for presale! Sry!");

        _safeMint(msg.sender, _count);
         tokenCounter += _count;
    }

    function mintForOwner(uint256 _count, address _user) public onlyOwner { 
        require((_count + tokenCounter) <= (maxSupply+1), "Ran out of NFTs for sale! Sry!");

        _safeMint(_user, _count);
         tokenCounter += _count;
    }

    function getMaxSupply() public view returns (uint256) {
        return maxSupply;
    }

    function getMaxPerTx() public view returns (uint256) {
        return maxPerTx;
    }
    function getPresaleSupply() public view returns (uint256) {
        return presaleSupply;
    }
    function getMaxPerPresaleWallet() public view returns (uint256) {
        return maxPerPresaleWallet;
    }
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(getBaseURI(), Strings.toString(tokenId), ".json"));
    }
    
    function setSaleState(SaleState _saleState) public onlyOwner {
        saleState = _saleState;
    }

    function isWalletInPresale(address _address) public view returns (bool) {
        return addressToPreSaleEntry[_address];
    }
    function addWalletToPreSale(address _address) public onlyOwner {
        addressToPreSaleEntry[_address] = true;
    }
    function addMintable(address[] memory _addresses) public onlyOwner {
        for(uint256 i = 0; i < _addresses.length; i++) {
            addressToMintable[_addresses[i]] += 1;
            if (!addressToPreSaleEntry[_addresses[i]]) {
                addressToPreSaleEntry[_addresses[i]] = !addressToPreSaleEntry[_addresses[i]];
            }
        }
    }
    function addWalletsToPresale(address[] memory _addresses) public onlyOwner {
        for(uint256 i = 0; i < _addresses.length; i++) {
            if (!addressToPreSaleEntry[_addresses[i]]) {
                addressToPreSaleEntry[_addresses[i]] = !addressToPreSaleEntry[_addresses[i]];
            }
        }
    }
    
    function setMaxPerPresaleWallet(uint256 _maxPerPresaleWallet) public onlyOwner {
        maxPerPresaleWallet = _maxPerPresaleWallet;
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseTokenURI = uri;
    }

    function getBaseURI() public view returns (string memory){
        return baseTokenURI;
    }
    function withdrawAll() public payable onlyOwner nonReentrant {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWalletToPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addWalletsToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerPresaleWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWalletInPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintCollectibles","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintFreePresaleCollectibles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintPresaleCollectibles","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","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":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerPresaleWallet","type":"uint256"}],"name":"setMaxPerPresaleWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SaleState","name":"_saleState","type":"uint8"}],"name":"setSaleState","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60c060405260016000556000600755662386f26fc10000600b5566470de4df820000600c556107d0600d556115b3600e556019600f5560196010553480156200004757600080fd5b506040518060400160405280601181526020017f44657369676e657250756e6b204b6964730000000000000000000000000000008152506040518060400160405280600281526020017f4450000000000000000000000000000000000000000000000000000000000000815250601054600e546000811162000100576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000f79062000526565b60405180910390fd5b6000821162000146576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013d90620004e2565b60405180910390fd5b83600190805190602001906200015e929190620003bd565b50826002908051906020019062000177929190620003bd565b508160a08181525050806080818152505050505050620001ac620001a06200021a60201b60201c565b6200022260201b60201c565b60016009819055506001601260006101000a81548160ff02191690836002811115620001dd57620001dc6200058f565b5b02179055506001600a819055506200021460405180608001604052806059815260200162005c8460599139620002e860201b60201c565b620006b4565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f86200021a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031e6200039360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036e9062000504565b60405180910390fd5b80601190805190602001906200038f929190620003bd565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003cb9062000559565b90600052602060002090601f016020900481019282620003ef57600085556200043b565b82601f106200040a57805160ff19168380011785556200043b565b828001600101855582156200043b579182015b828111156200043a5782518255916020019190600101906200041d565b5b5090506200044a91906200044e565b5090565b5b80821115620004695760008160009055506001016200044f565b5090565b60006200047c60278362000548565b91506200048982620005ed565b604082019050919050565b6000620004a360208362000548565b9150620004b0826200063c565b602082019050919050565b6000620004ca602e8362000548565b9150620004d78262000665565b604082019050919050565b60006020820190508181036000830152620004fd816200046d565b9050919050565b600060208201905081810360008301526200051f8162000494565b9050919050565b600060208201905081810360008301526200054181620004bb565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200057257607f821691505b60208210811415620005895762000588620005be565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161559f620006e560003960008181612daf01528181612dd801526133dd01526000505061559f6000f3fe60806040526004361061023a5760003560e01c806355f804b31161012e57806390fd50ca116100ab578063c87b56dd1161006f578063c87b56dd14610831578063d7224ba01461086e578063e985e9c514610899578063f2fde38b146108d6578063f51f96dd146108ff5761023a565b806390fd50ca1461076257806395d89b411461078b5780639fd7e63d146107b6578063a22cb465146107df578063b88d4fde146108085761023a565b8063714c5398116100f2578063714c5398146106cf578063715018a6146106fa578063853828b6146107115780638aa423021461071b5780638da5cb5b146107375761023a565b806355f804b3146105d85780635a67de0714610601578063603f4d521461062a5780636352211e1461065557806370a08231146106925761023a565b806323b872dd116101bc57806342842e0e1161018057806342842e0e146104f35780634371f1dc1461051c5780634c0f38c2146105455780634f6ccce71461057057806352d2e512146105ad5761023a565b806323b872dd146103fe5780632e3fd2ac146104275780632f289997146104645780632f745c591461048d5780633fcf79dc146104ca5761023a565b80630ea1b511116102035780630ea1b51114610338578063178a85691461036357806318160ddd1461037f5780631b7318cf146103aa578063233f5066146103d55761023a565b80620e7fa81461023f57806301ffc9a71461026a57806306fdde03146102a7578063081812fc146102d2578063095ea7b31461030f575b600080fd5b34801561024b57600080fd5b5061025461092a565b6040516102619190614790565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190613d0f565b610930565b60405161029e91906143b8565b60405180910390f35b3480156102b357600080fd5b506102bc610a7a565b6040516102c991906143ee565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190613ddf565b610b0c565b6040516103069190614351565b60405180910390f35b34801561031b57600080fd5b5061033660048036038101906103319190613c86565b610b91565b005b34801561034457600080fd5b5061034d610caa565b60405161035a9190614790565b60405180910390f35b61037d60048036038101906103789190613ddf565b610cb4565b005b34801561038b57600080fd5b50610394610e53565b6040516103a19190614790565b60405180910390f35b3480156103b657600080fd5b506103bf610e5c565b6040516103cc9190614790565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613b03565b610e66565b005b34801561040a57600080fd5b5061042560048036038101906104209190613b70565b610f3d565b005b34801561043357600080fd5b5061044e60048036038101906104499190613b03565b610f4d565b60405161045b91906143b8565b60405180910390f35b34801561047057600080fd5b5061048b60048036038101906104869190613cc6565b610fa3565b005b34801561049957600080fd5b506104b460048036038101906104af9190613c86565b611186565b6040516104c19190614790565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613e0c565b611384565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190613b70565b611485565b005b34801561052857600080fd5b50610543600480360381019061053e9190613cc6565b6114a5565b005b34801561055157600080fd5b5061055a6116f9565b6040516105679190614790565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190613ddf565b611703565b6040516105a49190614790565b60405180910390f35b3480156105b957600080fd5b506105c2611756565b6040516105cf9190614790565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613d96565b611760565b005b34801561060d57600080fd5b5061062860048036038101906106239190613d69565b6117f6565b005b34801561063657600080fd5b5061063f61189f565b60405161064c91906143d3565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613ddf565b6118b2565b6040516106899190614351565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190613b03565b6118c8565b6040516106c69190614790565b60405180910390f35b3480156106db57600080fd5b506106e46119b1565b6040516106f191906143ee565b60405180910390f35b34801561070657600080fd5b5061070f611a43565b005b610719611acb565b005b61073560048036038101906107309190613ddf565b611bdd565b005b34801561074357600080fd5b5061074c611eaa565b6040516107599190614351565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613ddf565b611ed4565b005b34801561079757600080fd5b506107a0611f5a565b6040516107ad91906143ee565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613ddf565b611fec565b005b3480156107eb57600080fd5b5061080660048036038101906108019190613c46565b61225c565b005b34801561081457600080fd5b5061082f600480360381019061082a9190613bc3565b6123dd565b005b34801561083d57600080fd5b5061085860048036038101906108539190613ddf565b612439565b60405161086591906143ee565b60405180910390f35b34801561087a57600080fd5b506108836124bb565b6040516108909190614790565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190613b30565b6124c1565b6040516108cd91906143b8565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f89190613b03565b612555565b005b34801561090b57600080fd5b5061091461264d565b6040516109219190614790565b60405180910390f35b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a6357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a735750610a7282612653565b5b9050919050565b606060018054610a8990614b51565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab590614b51565b8015610b025780601f10610ad757610100808354040283529160200191610b02565b820191906000526020600020905b815481529060010190602001808311610ae557829003601f168201915b5050505050905090565b6000610b17826126bd565b610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90614730565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9c826118b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490614630565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c2c6126ca565b73ffffffffffffffffffffffffffffffffffffffff161480610c5b5750610c5a81610c556126ca565b6124c1565b5b610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c91906144f0565b60405180910390fd5b610ca58383836126d2565b505050565b6000601054905090565b60026009541415610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf1906146f0565b60405180910390fd5b6002600981905550600280811115610d1557610d14614c8c565b5b601260009054906101000a900460ff166002811115610d3757610d36614c8c565b5b14610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e90614470565b60405180910390fd5b80600c54610d85919061496e565b341015610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906144d0565b60405180910390fd5b6001600e54610dd691906148e7565b600a5482610de491906148e7565b1115610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90614610565b60405180910390fd5b610e2f3382612784565b80600a6000828254610e4191906148e7565b92505081905550600160098190555050565b60008054905090565b6000600d54905090565b610e6e6126ca565b73ffffffffffffffffffffffffffffffffffffffff16610e8c611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990614590565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f488383836127a2565b505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fab6126ca565b73ffffffffffffffffffffffffffffffffffffffff16610fc9611eaa565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690614590565b60405180910390fd5b60005b8151811015611182576013600083838151811061104257611041614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661116f57601360008383815181106110ad576110ac614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156013600084848151811061111557611114614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b808061117a90614bb4565b915050611022565b5050565b6000611191836118c8565b82106111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990614410565b60405180910390fd5b60006111dc610e53565b905060008060005b83811015611342576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112d657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561132e578684141561131f57819550505050505061137e565b838061132a90614bb4565b9450505b50808061133a90614bb4565b9150506111e4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906146b0565b60405180910390fd5b92915050565b61138c6126ca565b73ffffffffffffffffffffffffffffffffffffffff166113aa611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614590565b60405180910390fd5b6001600e5461140f91906148e7565b600a548361141d91906148e7565b111561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614530565b60405180910390fd5b6114688183612784565b81600a600082825461147a91906148e7565b925050819055505050565b6114a0838383604051806020016040528060008152506123dd565b505050565b6114ad6126ca565b73ffffffffffffffffffffffffffffffffffffffff166114cb611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890614590565b60405180910390fd5b60005b81518110156116f55760016014600084848151811061154657611545614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159791906148e7565b92505081905550601360008383815181106115b5576115b4614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116e257601360008383815181106116205761161f614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156013600084848151811061168857611687614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80806116ed90614bb4565b915050611524565b5050565b6000600e54905090565b600061170d610e53565b821061174e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174590614490565b60405180910390fd5b819050919050565b6000600f54905090565b6117686126ca565b73ffffffffffffffffffffffffffffffffffffffff16611786611eaa565b73ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390614590565b60405180910390fd5b80601190805190602001906117f292919061382a565b5050565b6117fe6126ca565b73ffffffffffffffffffffffffffffffffffffffff1661181c611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990614590565b60405180910390fd5b80601260006101000a81548160ff0219169083600281111561189757611896614c8c565b5b021790555050565b601260009054906101000a900460ff1681565b60006118bd82612d5b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090614510565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060601180546119c090614b51565b80601f01602080910402602001604051908101604052809291908181526020018280546119ec90614b51565b8015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b5050505050905090565b611a4b6126ca565b73ffffffffffffffffffffffffffffffffffffffff16611a69611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690614590565b60405180910390fd5b611ac96000612f5e565b565b611ad36126ca565b73ffffffffffffffffffffffffffffffffffffffff16611af1611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614590565b60405180910390fd5b60026009541415611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906146f0565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611bd357600080fd5b6001600981905550565b60026009541415611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906146f0565b60405180910390fd5b600260098190555060016002811115611c3f57611c3e614c8c565b5b601260009054906101000a900460ff166002811115611c6157611c60614c8c565b5b14611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890614470565b60405180910390fd5b600f5481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cef91906148e7565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614750565b60405180910390fd5b611d3933610f4d565b611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f906146d0565b60405180910390fd5b6001600d54611d8791906148e7565b600a5482611d9591906148e7565b1115611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614610565b60405180910390fd5b80600b54611de4919061496e565b341015611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90614550565b60405180910390fd5b611e303382612784565b80600a6000828254611e4291906148e7565b9250508190555080601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9891906148e7565b92505081905550600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611edc6126ca565b73ffffffffffffffffffffffffffffffffffffffff16611efa611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790614590565b60405180910390fd5b80600f8190555050565b606060028054611f6990614b51565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9590614b51565b8015611fe25780601f10611fb757610100808354040283529160200191611fe2565b820191906000526020600020905b815481529060010190602001808311611fc557829003601f168201915b5050505050905090565b60026009541415612032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612029906146f0565b60405180910390fd5b60026009819055506001600281111561204e5761204d614c8c565b5b601260009054906101000a900460ff1660028111156120705761206f614c8c565b5b146120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790614470565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614750565b60405180910390fd5b61213b33610f4d565b61217a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612171906146d0565b60405180910390fd5b6001600d5461218991906148e7565b600a548261219791906148e7565b11156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614610565b60405180910390fd5b6121e23382612784565b80600a60008282546121f491906148e7565b9250508190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224a91906149fc565b92505081905550600160098190555050565b6122646126ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c9906145d0565b60405180910390fd5b80600660006122df6126ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661238c6126ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123d191906143b8565b60405180910390a35050565b6123e88484846127a2565b6123f484848484613024565b612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614650565b60405180910390fd5b50505050565b6060612444826126bd565b612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a906145b0565b60405180910390fd5b61248b6119b1565b612494836131bb565b6040516020016124a5929190614322565b6040516020818303038152906040529050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61255d6126ca565b73ffffffffffffffffffffffffffffffffffffffff1661257b611eaa565b73ffffffffffffffffffffffffffffffffffffffff16146125d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c890614590565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890614430565b60405180910390fd5b61264a81612f5e565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61279e82826040518060200160405280600081525061331c565b5050565b60006127ad82612d5b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127d46126ca565b73ffffffffffffffffffffffffffffffffffffffff16148061283057506127f96126ca565b73ffffffffffffffffffffffffffffffffffffffff1661281884610b0c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061284c575061284b82600001516128466126ca565b6124c1565b5b90508061288e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612885906145f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614570565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612967906144b0565b60405180910390fd5b61297d85858560016137fb565b61298d60008484600001516126d2565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129fb91906149c8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a9f91906148a1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612ba591906148e7565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ceb57612c1b816126bd565b15612cea576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d538686866001613801565b505050505050565b612d636138b0565b612d6c826126bd565b612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da290614450565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612e0f5760017f000000000000000000000000000000000000000000000000000000000000000084612e0291906149fc565b612e0c91906148e7565b90505b60008390505b818110612f1d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f0957809350505050612f59565b508080612f1590614b27565b915050612e15565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5090614710565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130458473ffffffffffffffffffffffffffffffffffffffff16613807565b156131ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261306e6126ca565b8786866040518563ffffffff1660e01b8152600401613090949392919061436c565b602060405180830381600087803b1580156130aa57600080fd5b505af19250505080156130db57506040513d601f19601f820116820180604052508101906130d89190613d3c565b60015b61315e573d806000811461310b576040519150601f19603f3d011682016040523d82523d6000602084013e613110565b606091505b50600081511415613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614650565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131b3565b600190505b949350505050565b60606000821415613203576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613317565b600082905060005b6000821461323557808061321e90614bb4565b915050600a8261322e919061493d565b915061320b565b60008167ffffffffffffffff81111561325157613250614d19565b5b6040519080825280601f01601f1916602001820160405280156132835781602001600182028036833780820191505090505b5090505b600085146133105760018261329c91906149fc565b9150600a856132ab9190614bfd565b60306132b791906148e7565b60f81b8183815181106132cd576132cc614cea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613309919061493d565b9450613287565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338990614690565b60405180910390fd5b61339b816126bd565b156133db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d290614670565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561343e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343590614770565b60405180910390fd5b61344b60008583866137fb565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161354891906148a1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161356f91906148a1565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156137de57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461377e6000888488613024565b6137bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b490614650565b60405180910390fd5b81806137c890614bb4565b92505080806137d690614bb4565b91505061370d565b50806000819055506137f36000878588613801565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461383690614b51565b90600052602060002090601f016020900481019282613858576000855561389f565b82601f1061387157805160ff191683800117855561389f565b8280016001018555821561389f579182015b8281111561389e578251825591602001919060010190613883565b5b5090506138ac91906138ea565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156139035760008160009055506001016138eb565b5090565b600061391a613915846147d0565b6147ab565b9050808382526020820190508285602086028201111561393d5761393c614d4d565b5b60005b8581101561396d578161395388826139fb565b845260208401935060208301925050600181019050613940565b5050509392505050565b600061398a613985846147fc565b6147ab565b9050828152602081018484840111156139a6576139a5614d52565b5b6139b1848285614ae5565b509392505050565b60006139cc6139c78461482d565b6147ab565b9050828152602081018484840111156139e8576139e7614d52565b5b6139f3848285614ae5565b509392505050565b600081359050613a0a816154fd565b92915050565b600082601f830112613a2557613a24614d48565b5b8135613a35848260208601613907565b91505092915050565b600081359050613a4d81615514565b92915050565b600081359050613a628161552b565b92915050565b600081519050613a778161552b565b92915050565b600082601f830112613a9257613a91614d48565b5b8135613aa2848260208601613977565b91505092915050565b600081359050613aba81615542565b92915050565b600082601f830112613ad557613ad4614d48565b5b8135613ae58482602086016139b9565b91505092915050565b600081359050613afd81615552565b92915050565b600060208284031215613b1957613b18614d5c565b5b6000613b27848285016139fb565b91505092915050565b60008060408385031215613b4757613b46614d5c565b5b6000613b55858286016139fb565b9250506020613b66858286016139fb565b9150509250929050565b600080600060608486031215613b8957613b88614d5c565b5b6000613b97868287016139fb565b9350506020613ba8868287016139fb565b9250506040613bb986828701613aee565b9150509250925092565b60008060008060808587031215613bdd57613bdc614d5c565b5b6000613beb878288016139fb565b9450506020613bfc878288016139fb565b9350506040613c0d87828801613aee565b925050606085013567ffffffffffffffff811115613c2e57613c2d614d57565b5b613c3a87828801613a7d565b91505092959194509250565b60008060408385031215613c5d57613c5c614d5c565b5b6000613c6b858286016139fb565b9250506020613c7c85828601613a3e565b9150509250929050565b60008060408385031215613c9d57613c9c614d5c565b5b6000613cab858286016139fb565b9250506020613cbc85828601613aee565b9150509250929050565b600060208284031215613cdc57613cdb614d5c565b5b600082013567ffffffffffffffff811115613cfa57613cf9614d57565b5b613d0684828501613a10565b91505092915050565b600060208284031215613d2557613d24614d5c565b5b6000613d3384828501613a53565b91505092915050565b600060208284031215613d5257613d51614d5c565b5b6000613d6084828501613a68565b91505092915050565b600060208284031215613d7f57613d7e614d5c565b5b6000613d8d84828501613aab565b91505092915050565b600060208284031215613dac57613dab614d5c565b5b600082013567ffffffffffffffff811115613dca57613dc9614d57565b5b613dd684828501613ac0565b91505092915050565b600060208284031215613df557613df4614d5c565b5b6000613e0384828501613aee565b91505092915050565b60008060408385031215613e2357613e22614d5c565b5b6000613e3185828601613aee565b9250506020613e42858286016139fb565b9150509250929050565b613e5581614a30565b82525050565b613e6481614a42565b82525050565b6000613e758261485e565b613e7f8185614874565b9350613e8f818560208601614af4565b613e9881614d61565b840191505092915050565b613eac81614ad3565b82525050565b6000613ebd82614869565b613ec78185614885565b9350613ed7818560208601614af4565b613ee081614d61565b840191505092915050565b6000613ef682614869565b613f008185614896565b9350613f10818560208601614af4565b80840191505092915050565b6000613f29602283614885565b9150613f3482614d72565b604082019050919050565b6000613f4c602683614885565b9150613f5782614dc1565b604082019050919050565b6000613f6f602a83614885565b9150613f7a82614e10565b604082019050919050565b6000613f92601483614885565b9150613f9d82614e5f565b602082019050919050565b6000613fb5602383614885565b9150613fc082614e88565b604082019050919050565b6000613fd8602583614885565b9150613fe382614ed7565b604082019050919050565b6000613ffb601f83614885565b915061400682614f26565b602082019050919050565b600061401e603983614885565b915061402982614f4f565b604082019050919050565b6000614041602b83614885565b915061404c82614f9e565b604082019050919050565b6000614064601e83614885565b915061406f82614fed565b602082019050919050565b6000614087601b83614885565b915061409282615016565b602082019050919050565b60006140aa602683614885565b91506140b58261503f565b604082019050919050565b60006140cd600583614896565b91506140d88261508e565b600582019050919050565b60006140f0602083614885565b91506140fb826150b7565b602082019050919050565b6000614113602f83614885565b915061411e826150e0565b604082019050919050565b6000614136601a83614885565b91506141418261512f565b602082019050919050565b6000614159603283614885565b915061416482615158565b604082019050919050565b600061417c602183614885565b9150614187826151a7565b604082019050919050565b600061419f602283614885565b91506141aa826151f6565b604082019050919050565b60006141c2603383614885565b91506141cd82615245565b604082019050919050565b60006141e5601d83614885565b91506141f082615294565b602082019050919050565b6000614208602183614885565b9150614213826152bd565b604082019050919050565b600061422b602e83614885565b91506142368261530c565b604082019050919050565b600061424e603e83614885565b91506142598261535b565b604082019050919050565b6000614271601f83614885565b915061427c826153aa565b602082019050919050565b6000614294602f83614885565b915061429f826153d3565b604082019050919050565b60006142b7602d83614885565b91506142c282615422565b604082019050919050565b60006142da601e83614885565b91506142e582615471565b602082019050919050565b60006142fd602283614885565b91506143088261549a565b604082019050919050565b61431c81614ac9565b82525050565b600061432e8285613eeb565b915061433a8284613eeb565b9150614345826140c0565b91508190509392505050565b60006020820190506143666000830184613e4c565b92915050565b60006080820190506143816000830187613e4c565b61438e6020830186613e4c565b61439b6040830185614313565b81810360608301526143ad8184613e6a565b905095945050505050565b60006020820190506143cd6000830184613e5b565b92915050565b60006020820190506143e86000830184613ea3565b92915050565b600060208201905081810360008301526144088184613eb2565b905092915050565b6000602082019050818103600083015261442981613f1c565b9050919050565b6000602082019050818103600083015261444981613f3f565b9050919050565b6000602082019050818103600083015261446981613f62565b9050919050565b6000602082019050818103600083015261448981613f85565b9050919050565b600060208201905081810360008301526144a981613fa8565b9050919050565b600060208201905081810360008301526144c981613fcb565b9050919050565b600060208201905081810360008301526144e981613fee565b9050919050565b6000602082019050818103600083015261450981614011565b9050919050565b6000602082019050818103600083015261452981614034565b9050919050565b6000602082019050818103600083015261454981614057565b9050919050565b600060208201905081810360008301526145698161407a565b9050919050565b600060208201905081810360008301526145898161409d565b9050919050565b600060208201905081810360008301526145a9816140e3565b9050919050565b600060208201905081810360008301526145c981614106565b9050919050565b600060208201905081810360008301526145e981614129565b9050919050565b600060208201905081810360008301526146098161414c565b9050919050565b600060208201905081810360008301526146298161416f565b9050919050565b6000602082019050818103600083015261464981614192565b9050919050565b60006020820190508181036000830152614669816141b5565b9050919050565b60006020820190508181036000830152614689816141d8565b9050919050565b600060208201905081810360008301526146a9816141fb565b9050919050565b600060208201905081810360008301526146c98161421e565b9050919050565b600060208201905081810360008301526146e981614241565b9050919050565b6000602082019050818103600083015261470981614264565b9050919050565b6000602082019050818103600083015261472981614287565b9050919050565b60006020820190508181036000830152614749816142aa565b9050919050565b60006020820190508181036000830152614769816142cd565b9050919050565b60006020820190508181036000830152614789816142f0565b9050919050565b60006020820190506147a56000830184614313565b92915050565b60006147b56147c6565b90506147c18282614b83565b919050565b6000604051905090565b600067ffffffffffffffff8211156147eb576147ea614d19565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561481757614816614d19565b5b61482082614d61565b9050602081019050919050565b600067ffffffffffffffff82111561484857614847614d19565b5b61485182614d61565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ac82614a8d565b91506148b783614a8d565b9250826fffffffffffffffffffffffffffffffff038211156148dc576148db614c2e565b5b828201905092915050565b60006148f282614ac9565b91506148fd83614ac9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561493257614931614c2e565b5b828201905092915050565b600061494882614ac9565b915061495383614ac9565b92508261496357614962614c5d565b5b828204905092915050565b600061497982614ac9565b915061498483614ac9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149bd576149bc614c2e565b5b828202905092915050565b60006149d382614a8d565b91506149de83614a8d565b9250828210156149f1576149f0614c2e565b5b828203905092915050565b6000614a0782614ac9565b9150614a1283614ac9565b925082821015614a2557614a24614c2e565b5b828203905092915050565b6000614a3b82614aa9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614a88826154e9565b919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614ade82614a7a565b9050919050565b82818337600083830152505050565b60005b83811015614b12578082015181840152602081019050614af7565b83811115614b21576000848401525b50505050565b6000614b3282614ac9565b91506000821415614b4657614b45614c2e565b5b600182039050919050565b60006002820490506001821680614b6957607f821691505b60208210811415614b7d57614b7c614cbb565b5b50919050565b614b8c82614d61565b810181811067ffffffffffffffff82111715614bab57614baa614d19565b5b80604052505050565b6000614bbf82614ac9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bf257614bf1614c2e565b5b600182019050919050565b6000614c0882614ac9565b9150614c1383614ac9565b925082614c2357614c22614c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420796574206f70656e000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f52616e206f7574206f66204e46547320666f722073616c652120537279210000600082015250565b7f45746865722076616c75652073656e7420697320746f6f206c6f770000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f52616e206f7574206f66204e46547320666f722070726573616c65212053727960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f57616c6c65742069736e7420696e2070726573616c652120546865206f776e6560008201527f72206e6565647320746f2061646457616c6c6574546f50726573616c652e0000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4d61782072656163686564207065722070726573616c652077616c6c65740000600082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600381106154fa576154f9614c8c565b5b50565b61550681614a30565b811461551157600080fd5b50565b61551d81614a42565b811461552857600080fd5b50565b61553481614a4e565b811461553f57600080fd5b50565b6003811061554f57600080fd5b50565b61555b81614ac9565b811461556657600080fd5b5056fea2646970667358221220ad1a6256f7de95576ea791f677529dcd36100c39e02069b0359c2a61df9f798a64736f6c6343000807003368747470733a2f2f6d6670726f64756374696f6e732e6d7970696e6174612e636c6f75642f697066732f516d655a39644b584346444a4b4a363358394251375352717036437266383178467847566b6b41774b6b5353766f2f

Deployed Bytecode

0x60806040526004361061023a5760003560e01c806355f804b31161012e57806390fd50ca116100ab578063c87b56dd1161006f578063c87b56dd14610831578063d7224ba01461086e578063e985e9c514610899578063f2fde38b146108d6578063f51f96dd146108ff5761023a565b806390fd50ca1461076257806395d89b411461078b5780639fd7e63d146107b6578063a22cb465146107df578063b88d4fde146108085761023a565b8063714c5398116100f2578063714c5398146106cf578063715018a6146106fa578063853828b6146107115780638aa423021461071b5780638da5cb5b146107375761023a565b806355f804b3146105d85780635a67de0714610601578063603f4d521461062a5780636352211e1461065557806370a08231146106925761023a565b806323b872dd116101bc57806342842e0e1161018057806342842e0e146104f35780634371f1dc1461051c5780634c0f38c2146105455780634f6ccce71461057057806352d2e512146105ad5761023a565b806323b872dd146103fe5780632e3fd2ac146104275780632f289997146104645780632f745c591461048d5780633fcf79dc146104ca5761023a565b80630ea1b511116102035780630ea1b51114610338578063178a85691461036357806318160ddd1461037f5780631b7318cf146103aa578063233f5066146103d55761023a565b80620e7fa81461023f57806301ffc9a71461026a57806306fdde03146102a7578063081812fc146102d2578063095ea7b31461030f575b600080fd5b34801561024b57600080fd5b5061025461092a565b6040516102619190614790565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190613d0f565b610930565b60405161029e91906143b8565b60405180910390f35b3480156102b357600080fd5b506102bc610a7a565b6040516102c991906143ee565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190613ddf565b610b0c565b6040516103069190614351565b60405180910390f35b34801561031b57600080fd5b5061033660048036038101906103319190613c86565b610b91565b005b34801561034457600080fd5b5061034d610caa565b60405161035a9190614790565b60405180910390f35b61037d60048036038101906103789190613ddf565b610cb4565b005b34801561038b57600080fd5b50610394610e53565b6040516103a19190614790565b60405180910390f35b3480156103b657600080fd5b506103bf610e5c565b6040516103cc9190614790565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613b03565b610e66565b005b34801561040a57600080fd5b5061042560048036038101906104209190613b70565b610f3d565b005b34801561043357600080fd5b5061044e60048036038101906104499190613b03565b610f4d565b60405161045b91906143b8565b60405180910390f35b34801561047057600080fd5b5061048b60048036038101906104869190613cc6565b610fa3565b005b34801561049957600080fd5b506104b460048036038101906104af9190613c86565b611186565b6040516104c19190614790565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613e0c565b611384565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190613b70565b611485565b005b34801561052857600080fd5b50610543600480360381019061053e9190613cc6565b6114a5565b005b34801561055157600080fd5b5061055a6116f9565b6040516105679190614790565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190613ddf565b611703565b6040516105a49190614790565b60405180910390f35b3480156105b957600080fd5b506105c2611756565b6040516105cf9190614790565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613d96565b611760565b005b34801561060d57600080fd5b5061062860048036038101906106239190613d69565b6117f6565b005b34801561063657600080fd5b5061063f61189f565b60405161064c91906143d3565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613ddf565b6118b2565b6040516106899190614351565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190613b03565b6118c8565b6040516106c69190614790565b60405180910390f35b3480156106db57600080fd5b506106e46119b1565b6040516106f191906143ee565b60405180910390f35b34801561070657600080fd5b5061070f611a43565b005b610719611acb565b005b61073560048036038101906107309190613ddf565b611bdd565b005b34801561074357600080fd5b5061074c611eaa565b6040516107599190614351565b60405180910390f35b34801561076e57600080fd5b5061078960048036038101906107849190613ddf565b611ed4565b005b34801561079757600080fd5b506107a0611f5a565b6040516107ad91906143ee565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613ddf565b611fec565b005b3480156107eb57600080fd5b5061080660048036038101906108019190613c46565b61225c565b005b34801561081457600080fd5b5061082f600480360381019061082a9190613bc3565b6123dd565b005b34801561083d57600080fd5b5061085860048036038101906108539190613ddf565b612439565b60405161086591906143ee565b60405180910390f35b34801561087a57600080fd5b506108836124bb565b6040516108909190614790565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190613b30565b6124c1565b6040516108cd91906143b8565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f89190613b03565b612555565b005b34801561090b57600080fd5b5061091461264d565b6040516109219190614790565b60405180910390f35b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a6357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a735750610a7282612653565b5b9050919050565b606060018054610a8990614b51565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab590614b51565b8015610b025780601f10610ad757610100808354040283529160200191610b02565b820191906000526020600020905b815481529060010190602001808311610ae557829003601f168201915b5050505050905090565b6000610b17826126bd565b610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d90614730565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9c826118b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490614630565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c2c6126ca565b73ffffffffffffffffffffffffffffffffffffffff161480610c5b5750610c5a81610c556126ca565b6124c1565b5b610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c91906144f0565b60405180910390fd5b610ca58383836126d2565b505050565b6000601054905090565b60026009541415610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf1906146f0565b60405180910390fd5b6002600981905550600280811115610d1557610d14614c8c565b5b601260009054906101000a900460ff166002811115610d3757610d36614c8c565b5b14610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e90614470565b60405180910390fd5b80600c54610d85919061496e565b341015610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906144d0565b60405180910390fd5b6001600e54610dd691906148e7565b600a5482610de491906148e7565b1115610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90614610565b60405180910390fd5b610e2f3382612784565b80600a6000828254610e4191906148e7565b92505081905550600160098190555050565b60008054905090565b6000600d54905090565b610e6e6126ca565b73ffffffffffffffffffffffffffffffffffffffff16610e8c611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990614590565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f488383836127a2565b505050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fab6126ca565b73ffffffffffffffffffffffffffffffffffffffff16610fc9611eaa565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690614590565b60405180910390fd5b60005b8151811015611182576013600083838151811061104257611041614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661116f57601360008383815181106110ad576110ac614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156013600084848151811061111557611114614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b808061117a90614bb4565b915050611022565b5050565b6000611191836118c8565b82106111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990614410565b60405180910390fd5b60006111dc610e53565b905060008060005b83811015611342576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146112d657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561132e578684141561131f57819550505050505061137e565b838061132a90614bb4565b9450505b50808061133a90614bb4565b9150506111e4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906146b0565b60405180910390fd5b92915050565b61138c6126ca565b73ffffffffffffffffffffffffffffffffffffffff166113aa611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614590565b60405180910390fd5b6001600e5461140f91906148e7565b600a548361141d91906148e7565b111561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614530565b60405180910390fd5b6114688183612784565b81600a600082825461147a91906148e7565b925050819055505050565b6114a0838383604051806020016040528060008152506123dd565b505050565b6114ad6126ca565b73ffffffffffffffffffffffffffffffffffffffff166114cb611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890614590565b60405180910390fd5b60005b81518110156116f55760016014600084848151811061154657611545614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159791906148e7565b92505081905550601360008383815181106115b5576115b4614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116e257601360008383815181106116205761161f614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156013600084848151811061168857611687614cea565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80806116ed90614bb4565b915050611524565b5050565b6000600e54905090565b600061170d610e53565b821061174e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174590614490565b60405180910390fd5b819050919050565b6000600f54905090565b6117686126ca565b73ffffffffffffffffffffffffffffffffffffffff16611786611eaa565b73ffffffffffffffffffffffffffffffffffffffff16146117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390614590565b60405180910390fd5b80601190805190602001906117f292919061382a565b5050565b6117fe6126ca565b73ffffffffffffffffffffffffffffffffffffffff1661181c611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990614590565b60405180910390fd5b80601260006101000a81548160ff0219169083600281111561189757611896614c8c565b5b021790555050565b601260009054906101000a900460ff1681565b60006118bd82612d5b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090614510565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060601180546119c090614b51565b80601f01602080910402602001604051908101604052809291908181526020018280546119ec90614b51565b8015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b5050505050905090565b611a4b6126ca565b73ffffffffffffffffffffffffffffffffffffffff16611a69611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690614590565b60405180910390fd5b611ac96000612f5e565b565b611ad36126ca565b73ffffffffffffffffffffffffffffffffffffffff16611af1611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614590565b60405180910390fd5b60026009541415611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906146f0565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611bd357600080fd5b6001600981905550565b60026009541415611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906146f0565b60405180910390fd5b600260098190555060016002811115611c3f57611c3e614c8c565b5b601260009054906101000a900460ff166002811115611c6157611c60614c8c565b5b14611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890614470565b60405180910390fd5b600f5481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cef91906148e7565b1115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2790614750565b60405180910390fd5b611d3933610f4d565b611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f906146d0565b60405180910390fd5b6001600d54611d8791906148e7565b600a5482611d9591906148e7565b1115611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614610565b60405180910390fd5b80600b54611de4919061496e565b341015611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90614550565b60405180910390fd5b611e303382612784565b80600a6000828254611e4291906148e7565b9250508190555080601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9891906148e7565b92505081905550600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611edc6126ca565b73ffffffffffffffffffffffffffffffffffffffff16611efa611eaa565b73ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790614590565b60405180910390fd5b80600f8190555050565b606060028054611f6990614b51565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9590614b51565b8015611fe25780601f10611fb757610100808354040283529160200191611fe2565b820191906000526020600020905b815481529060010190602001808311611fc557829003601f168201915b5050505050905090565b60026009541415612032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612029906146f0565b60405180910390fd5b60026009819055506001600281111561204e5761204d614c8c565b5b601260009054906101000a900460ff1660028111156120705761206f614c8c565b5b146120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790614470565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614750565b60405180910390fd5b61213b33610f4d565b61217a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612171906146d0565b60405180910390fd5b6001600d5461218991906148e7565b600a548261219791906148e7565b11156121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614610565b60405180910390fd5b6121e23382612784565b80600a60008282546121f491906148e7565b9250508190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224a91906149fc565b92505081905550600160098190555050565b6122646126ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c9906145d0565b60405180910390fd5b80600660006122df6126ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661238c6126ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123d191906143b8565b60405180910390a35050565b6123e88484846127a2565b6123f484848484613024565b612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614650565b60405180910390fd5b50505050565b6060612444826126bd565b612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a906145b0565b60405180910390fd5b61248b6119b1565b612494836131bb565b6040516020016124a5929190614322565b6040516020818303038152906040529050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61255d6126ca565b73ffffffffffffffffffffffffffffffffffffffff1661257b611eaa565b73ffffffffffffffffffffffffffffffffffffffff16146125d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c890614590565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890614430565b60405180910390fd5b61264a81612f5e565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61279e82826040518060200160405280600081525061331c565b5050565b60006127ad82612d5b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127d46126ca565b73ffffffffffffffffffffffffffffffffffffffff16148061283057506127f96126ca565b73ffffffffffffffffffffffffffffffffffffffff1661281884610b0c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061284c575061284b82600001516128466126ca565b6124c1565b5b90508061288e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612885906145f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614570565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612967906144b0565b60405180910390fd5b61297d85858560016137fb565b61298d60008484600001516126d2565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129fb91906149c8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a9f91906148a1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612ba591906148e7565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ceb57612c1b816126bd565b15612cea576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d538686866001613801565b505050505050565b612d636138b0565b612d6c826126bd565b612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da290614450565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000198310612e0f5760017f000000000000000000000000000000000000000000000000000000000000001984612e0291906149fc565b612e0c91906148e7565b90505b60008390505b818110612f1d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f0957809350505050612f59565b508080612f1590614b27565b915050612e15565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5090614710565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130458473ffffffffffffffffffffffffffffffffffffffff16613807565b156131ae578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261306e6126ca565b8786866040518563ffffffff1660e01b8152600401613090949392919061436c565b602060405180830381600087803b1580156130aa57600080fd5b505af19250505080156130db57506040513d601f19601f820116820180604052508101906130d89190613d3c565b60015b61315e573d806000811461310b576040519150601f19603f3d011682016040523d82523d6000602084013e613110565b606091505b50600081511415613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614650565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131b3565b600190505b949350505050565b60606000821415613203576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613317565b600082905060005b6000821461323557808061321e90614bb4565b915050600a8261322e919061493d565b915061320b565b60008167ffffffffffffffff81111561325157613250614d19565b5b6040519080825280601f01601f1916602001820160405280156132835781602001600182028036833780820191505090505b5090505b600085146133105760018261329c91906149fc565b9150600a856132ab9190614bfd565b60306132b791906148e7565b60f81b8183815181106132cd576132cc614cea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613309919061493d565b9450613287565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338990614690565b60405180910390fd5b61339b816126bd565b156133db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d290614670565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000001983111561343e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343590614770565b60405180910390fd5b61344b60008583866137fb565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161354891906148a1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161356f91906148a1565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156137de57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461377e6000888488613024565b6137bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b490614650565b60405180910390fd5b81806137c890614bb4565b92505080806137d690614bb4565b91505061370d565b50806000819055506137f36000878588613801565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461383690614b51565b90600052602060002090601f016020900481019282613858576000855561389f565b82601f1061387157805160ff191683800117855561389f565b8280016001018555821561389f579182015b8281111561389e578251825591602001919060010190613883565b5b5090506138ac91906138ea565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156139035760008160009055506001016138eb565b5090565b600061391a613915846147d0565b6147ab565b9050808382526020820190508285602086028201111561393d5761393c614d4d565b5b60005b8581101561396d578161395388826139fb565b845260208401935060208301925050600181019050613940565b5050509392505050565b600061398a613985846147fc565b6147ab565b9050828152602081018484840111156139a6576139a5614d52565b5b6139b1848285614ae5565b509392505050565b60006139cc6139c78461482d565b6147ab565b9050828152602081018484840111156139e8576139e7614d52565b5b6139f3848285614ae5565b509392505050565b600081359050613a0a816154fd565b92915050565b600082601f830112613a2557613a24614d48565b5b8135613a35848260208601613907565b91505092915050565b600081359050613a4d81615514565b92915050565b600081359050613a628161552b565b92915050565b600081519050613a778161552b565b92915050565b600082601f830112613a9257613a91614d48565b5b8135613aa2848260208601613977565b91505092915050565b600081359050613aba81615542565b92915050565b600082601f830112613ad557613ad4614d48565b5b8135613ae58482602086016139b9565b91505092915050565b600081359050613afd81615552565b92915050565b600060208284031215613b1957613b18614d5c565b5b6000613b27848285016139fb565b91505092915050565b60008060408385031215613b4757613b46614d5c565b5b6000613b55858286016139fb565b9250506020613b66858286016139fb565b9150509250929050565b600080600060608486031215613b8957613b88614d5c565b5b6000613b97868287016139fb565b9350506020613ba8868287016139fb565b9250506040613bb986828701613aee565b9150509250925092565b60008060008060808587031215613bdd57613bdc614d5c565b5b6000613beb878288016139fb565b9450506020613bfc878288016139fb565b9350506040613c0d87828801613aee565b925050606085013567ffffffffffffffff811115613c2e57613c2d614d57565b5b613c3a87828801613a7d565b91505092959194509250565b60008060408385031215613c5d57613c5c614d5c565b5b6000613c6b858286016139fb565b9250506020613c7c85828601613a3e565b9150509250929050565b60008060408385031215613c9d57613c9c614d5c565b5b6000613cab858286016139fb565b9250506020613cbc85828601613aee565b9150509250929050565b600060208284031215613cdc57613cdb614d5c565b5b600082013567ffffffffffffffff811115613cfa57613cf9614d57565b5b613d0684828501613a10565b91505092915050565b600060208284031215613d2557613d24614d5c565b5b6000613d3384828501613a53565b91505092915050565b600060208284031215613d5257613d51614d5c565b5b6000613d6084828501613a68565b91505092915050565b600060208284031215613d7f57613d7e614d5c565b5b6000613d8d84828501613aab565b91505092915050565b600060208284031215613dac57613dab614d5c565b5b600082013567ffffffffffffffff811115613dca57613dc9614d57565b5b613dd684828501613ac0565b91505092915050565b600060208284031215613df557613df4614d5c565b5b6000613e0384828501613aee565b91505092915050565b60008060408385031215613e2357613e22614d5c565b5b6000613e3185828601613aee565b9250506020613e42858286016139fb565b9150509250929050565b613e5581614a30565b82525050565b613e6481614a42565b82525050565b6000613e758261485e565b613e7f8185614874565b9350613e8f818560208601614af4565b613e9881614d61565b840191505092915050565b613eac81614ad3565b82525050565b6000613ebd82614869565b613ec78185614885565b9350613ed7818560208601614af4565b613ee081614d61565b840191505092915050565b6000613ef682614869565b613f008185614896565b9350613f10818560208601614af4565b80840191505092915050565b6000613f29602283614885565b9150613f3482614d72565b604082019050919050565b6000613f4c602683614885565b9150613f5782614dc1565b604082019050919050565b6000613f6f602a83614885565b9150613f7a82614e10565b604082019050919050565b6000613f92601483614885565b9150613f9d82614e5f565b602082019050919050565b6000613fb5602383614885565b9150613fc082614e88565b604082019050919050565b6000613fd8602583614885565b9150613fe382614ed7565b604082019050919050565b6000613ffb601f83614885565b915061400682614f26565b602082019050919050565b600061401e603983614885565b915061402982614f4f565b604082019050919050565b6000614041602b83614885565b915061404c82614f9e565b604082019050919050565b6000614064601e83614885565b915061406f82614fed565b602082019050919050565b6000614087601b83614885565b915061409282615016565b602082019050919050565b60006140aa602683614885565b91506140b58261503f565b604082019050919050565b60006140cd600583614896565b91506140d88261508e565b600582019050919050565b60006140f0602083614885565b91506140fb826150b7565b602082019050919050565b6000614113602f83614885565b915061411e826150e0565b604082019050919050565b6000614136601a83614885565b91506141418261512f565b602082019050919050565b6000614159603283614885565b915061416482615158565b604082019050919050565b600061417c602183614885565b9150614187826151a7565b604082019050919050565b600061419f602283614885565b91506141aa826151f6565b604082019050919050565b60006141c2603383614885565b91506141cd82615245565b604082019050919050565b60006141e5601d83614885565b91506141f082615294565b602082019050919050565b6000614208602183614885565b9150614213826152bd565b604082019050919050565b600061422b602e83614885565b91506142368261530c565b604082019050919050565b600061424e603e83614885565b91506142598261535b565b604082019050919050565b6000614271601f83614885565b915061427c826153aa565b602082019050919050565b6000614294602f83614885565b915061429f826153d3565b604082019050919050565b60006142b7602d83614885565b91506142c282615422565b604082019050919050565b60006142da601e83614885565b91506142e582615471565b602082019050919050565b60006142fd602283614885565b91506143088261549a565b604082019050919050565b61431c81614ac9565b82525050565b600061432e8285613eeb565b915061433a8284613eeb565b9150614345826140c0565b91508190509392505050565b60006020820190506143666000830184613e4c565b92915050565b60006080820190506143816000830187613e4c565b61438e6020830186613e4c565b61439b6040830185614313565b81810360608301526143ad8184613e6a565b905095945050505050565b60006020820190506143cd6000830184613e5b565b92915050565b60006020820190506143e86000830184613ea3565b92915050565b600060208201905081810360008301526144088184613eb2565b905092915050565b6000602082019050818103600083015261442981613f1c565b9050919050565b6000602082019050818103600083015261444981613f3f565b9050919050565b6000602082019050818103600083015261446981613f62565b9050919050565b6000602082019050818103600083015261448981613f85565b9050919050565b600060208201905081810360008301526144a981613fa8565b9050919050565b600060208201905081810360008301526144c981613fcb565b9050919050565b600060208201905081810360008301526144e981613fee565b9050919050565b6000602082019050818103600083015261450981614011565b9050919050565b6000602082019050818103600083015261452981614034565b9050919050565b6000602082019050818103600083015261454981614057565b9050919050565b600060208201905081810360008301526145698161407a565b9050919050565b600060208201905081810360008301526145898161409d565b9050919050565b600060208201905081810360008301526145a9816140e3565b9050919050565b600060208201905081810360008301526145c981614106565b9050919050565b600060208201905081810360008301526145e981614129565b9050919050565b600060208201905081810360008301526146098161414c565b9050919050565b600060208201905081810360008301526146298161416f565b9050919050565b6000602082019050818103600083015261464981614192565b9050919050565b60006020820190508181036000830152614669816141b5565b9050919050565b60006020820190508181036000830152614689816141d8565b9050919050565b600060208201905081810360008301526146a9816141fb565b9050919050565b600060208201905081810360008301526146c98161421e565b9050919050565b600060208201905081810360008301526146e981614241565b9050919050565b6000602082019050818103600083015261470981614264565b9050919050565b6000602082019050818103600083015261472981614287565b9050919050565b60006020820190508181036000830152614749816142aa565b9050919050565b60006020820190508181036000830152614769816142cd565b9050919050565b60006020820190508181036000830152614789816142f0565b9050919050565b60006020820190506147a56000830184614313565b92915050565b60006147b56147c6565b90506147c18282614b83565b919050565b6000604051905090565b600067ffffffffffffffff8211156147eb576147ea614d19565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561481757614816614d19565b5b61482082614d61565b9050602081019050919050565b600067ffffffffffffffff82111561484857614847614d19565b5b61485182614d61565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ac82614a8d565b91506148b783614a8d565b9250826fffffffffffffffffffffffffffffffff038211156148dc576148db614c2e565b5b828201905092915050565b60006148f282614ac9565b91506148fd83614ac9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561493257614931614c2e565b5b828201905092915050565b600061494882614ac9565b915061495383614ac9565b92508261496357614962614c5d565b5b828204905092915050565b600061497982614ac9565b915061498483614ac9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149bd576149bc614c2e565b5b828202905092915050565b60006149d382614a8d565b91506149de83614a8d565b9250828210156149f1576149f0614c2e565b5b828203905092915050565b6000614a0782614ac9565b9150614a1283614ac9565b925082821015614a2557614a24614c2e565b5b828203905092915050565b6000614a3b82614aa9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614a88826154e9565b919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614ade82614a7a565b9050919050565b82818337600083830152505050565b60005b83811015614b12578082015181840152602081019050614af7565b83811115614b21576000848401525b50505050565b6000614b3282614ac9565b91506000821415614b4657614b45614c2e565b5b600182039050919050565b60006002820490506001821680614b6957607f821691505b60208210811415614b7d57614b7c614cbb565b5b50919050565b614b8c82614d61565b810181811067ffffffffffffffff82111715614bab57614baa614d19565b5b80604052505050565b6000614bbf82614ac9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bf257614bf1614c2e565b5b600182019050919050565b6000614c0882614ac9565b9150614c1383614ac9565b925082614c2357614c22614c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420796574206f70656e000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f52616e206f7574206f66204e46547320666f722073616c652120537279210000600082015250565b7f45746865722076616c75652073656e7420697320746f6f206c6f770000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f52616e206f7574206f66204e46547320666f722070726573616c65212053727960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f57616c6c65742069736e7420696e2070726573616c652120546865206f776e6560008201527f72206e6565647320746f2061646457616c6c6574546f50726573616c652e0000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4d61782072656163686564207065722070726573616c652077616c6c65740000600082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600381106154fa576154f9614c8c565b5b50565b61550681614a30565b811461551157600080fd5b50565b61551d81614a42565b811461552857600080fd5b50565b61553481614a4e565b811461553f57600080fd5b50565b6003811061554f57600080fd5b50565b61555b81614ac9565b811461556657600080fd5b5056fea2646970667358221220ad1a6256f7de95576ea791f677529dcd36100c39e02069b0359c2a61df9f798a64736f6c63430008070033

Deployed Bytecode Sourcemap

42760:5247:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42868:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30296:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32022:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33547:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33110:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45847:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45076:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28857:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45940:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46690:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34397:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46555:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47186:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29488:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45498:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34602:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46816:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45750:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29020:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46043:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47666:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46445:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43180:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31845:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30722:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47767:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7489:103;;;;;;;;;;;;;:::i;:::-;;47868:136;;;:::i;:::-;;43755:716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6838:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47518:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32177:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44479:589;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33815:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34822:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46158:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39237:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34152:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7747:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42922:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42868:47;;;;:::o;30296:370::-;30423:4;30468:25;30453:40;;;:11;:40;;;;:99;;;;30519:33;30504:48;;;:11;:48;;;;30453:99;:160;;;;30578:35;30563:50;;;:11;:50;;;;30453:160;:207;;;;30624:36;30648:11;30624:23;:36::i;:::-;30453:207;30439:221;;30296:370;;;:::o;32022:94::-;32076:13;32105:5;32098:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32022:94;:::o;33547:204::-;33615:7;33639:16;33647:7;33639;:16::i;:::-;33631:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33721:15;:24;33737:7;33721:24;;;;;;;;;;;;;;;;;;;;;33714:31;;33547:204;;;:::o;33110:379::-;33179:13;33195:24;33211:7;33195:15;:24::i;:::-;33179:40;;33240:5;33234:11;;:2;:11;;;;33226:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33325:5;33309:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33334:37;33351:5;33358:12;:10;:12::i;:::-;33334:16;:37::i;:::-;33309:62;33293:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33455:28;33464:2;33468:7;33477:5;33455:8;:28::i;:::-;33172:317;33110:379;;:::o;45847:87::-;45891:7;45918:8;;45911:15;;45847:87;:::o;45076:414::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;45178::::1;45165:31:::0;::::1;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:31;;;;;;;;:::i;:::-;;;45157:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45266:6;45254:9;;:18;;;;:::i;:::-;45240:9;:33;;45232:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45366:1;45356:9;;:11;;;;:::i;:::-;45338:12;;45329:6;:21;;;;:::i;:::-;45328:40;;45320:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;45419:29;45429:10;45441:6;45419:9;:29::i;:::-;45476:6;45460:12;;:22;;;;;;;:::i;:::-;;;;;;;;1768:1:::0;2722:7;:22;;;;45076:414;:::o;28857:94::-;28910:7;28933:12;;28926:19;;28857:94;:::o;45940:97::-;45989:7;46016:13;;46009:20;;45940:97;:::o;46690:120::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46798:4:::1;46764:21;:31;46786:8;46764:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;46690:120:::0;:::o;34397:142::-;34505:28;34515:4;34521:2;34525:7;34505:9;:28::i;:::-;34397:142;;;:::o;46555:129::-;46621:4;46645:21;:31;46667:8;46645:31;;;;;;;;;;;;;;;;;;;;;;;;;46638:38;;46555:129;;;:::o;47186:320::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47276:9:::1;47272:227;47295:10;:17;47291:1;:21;47272:227;;;47339:21;:36;47361:10;47372:1;47361:13;;;;;;;;:::i;:::-;;;;;;;;47339:36;;;;;;;;;;;;;;;;;;;;;;;;;47334:154;;47436:21;:36;47458:10;47469:1;47458:13;;;;;;;;:::i;:::-;;;;;;;;47436:36;;;;;;;;;;;;;;;;;;;;;;;;;47435:37;47396:21;:36;47418:10;47429:1;47418:13;;;;;;;;:::i;:::-;;;;;;;;47396:36;;;;;;;;;;;;;;;;:76;;;;;;;;;;;;;;;;;;47334:154;47314:3;;;;;:::i;:::-;;;;47272:227;;;;47186:320:::0;:::o;29488:744::-;29597:7;29632:16;29642:5;29632:9;:16::i;:::-;29624:5;:24;29616:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29694:22;29719:13;:11;:13::i;:::-;29694:38;;29739:19;29769:25;29819:9;29814:350;29838:14;29834:1;:18;29814:350;;;29868:31;29902:11;:14;29914:1;29902:14;;;;;;;;;;;29868:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29955:1;29929:28;;:9;:14;;;:28;;;29925:89;;29990:9;:14;;;29970:34;;29925:89;30047:5;30026:26;;:17;:26;;;30022:135;;;30084:5;30069:11;:20;30065:59;;;30111:1;30104:8;;;;;;;;;30065:59;30134:13;;;;;:::i;:::-;;;;30022:135;29859:305;29854:3;;;;;:::i;:::-;;;;29814:350;;;;30170:56;;;;;;;;;;:::i;:::-;;;;;;;;29488:744;;;;;:::o;45498:244::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45626:1:::1;45616:9;;:11;;;;:::i;:::-;45598:12;;45589:6;:21;;;;:::i;:::-;45588:40;;45580:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;45676:24;45686:5;45693:6;45676:9;:24::i;:::-;45728:6;45712:12;;:22;;;;;;;:::i;:::-;;;;;;;;45498:244:::0;;:::o;34602:157::-;34714:39;34731:4;34737:2;34741:7;34714:39;;;;;;;;;;;;:16;:39::i;:::-;34602:157;;;:::o;46816:364::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46898:9:::1;46894:279;46917:10;:17;46913:1;:21;46894:279;;;46992:1;46956:17;:32;46974:10;46985:1;46974:13;;;;;;;;:::i;:::-;;;;;;;;46956:32;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;47013:21;:36;47035:10;47046:1;47035:13;;;;;;;;:::i;:::-;;;;;;;;47013:36;;;;;;;;;;;;;;;;;;;;;;;;;47008:154;;47110:21;:36;47132:10;47143:1;47132:13;;;;;;;;:::i;:::-;;;;;;;;47110:36;;;;;;;;;;;;;;;;;;;;;;;;;47109:37;47070:21;:36;47092:10;47103:1;47092:13;;;;;;;;:::i;:::-;;;;;;;;47070:36;;;;;;;;;;;;;;;;:76;;;;;;;;;;;;;;;;;;47008:154;46936:3;;;;;:::i;:::-;;;;46894:279;;;;46816:364:::0;:::o;45750:89::-;45795:7;45822:9;;45815:16;;45750:89;:::o;29020:177::-;29087:7;29119:13;:11;:13::i;:::-;29111:5;:21;29103:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;29186:5;29179:12;;29020:177;;;:::o;46043:109::-;46098:7;46125:19;;46118:26;;46043:109;:::o;47666:93::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47748:3:::1;47733:12;:18;;;;;;;;;;;;:::i;:::-;;47666:93:::0;:::o;46445:102::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46529:10:::1;46517:9;;:22;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;46445:102:::0;:::o;43180:26::-;;;;;;;;;;;;;:::o;31845:118::-;31909:7;31932:20;31944:7;31932:11;:20::i;:::-;:25;;;31925:32;;31845:118;;;:::o;30722:211::-;30786:7;30827:1;30810:19;;:5;:19;;;;30802:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30899:12;:19;30912:5;30899:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30891:36;;30884:43;;30722:211;;;:::o;47767:95::-;47810:13;47842:12;47835:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47767:95;:::o;7489:103::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;47868:136::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;47956:10:::2;47948:24;;:47;47973:21;47948:47;;;;;;;;;;;;;;;;;;;;;;;47940:56;;;::::0;::::2;;1768:1:::1;2722:7;:22;;;;47868:136::o:0;43755:716::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;43864:17:::1;43851:30;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;43843:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43974:19;;43964:6;43925:24;:36;43950:10;43925:36;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:68;;43917:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;44047:29;44065:10;44047:17;:29::i;:::-;44039:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;44204:1;44190:13;;:15;;;;:::i;:::-;44172:12;;44163:6;:21;;;;:::i;:::-;44162:44;;44154:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;44292:6;44277:12;;:21;;;;:::i;:::-;44263:9;:36;;44255:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44344:29;44354:10;44366:6;44344:9;:29::i;:::-;44400:6;44384:12;;:22;;;;;;;:::i;:::-;;;;;;;;44457:6;44417:24;:36;44442:10;44417:36;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;1768:1:::0;2722:7;:22;;;;43755:716;:::o;6838:87::-;6884:7;6911:6;;;;;;;;;;;6904:13;;6838:87;:::o;47518:140::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47630:20:::1;47608:19;:42;;;;47518:140:::0;:::o;32177:98::-;32233:13;32262:7;32255:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32177:98;:::o;44479:589::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;44584:17:::1;44571:30;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;44563:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44678:6;44645:17;:29;44663:10;44645:29;;;;;;;;;;;;;;;;:39;;44637:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;44738:29;44756:10;44738:17;:29::i;:::-;44730:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;44895:1;44881:13;;:15;;;;:::i;:::-;44863:12;;44854:6;:21;;;;:::i;:::-;44853:44;;44845:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;44948:29;44958:10;44970:6;44948:9;:29::i;:::-;45004:6;44988:12;;:22;;;;;;;:::i;:::-;;;;;;;;45054:6;45021:17;:29;45039:10;45021:29;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;1768:1:::0;2722:7;:22;;;;44479:589;:::o;33815:274::-;33918:12;:10;:12::i;:::-;33906:24;;:8;:24;;;;33898:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34015:8;33970:18;:32;33989:12;:10;:12::i;:::-;33970:32;;;;;;;;;;;;;;;:42;34003:8;33970:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34064:8;34035:48;;34050:12;:10;:12::i;:::-;34035:48;;;34074:8;34035:48;;;;;;:::i;:::-;;;;;;;;33815:274;;:::o;34822:311::-;34959:28;34969:4;34975:2;34979:7;34959:9;:28::i;:::-;35010:48;35033:4;35039:2;35043:7;35052:5;35010:22;:48::i;:::-;34994:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;34822:311;;;;:::o;46158:275::-;46231:13;46265:16;46273:7;46265;:16::i;:::-;46257:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46375:12;:10;:12::i;:::-;46389:25;46406:7;46389:16;:25::i;:::-;46358:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46344:81;;46158:275;;;:::o;39237:43::-;;;;:::o;34152:186::-;34274:4;34297:18;:25;34316:5;34297:25;;;;;;;;;;;;;;;:35;34323:8;34297:35;;;;;;;;;;;;;;;;;;;;;;;;;34290:42;;34152:186;;;;:::o;7747:201::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7856:1:::1;7836:22;;:8;:22;;;;7828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;42922:44::-;;;;:::o;19622:157::-;19707:4;19746:25;19731:40;;;:11;:40;;;;19724:47;;19622:157;;;:::o;35372:105::-;35429:4;35459:12;;35449:7;:22;35442:29;;35372:105;;;:::o;5562:98::-;5615:7;5642:10;5635:17;;5562:98;:::o;39059:172::-;39183:2;39156:15;:24;39172:7;39156:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39217:7;39213:2;39197:28;;39206:5;39197:28;;;;;;;;;;;;39059:172;;;:::o;35483:98::-;35548:27;35558:2;35562:8;35548:27;;;;;;;;;;;;:9;:27::i;:::-;35483:98;;:::o;37424:1529::-;37521:35;37559:20;37571:7;37559:11;:20::i;:::-;37521:58;;37588:22;37630:13;:18;;;37614:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;37683:12;:10;:12::i;:::-;37659:36;;:20;37671:7;37659:11;:20::i;:::-;:36;;;37614:81;:142;;;;37706:50;37723:13;:18;;;37743:12;:10;:12::i;:::-;37706:16;:50::i;:::-;37614:142;37588:169;;37782:17;37766:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;37914:4;37892:26;;:13;:18;;;:26;;;37876:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;38003:1;37989:16;;:2;:16;;;;37981:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38056:43;38078:4;38084:2;38088:7;38097:1;38056:21;:43::i;:::-;38156:49;38173:1;38177:7;38186:13;:18;;;38156:8;:49::i;:::-;38244:1;38214:12;:18;38227:4;38214:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38280:1;38252:12;:16;38265:2;38252:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38311:43;;;;;;;;38326:2;38311:43;;;;;;38337:15;38311:43;;;;;38288:11;:20;38300:7;38288:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38582:19;38614:1;38604:7;:11;;;;:::i;:::-;38582:33;;38667:1;38626:43;;:11;:24;38638:11;38626:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;38622:236;;;38684:20;38692:11;38684:7;:20::i;:::-;38680:171;;;38744:97;;;;;;;;38771:13;:18;;;38744:97;;;;;;38802:13;:28;;;38744:97;;;;;38717:11;:24;38729:11;38717:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38680:171;38622:236;38890:7;38886:2;38871:27;;38880:4;38871:27;;;;;;;;;;;;38905:42;38926:4;38932:2;38936:7;38945:1;38905:20;:42::i;:::-;37514:1439;;;37424:1529;;;:::o;31185:606::-;31261:21;;:::i;:::-;31302:16;31310:7;31302;:16::i;:::-;31294:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31374:26;31422:12;31411:7;:23;31407:93;;31491:1;31476:12;31466:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;31445:47;;31407:93;31513:12;31528:7;31513:22;;31508:212;31545:18;31537:4;:26;31508:212;;31582:31;31616:11;:17;31628:4;31616:17;;;;;;;;;;;31582:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31672:1;31646:28;;:9;:14;;;:28;;;31642:71;;31694:9;31687:16;;;;;;;31642:71;31573:147;31565:6;;;;;:::i;:::-;;;;31508:212;;;;31728:57;;;;;;;;;;:::i;:::-;;;;;;;;31185:606;;;;:::o;8108:191::-;8182:16;8201:6;;;;;;;;;;;8182:25;;8227:8;8218:6;;:17;;;;;;;;;;;;;;;;;;8282:8;8251:40;;8272:8;8251:40;;;;;;;;;;;;8171:128;8108:191;:::o;40774:690::-;40911:4;40928:15;:2;:13;;;:15::i;:::-;40924:535;;;40983:2;40967:36;;;41004:12;:10;:12::i;:::-;41018:4;41024:7;41033:5;40967:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40954:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41215:1;41198:6;:13;:18;41194:215;;;41231:61;;;;;;;;;;:::i;:::-;;;;;;;;41194:215;41377:6;41371:13;41362:6;41358:2;41354:15;41347:38;40954:464;41099:45;;;41089:55;;;:6;:55;;;;41082:62;;;;;40924:535;41447:4;41440:11;;40774:690;;;;;;;:::o;3124:723::-;3180:13;3410:1;3401:5;:10;3397:53;;;3428:10;;;;;;;;;;;;;;;;;;;;;3397:53;3460:12;3475:5;3460:20;;3491:14;3516:78;3531:1;3523:4;:9;3516:78;;3549:8;;;;;:::i;:::-;;;;3580:2;3572:10;;;;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:39;;3654:154;3670:1;3661:5;:10;3654:154;;3698:1;3688:11;;;;;:::i;:::-;;;3765:2;3757:5;:10;;;;:::i;:::-;3744:2;:24;;;;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3794:2;3785:11;;;;;:::i;:::-;;;3654:154;;;3832:6;3818:21;;;;;3124:723;;;;:::o;35920:1272::-;36025:20;36048:12;;36025:35;;36089:1;36075:16;;:2;:16;;;;36067:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36266:21;36274:12;36266:7;:21::i;:::-;36265:22;36257:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36348:12;36336:8;:24;;36328:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36408:61;36438:1;36442:2;36446:12;36460:8;36408:21;:61::i;:::-;36478:30;36511:12;:16;36524:2;36511:16;;;;;;;;;;;;;;;36478:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36553:119;;;;;;;;36603:8;36573:11;:19;;;:39;;;;:::i;:::-;36553:119;;;;;;36656:8;36621:11;:24;;;:44;;;;:::i;:::-;36553:119;;;;;36534:12;:16;36547:2;36534:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36707:43;;;;;;;;36722:2;36707:43;;;;;;36733:15;36707:43;;;;;36679:11;:25;36691:12;36679:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36759:20;36782:12;36759:35;;36808:9;36803:281;36827:8;36823:1;:12;36803:281;;;36881:12;36877:2;36856:38;;36873:1;36856:38;;;;;;;;;;;;36921:59;36952:1;36956:2;36960:12;36974:5;36921:22;:59::i;:::-;36903:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;37062:14;;;;;:::i;:::-;;;;36837:3;;;;;:::i;:::-;;;;36803:281;;;;37107:12;37092;:27;;;;37126:60;37155:1;37159:2;37163:12;37177:8;37126:20;:60::i;:::-;36018:1174;;;35920:1272;;;:::o;41926:141::-;;;;;:::o;42453:140::-;;;;;:::o;9539:326::-;9599:4;9856:1;9834:7;:19;;;:23;9827:30;;9539:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2910:167::-;2970:5;3008:6;2995:20;2986:29;;3024:47;3065:5;3024:47;:::i;:::-;2910:167;;;;:::o;3097:340::-;3153:5;3202:3;3195:4;3187:6;3183:17;3179:27;3169:122;;3210:79;;:::i;:::-;3169:122;3327:6;3314:20;3352:79;3427:3;3419:6;3412:4;3404:6;3400:17;3352:79;:::i;:::-;3343:88;;3159:278;3097:340;;;;:::o;3443:139::-;3489:5;3527:6;3514:20;3505:29;;3543:33;3570:5;3543:33;:::i;:::-;3443:139;;;;:::o;3588:329::-;3647:6;3696:2;3684:9;3675:7;3671:23;3667:32;3664:119;;;3702:79;;:::i;:::-;3664:119;3822:1;3847:53;3892:7;3883:6;3872:9;3868:22;3847:53;:::i;:::-;3837:63;;3793:117;3588:329;;;;:::o;3923:474::-;3991:6;3999;4048:2;4036:9;4027:7;4023:23;4019:32;4016:119;;;4054:79;;:::i;:::-;4016:119;4174:1;4199:53;4244:7;4235:6;4224:9;4220:22;4199:53;:::i;:::-;4189:63;;4145:117;4301:2;4327:53;4372:7;4363:6;4352:9;4348:22;4327:53;:::i;:::-;4317:63;;4272:118;3923:474;;;;;:::o;4403:619::-;4480:6;4488;4496;4545:2;4533:9;4524:7;4520:23;4516:32;4513:119;;;4551:79;;:::i;:::-;4513:119;4671:1;4696:53;4741:7;4732:6;4721:9;4717:22;4696:53;:::i;:::-;4686:63;;4642:117;4798:2;4824:53;4869:7;4860:6;4849:9;4845:22;4824:53;:::i;:::-;4814:63;;4769:118;4926:2;4952:53;4997:7;4988:6;4977:9;4973:22;4952:53;:::i;:::-;4942:63;;4897:118;4403:619;;;;;:::o;5028:943::-;5123:6;5131;5139;5147;5196:3;5184:9;5175:7;5171:23;5167:33;5164:120;;;5203:79;;:::i;:::-;5164:120;5323:1;5348:53;5393:7;5384:6;5373:9;5369:22;5348:53;:::i;:::-;5338:63;;5294:117;5450:2;5476:53;5521:7;5512:6;5501:9;5497:22;5476:53;:::i;:::-;5466:63;;5421:118;5578:2;5604:53;5649:7;5640:6;5629:9;5625:22;5604:53;:::i;:::-;5594:63;;5549:118;5734:2;5723:9;5719:18;5706:32;5765:18;5757:6;5754:30;5751:117;;;5787:79;;:::i;:::-;5751:117;5892:62;5946:7;5937:6;5926:9;5922:22;5892:62;:::i;:::-;5882:72;;5677:287;5028:943;;;;;;;:::o;5977:468::-;6042:6;6050;6099:2;6087:9;6078:7;6074:23;6070:32;6067:119;;;6105:79;;:::i;:::-;6067:119;6225:1;6250:53;6295:7;6286:6;6275:9;6271:22;6250:53;:::i;:::-;6240:63;;6196:117;6352:2;6378:50;6420:7;6411:6;6400:9;6396:22;6378:50;:::i;:::-;6368:60;;6323:115;5977:468;;;;;:::o;6451:474::-;6519:6;6527;6576:2;6564:9;6555:7;6551:23;6547:32;6544:119;;;6582:79;;:::i;:::-;6544:119;6702:1;6727:53;6772:7;6763:6;6752:9;6748:22;6727:53;:::i;:::-;6717:63;;6673:117;6829:2;6855:53;6900:7;6891:6;6880:9;6876:22;6855:53;:::i;:::-;6845:63;;6800:118;6451:474;;;;;:::o;6931:539::-;7015:6;7064:2;7052:9;7043:7;7039:23;7035:32;7032:119;;;7070:79;;:::i;:::-;7032:119;7218:1;7207:9;7203:17;7190:31;7248:18;7240:6;7237:30;7234:117;;;7270:79;;:::i;:::-;7234:117;7375:78;7445:7;7436:6;7425:9;7421:22;7375:78;:::i;:::-;7365:88;;7161:302;6931:539;;;;:::o;7476:327::-;7534:6;7583:2;7571:9;7562:7;7558:23;7554:32;7551:119;;;7589:79;;:::i;:::-;7551:119;7709:1;7734:52;7778:7;7769:6;7758:9;7754:22;7734:52;:::i;:::-;7724:62;;7680:116;7476:327;;;;:::o;7809:349::-;7878:6;7927:2;7915:9;7906:7;7902:23;7898:32;7895:119;;;7933:79;;:::i;:::-;7895:119;8053:1;8078:63;8133:7;8124:6;8113:9;8109:22;8078:63;:::i;:::-;8068:73;;8024:127;7809:349;;;;:::o;8164:357::-;8237:6;8286:2;8274:9;8265:7;8261:23;8257:32;8254:119;;;8292:79;;:::i;:::-;8254:119;8412:1;8437:67;8496:7;8487:6;8476:9;8472:22;8437:67;:::i;:::-;8427:77;;8383:131;8164:357;;;;:::o;8527:509::-;8596:6;8645:2;8633:9;8624:7;8620:23;8616:32;8613:119;;;8651:79;;:::i;:::-;8613:119;8799:1;8788:9;8784:17;8771:31;8829:18;8821:6;8818:30;8815:117;;;8851:79;;:::i;:::-;8815:117;8956:63;9011:7;9002:6;8991:9;8987:22;8956:63;:::i;:::-;8946:73;;8742:287;8527:509;;;;:::o;9042:329::-;9101:6;9150:2;9138:9;9129:7;9125:23;9121:32;9118:119;;;9156:79;;:::i;:::-;9118:119;9276:1;9301:53;9346:7;9337:6;9326:9;9322:22;9301:53;:::i;:::-;9291:63;;9247:117;9042:329;;;;:::o;9377:474::-;9445:6;9453;9502:2;9490:9;9481:7;9477:23;9473:32;9470:119;;;9508:79;;:::i;:::-;9470:119;9628:1;9653:53;9698:7;9689:6;9678:9;9674:22;9653:53;:::i;:::-;9643:63;;9599:117;9755:2;9781:53;9826:7;9817:6;9806:9;9802:22;9781:53;:::i;:::-;9771:63;;9726:118;9377:474;;;;;:::o;9857:118::-;9944:24;9962:5;9944:24;:::i;:::-;9939:3;9932:37;9857:118;;:::o;9981:109::-;10062:21;10077:5;10062:21;:::i;:::-;10057:3;10050:34;9981:109;;:::o;10096:360::-;10182:3;10210:38;10242:5;10210:38;:::i;:::-;10264:70;10327:6;10322:3;10264:70;:::i;:::-;10257:77;;10343:52;10388:6;10383:3;10376:4;10369:5;10365:16;10343:52;:::i;:::-;10420:29;10442:6;10420:29;:::i;:::-;10415:3;10411:39;10404:46;;10186:270;10096:360;;;;:::o;10462:155::-;10561:49;10604:5;10561:49;:::i;:::-;10556:3;10549:62;10462:155;;:::o;10623:364::-;10711:3;10739:39;10772:5;10739:39;:::i;:::-;10794:71;10858:6;10853:3;10794:71;:::i;:::-;10787:78;;10874:52;10919:6;10914:3;10907:4;10900:5;10896:16;10874:52;:::i;:::-;10951:29;10973:6;10951:29;:::i;:::-;10946:3;10942:39;10935:46;;10715:272;10623:364;;;;:::o;10993:377::-;11099:3;11127:39;11160:5;11127:39;:::i;:::-;11182:89;11264:6;11259:3;11182:89;:::i;:::-;11175:96;;11280:52;11325:6;11320:3;11313:4;11306:5;11302:16;11280:52;:::i;:::-;11357:6;11352:3;11348:16;11341:23;;11103:267;10993:377;;;;:::o;11376:366::-;11518:3;11539:67;11603:2;11598:3;11539:67;:::i;:::-;11532:74;;11615:93;11704:3;11615:93;:::i;:::-;11733:2;11728:3;11724:12;11717:19;;11376:366;;;:::o;11748:::-;11890:3;11911:67;11975:2;11970:3;11911:67;:::i;:::-;11904:74;;11987:93;12076:3;11987:93;:::i;:::-;12105:2;12100:3;12096:12;12089:19;;11748:366;;;:::o;12120:::-;12262:3;12283:67;12347:2;12342:3;12283:67;:::i;:::-;12276:74;;12359:93;12448:3;12359:93;:::i;:::-;12477:2;12472:3;12468:12;12461:19;;12120:366;;;:::o;12492:::-;12634:3;12655:67;12719:2;12714:3;12655:67;:::i;:::-;12648:74;;12731:93;12820:3;12731:93;:::i;:::-;12849:2;12844:3;12840:12;12833:19;;12492:366;;;:::o;12864:::-;13006:3;13027:67;13091:2;13086:3;13027:67;:::i;:::-;13020:74;;13103:93;13192:3;13103:93;:::i;:::-;13221:2;13216:3;13212:12;13205:19;;12864:366;;;:::o;13236:::-;13378:3;13399:67;13463:2;13458:3;13399:67;:::i;:::-;13392:74;;13475:93;13564:3;13475:93;:::i;:::-;13593:2;13588:3;13584:12;13577:19;;13236:366;;;:::o;13608:::-;13750:3;13771:67;13835:2;13830:3;13771:67;:::i;:::-;13764:74;;13847:93;13936:3;13847:93;:::i;:::-;13965:2;13960:3;13956:12;13949:19;;13608:366;;;:::o;13980:::-;14122:3;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14219:93;14308:3;14219:93;:::i;:::-;14337:2;14332:3;14328:12;14321:19;;13980:366;;;:::o;14352:::-;14494:3;14515:67;14579:2;14574:3;14515:67;:::i;:::-;14508:74;;14591:93;14680:3;14591:93;:::i;:::-;14709:2;14704:3;14700:12;14693:19;;14352:366;;;:::o;14724:::-;14866:3;14887:67;14951:2;14946:3;14887:67;:::i;:::-;14880:74;;14963:93;15052:3;14963:93;:::i;:::-;15081:2;15076:3;15072:12;15065:19;;14724:366;;;:::o;15096:::-;15238:3;15259:67;15323:2;15318:3;15259:67;:::i;:::-;15252:74;;15335:93;15424:3;15335:93;:::i;:::-;15453:2;15448:3;15444:12;15437:19;;15096:366;;;:::o;15468:::-;15610:3;15631:67;15695:2;15690:3;15631:67;:::i;:::-;15624:74;;15707:93;15796:3;15707:93;:::i;:::-;15825:2;15820:3;15816:12;15809:19;;15468:366;;;:::o;15840:400::-;16000:3;16021:84;16103:1;16098:3;16021:84;:::i;:::-;16014:91;;16114:93;16203:3;16114:93;:::i;:::-;16232:1;16227:3;16223:11;16216:18;;15840:400;;;:::o;16246:366::-;16388:3;16409:67;16473:2;16468:3;16409:67;:::i;:::-;16402:74;;16485:93;16574:3;16485:93;:::i;:::-;16603:2;16598:3;16594:12;16587:19;;16246:366;;;:::o;16618:::-;16760:3;16781:67;16845:2;16840:3;16781:67;:::i;:::-;16774:74;;16857:93;16946:3;16857:93;:::i;:::-;16975:2;16970:3;16966:12;16959:19;;16618:366;;;:::o;16990:::-;17132:3;17153:67;17217:2;17212:3;17153:67;:::i;:::-;17146:74;;17229:93;17318:3;17229:93;:::i;:::-;17347:2;17342:3;17338:12;17331:19;;16990:366;;;:::o;17362:::-;17504:3;17525:67;17589:2;17584:3;17525:67;:::i;:::-;17518:74;;17601:93;17690:3;17601:93;:::i;:::-;17719:2;17714:3;17710:12;17703:19;;17362:366;;;:::o;17734:::-;17876:3;17897:67;17961:2;17956:3;17897:67;:::i;:::-;17890:74;;17973:93;18062:3;17973:93;:::i;:::-;18091:2;18086:3;18082:12;18075:19;;17734:366;;;:::o;18106:::-;18248:3;18269:67;18333:2;18328:3;18269:67;:::i;:::-;18262:74;;18345:93;18434:3;18345:93;:::i;:::-;18463:2;18458:3;18454:12;18447:19;;18106:366;;;:::o;18478:::-;18620:3;18641:67;18705:2;18700:3;18641:67;:::i;:::-;18634:74;;18717:93;18806:3;18717:93;:::i;:::-;18835:2;18830:3;18826:12;18819:19;;18478:366;;;:::o;18850:::-;18992:3;19013:67;19077:2;19072:3;19013:67;:::i;:::-;19006:74;;19089:93;19178:3;19089:93;:::i;:::-;19207:2;19202:3;19198:12;19191:19;;18850:366;;;:::o;19222:::-;19364:3;19385:67;19449:2;19444:3;19385:67;:::i;:::-;19378:74;;19461:93;19550:3;19461:93;:::i;:::-;19579:2;19574:3;19570:12;19563:19;;19222:366;;;:::o;19594:::-;19736:3;19757:67;19821:2;19816:3;19757:67;:::i;:::-;19750:74;;19833:93;19922:3;19833:93;:::i;:::-;19951:2;19946:3;19942:12;19935:19;;19594:366;;;:::o;19966:::-;20108:3;20129:67;20193:2;20188:3;20129:67;:::i;:::-;20122:74;;20205:93;20294:3;20205:93;:::i;:::-;20323:2;20318:3;20314:12;20307:19;;19966:366;;;:::o;20338:::-;20480:3;20501:67;20565:2;20560:3;20501:67;:::i;:::-;20494:74;;20577:93;20666:3;20577:93;:::i;:::-;20695:2;20690:3;20686:12;20679:19;;20338:366;;;:::o;20710:::-;20852:3;20873:67;20937:2;20932:3;20873:67;:::i;:::-;20866:74;;20949:93;21038:3;20949:93;:::i;:::-;21067:2;21062:3;21058:12;21051:19;;20710:366;;;:::o;21082:::-;21224:3;21245:67;21309:2;21304:3;21245:67;:::i;:::-;21238:74;;21321:93;21410:3;21321:93;:::i;:::-;21439:2;21434:3;21430:12;21423:19;;21082:366;;;:::o;21454:::-;21596:3;21617:67;21681:2;21676:3;21617:67;:::i;:::-;21610:74;;21693:93;21782:3;21693:93;:::i;:::-;21811:2;21806:3;21802:12;21795:19;;21454:366;;;:::o;21826:::-;21968:3;21989:67;22053:2;22048:3;21989:67;:::i;:::-;21982:74;;22065:93;22154:3;22065:93;:::i;:::-;22183:2;22178:3;22174:12;22167:19;;21826:366;;;:::o;22198:118::-;22285:24;22303:5;22285:24;:::i;:::-;22280:3;22273:37;22198:118;;:::o;22322:701::-;22603:3;22625:95;22716:3;22707:6;22625:95;:::i;:::-;22618:102;;22737:95;22828:3;22819:6;22737:95;:::i;:::-;22730:102;;22849:148;22993:3;22849:148;:::i;:::-;22842:155;;23014:3;23007:10;;22322:701;;;;;:::o;23029:222::-;23122:4;23160:2;23149:9;23145:18;23137:26;;23173:71;23241:1;23230:9;23226:17;23217:6;23173:71;:::i;:::-;23029:222;;;;:::o;23257:640::-;23452:4;23490:3;23479:9;23475:19;23467:27;;23504:71;23572:1;23561:9;23557:17;23548:6;23504:71;:::i;:::-;23585:72;23653:2;23642:9;23638:18;23629:6;23585:72;:::i;:::-;23667;23735:2;23724:9;23720:18;23711:6;23667:72;:::i;:::-;23786:9;23780:4;23776:20;23771:2;23760:9;23756:18;23749:48;23814:76;23885:4;23876:6;23814:76;:::i;:::-;23806:84;;23257:640;;;;;;;:::o;23903:210::-;23990:4;24028:2;24017:9;24013:18;24005:26;;24041:65;24103:1;24092:9;24088:17;24079:6;24041:65;:::i;:::-;23903:210;;;;:::o;24119:246::-;24224:4;24262:2;24251:9;24247:18;24239:26;;24275:83;24355:1;24344:9;24340:17;24331:6;24275:83;:::i;:::-;24119:246;;;;:::o;24371:313::-;24484:4;24522:2;24511:9;24507:18;24499:26;;24571:9;24565:4;24561:20;24557:1;24546:9;24542:17;24535:47;24599:78;24672:4;24663:6;24599:78;:::i;:::-;24591:86;;24371:313;;;;:::o;24690:419::-;24856:4;24894:2;24883:9;24879:18;24871:26;;24943:9;24937:4;24933:20;24929:1;24918:9;24914:17;24907:47;24971:131;25097:4;24971:131;:::i;:::-;24963:139;;24690:419;;;:::o;25115:::-;25281:4;25319:2;25308:9;25304:18;25296:26;;25368:9;25362:4;25358:20;25354:1;25343:9;25339:17;25332:47;25396:131;25522:4;25396:131;:::i;:::-;25388:139;;25115:419;;;:::o;25540:::-;25706:4;25744:2;25733:9;25729:18;25721:26;;25793:9;25787:4;25783:20;25779:1;25768:9;25764:17;25757:47;25821:131;25947:4;25821:131;:::i;:::-;25813:139;;25540:419;;;:::o;25965:::-;26131:4;26169:2;26158:9;26154:18;26146:26;;26218:9;26212:4;26208:20;26204:1;26193:9;26189:17;26182:47;26246:131;26372:4;26246:131;:::i;:::-;26238:139;;25965:419;;;:::o;26390:::-;26556:4;26594:2;26583:9;26579:18;26571:26;;26643:9;26637:4;26633:20;26629:1;26618:9;26614:17;26607:47;26671:131;26797:4;26671:131;:::i;:::-;26663:139;;26390:419;;;:::o;26815:::-;26981:4;27019:2;27008:9;27004:18;26996:26;;27068:9;27062:4;27058:20;27054:1;27043:9;27039:17;27032:47;27096:131;27222:4;27096:131;:::i;:::-;27088:139;;26815:419;;;:::o;27240:::-;27406:4;27444:2;27433:9;27429:18;27421:26;;27493:9;27487:4;27483:20;27479:1;27468:9;27464:17;27457:47;27521:131;27647:4;27521:131;:::i;:::-;27513:139;;27240:419;;;:::o;27665:::-;27831:4;27869:2;27858:9;27854:18;27846:26;;27918:9;27912:4;27908:20;27904:1;27893:9;27889:17;27882:47;27946:131;28072:4;27946:131;:::i;:::-;27938:139;;27665:419;;;:::o;28090:::-;28256:4;28294:2;28283:9;28279:18;28271:26;;28343:9;28337:4;28333:20;28329:1;28318:9;28314:17;28307:47;28371:131;28497:4;28371:131;:::i;:::-;28363:139;;28090:419;;;:::o;28515:::-;28681:4;28719:2;28708:9;28704:18;28696:26;;28768:9;28762:4;28758:20;28754:1;28743:9;28739:17;28732:47;28796:131;28922:4;28796:131;:::i;:::-;28788:139;;28515:419;;;:::o;28940:::-;29106:4;29144:2;29133:9;29129:18;29121:26;;29193:9;29187:4;29183:20;29179:1;29168:9;29164:17;29157:47;29221:131;29347:4;29221:131;:::i;:::-;29213:139;;28940:419;;;:::o;29365:::-;29531:4;29569:2;29558:9;29554:18;29546:26;;29618:9;29612:4;29608:20;29604:1;29593:9;29589:17;29582:47;29646:131;29772:4;29646:131;:::i;:::-;29638:139;;29365:419;;;:::o;29790:::-;29956:4;29994:2;29983:9;29979:18;29971:26;;30043:9;30037:4;30033:20;30029:1;30018:9;30014:17;30007:47;30071:131;30197:4;30071:131;:::i;:::-;30063:139;;29790:419;;;:::o;30215:::-;30381:4;30419:2;30408:9;30404:18;30396:26;;30468:9;30462:4;30458:20;30454:1;30443:9;30439:17;30432:47;30496:131;30622:4;30496:131;:::i;:::-;30488:139;;30215:419;;;:::o;30640:::-;30806:4;30844:2;30833:9;30829:18;30821:26;;30893:9;30887:4;30883:20;30879:1;30868:9;30864:17;30857:47;30921:131;31047:4;30921:131;:::i;:::-;30913:139;;30640:419;;;:::o;31065:::-;31231:4;31269:2;31258:9;31254:18;31246:26;;31318:9;31312:4;31308:20;31304:1;31293:9;31289:17;31282:47;31346:131;31472:4;31346:131;:::i;:::-;31338:139;;31065:419;;;:::o;31490:::-;31656:4;31694:2;31683:9;31679:18;31671:26;;31743:9;31737:4;31733:20;31729:1;31718:9;31714:17;31707:47;31771:131;31897:4;31771:131;:::i;:::-;31763:139;;31490:419;;;:::o;31915:::-;32081:4;32119:2;32108:9;32104:18;32096:26;;32168:9;32162:4;32158:20;32154:1;32143:9;32139:17;32132:47;32196:131;32322:4;32196:131;:::i;:::-;32188:139;;31915:419;;;:::o;32340:::-;32506:4;32544:2;32533:9;32529:18;32521:26;;32593:9;32587:4;32583:20;32579:1;32568:9;32564:17;32557:47;32621:131;32747:4;32621:131;:::i;:::-;32613:139;;32340:419;;;:::o;32765:::-;32931:4;32969:2;32958:9;32954:18;32946:26;;33018:9;33012:4;33008:20;33004:1;32993:9;32989:17;32982:47;33046:131;33172:4;33046:131;:::i;:::-;33038:139;;32765:419;;;:::o;33190:::-;33356:4;33394:2;33383:9;33379:18;33371:26;;33443:9;33437:4;33433:20;33429:1;33418:9;33414:17;33407:47;33471:131;33597:4;33471:131;:::i;:::-;33463:139;;33190:419;;;:::o;33615:::-;33781:4;33819:2;33808:9;33804:18;33796:26;;33868:9;33862:4;33858:20;33854:1;33843:9;33839:17;33832:47;33896:131;34022:4;33896:131;:::i;:::-;33888:139;;33615:419;;;:::o;34040:::-;34206:4;34244:2;34233:9;34229:18;34221:26;;34293:9;34287:4;34283:20;34279:1;34268:9;34264:17;34257:47;34321:131;34447:4;34321:131;:::i;:::-;34313:139;;34040:419;;;:::o;34465:::-;34631:4;34669:2;34658:9;34654:18;34646:26;;34718:9;34712:4;34708:20;34704:1;34693:9;34689:17;34682:47;34746:131;34872:4;34746:131;:::i;:::-;34738:139;;34465:419;;;:::o;34890:::-;35056:4;35094:2;35083:9;35079:18;35071:26;;35143:9;35137:4;35133:20;35129:1;35118:9;35114:17;35107:47;35171:131;35297:4;35171:131;:::i;:::-;35163:139;;34890:419;;;:::o;35315:::-;35481:4;35519:2;35508:9;35504:18;35496:26;;35568:9;35562:4;35558:20;35554:1;35543:9;35539:17;35532:47;35596:131;35722:4;35596:131;:::i;:::-;35588:139;;35315:419;;;:::o;35740:::-;35906:4;35944:2;35933:9;35929:18;35921:26;;35993:9;35987:4;35983:20;35979:1;35968:9;35964:17;35957:47;36021:131;36147:4;36021:131;:::i;:::-;36013:139;;35740:419;;;:::o;36165:::-;36331:4;36369:2;36358:9;36354:18;36346:26;;36418:9;36412:4;36408:20;36404:1;36393:9;36389:17;36382:47;36446:131;36572:4;36446:131;:::i;:::-;36438:139;;36165:419;;;:::o;36590:222::-;36683:4;36721:2;36710:9;36706:18;36698:26;;36734:71;36802:1;36791:9;36787:17;36778:6;36734:71;:::i;:::-;36590:222;;;;:::o;36818:129::-;36852:6;36879:20;;:::i;:::-;36869:30;;36908:33;36936:4;36928:6;36908:33;:::i;:::-;36818:129;;;:::o;36953:75::-;36986:6;37019:2;37013:9;37003:19;;36953:75;:::o;37034:311::-;37111:4;37201:18;37193:6;37190:30;37187:56;;;37223:18;;:::i;:::-;37187:56;37273:4;37265:6;37261:17;37253:25;;37333:4;37327;37323:15;37315:23;;37034:311;;;:::o;37351:307::-;37412:4;37502:18;37494:6;37491:30;37488:56;;;37524:18;;:::i;:::-;37488:56;37562:29;37584:6;37562:29;:::i;:::-;37554:37;;37646:4;37640;37636:15;37628:23;;37351:307;;;:::o;37664:308::-;37726:4;37816:18;37808:6;37805:30;37802:56;;;37838:18;;:::i;:::-;37802:56;37876:29;37898:6;37876:29;:::i;:::-;37868:37;;37960:4;37954;37950:15;37942:23;;37664:308;;;:::o;37978:98::-;38029:6;38063:5;38057:12;38047:22;;37978:98;;;:::o;38082:99::-;38134:6;38168:5;38162:12;38152:22;;38082:99;;;:::o;38187:168::-;38270:11;38304:6;38299:3;38292:19;38344:4;38339:3;38335:14;38320:29;;38187:168;;;;:::o;38361:169::-;38445:11;38479:6;38474:3;38467:19;38519:4;38514:3;38510:14;38495:29;;38361:169;;;;:::o;38536:148::-;38638:11;38675:3;38660:18;;38536:148;;;;:::o;38690:273::-;38730:3;38749:20;38767:1;38749:20;:::i;:::-;38744:25;;38783:20;38801:1;38783:20;:::i;:::-;38778:25;;38905:1;38869:34;38865:42;38862:1;38859:49;38856:75;;;38911:18;;:::i;:::-;38856:75;38955:1;38952;38948:9;38941:16;;38690:273;;;;:::o;38969:305::-;39009:3;39028:20;39046:1;39028:20;:::i;:::-;39023:25;;39062:20;39080:1;39062:20;:::i;:::-;39057:25;;39216:1;39148:66;39144:74;39141:1;39138:81;39135:107;;;39222:18;;:::i;:::-;39135:107;39266:1;39263;39259:9;39252:16;;38969:305;;;;:::o;39280:185::-;39320:1;39337:20;39355:1;39337:20;:::i;:::-;39332:25;;39371:20;39389:1;39371:20;:::i;:::-;39366:25;;39410:1;39400:35;;39415:18;;:::i;:::-;39400:35;39457:1;39454;39450:9;39445:14;;39280:185;;;;:::o;39471:348::-;39511:7;39534:20;39552:1;39534:20;:::i;:::-;39529:25;;39568:20;39586:1;39568:20;:::i;:::-;39563:25;;39756:1;39688:66;39684:74;39681:1;39678:81;39673:1;39666:9;39659:17;39655:105;39652:131;;;39763:18;;:::i;:::-;39652:131;39811:1;39808;39804:9;39793:20;;39471:348;;;;:::o;39825:191::-;39865:4;39885:20;39903:1;39885:20;:::i;:::-;39880:25;;39919:20;39937:1;39919:20;:::i;:::-;39914:25;;39958:1;39955;39952:8;39949:34;;;39963:18;;:::i;:::-;39949:34;40008:1;40005;40001:9;39993:17;;39825:191;;;;:::o;40022:::-;40062:4;40082:20;40100:1;40082:20;:::i;:::-;40077:25;;40116:20;40134:1;40116:20;:::i;:::-;40111:25;;40155:1;40152;40149:8;40146:34;;;40160:18;;:::i;:::-;40146:34;40205:1;40202;40198:9;40190:17;;40022:191;;;;:::o;40219:96::-;40256:7;40285:24;40303:5;40285:24;:::i;:::-;40274:35;;40219:96;;;:::o;40321:90::-;40355:7;40398:5;40391:13;40384:21;40373:32;;40321:90;;;:::o;40417:149::-;40453:7;40493:66;40486:5;40482:78;40471:89;;40417:149;;;:::o;40572:139::-;40623:7;40652:5;40641:16;;40658:47;40699:5;40658:47;:::i;:::-;40572:139;;;:::o;40717:118::-;40754:7;40794:34;40787:5;40783:46;40772:57;;40717:118;;;:::o;40841:126::-;40878:7;40918:42;40911:5;40907:54;40896:65;;40841:126;;;:::o;40973:77::-;41010:7;41039:5;41028:16;;40973:77;;;:::o;41056:139::-;41118:9;41151:38;41183:5;41151:38;:::i;:::-;41138:51;;41056:139;;;:::o;41201:154::-;41285:6;41280:3;41275;41262:30;41347:1;41338:6;41333:3;41329:16;41322:27;41201:154;;;:::o;41361:307::-;41429:1;41439:113;41453:6;41450:1;41447:13;41439:113;;;41538:1;41533:3;41529:11;41523:18;41519:1;41514:3;41510:11;41503:39;41475:2;41472:1;41468:10;41463:15;;41439:113;;;41570:6;41567:1;41564:13;41561:101;;;41650:1;41641:6;41636:3;41632:16;41625:27;41561:101;41410:258;41361:307;;;:::o;41674:171::-;41713:3;41736:24;41754:5;41736:24;:::i;:::-;41727:33;;41782:4;41775:5;41772:15;41769:41;;;41790:18;;:::i;:::-;41769:41;41837:1;41830:5;41826:13;41819:20;;41674:171;;;:::o;41851:320::-;41895:6;41932:1;41926:4;41922:12;41912:22;;41979:1;41973:4;41969:12;42000:18;41990:81;;42056:4;42048:6;42044:17;42034:27;;41990:81;42118:2;42110:6;42107:14;42087:18;42084:38;42081:84;;;42137:18;;:::i;:::-;42081:84;41902:269;41851:320;;;:::o;42177:281::-;42260:27;42282:4;42260:27;:::i;:::-;42252:6;42248:40;42390:6;42378:10;42375:22;42354:18;42342:10;42339:34;42336:62;42333:88;;;42401:18;;:::i;:::-;42333:88;42441:10;42437:2;42430:22;42220:238;42177:281;;:::o;42464:233::-;42503:3;42526:24;42544:5;42526:24;:::i;:::-;42517:33;;42572:66;42565:5;42562:77;42559:103;;;42642:18;;:::i;:::-;42559:103;42689:1;42682:5;42678:13;42671:20;;42464:233;;;:::o;42703:176::-;42735:1;42752:20;42770:1;42752:20;:::i;:::-;42747:25;;42786:20;42804:1;42786:20;:::i;:::-;42781:25;;42825:1;42815:35;;42830:18;;:::i;:::-;42815:35;42871:1;42868;42864:9;42859:14;;42703:176;;;;:::o;42885:180::-;42933:77;42930:1;42923:88;43030:4;43027:1;43020:15;43054:4;43051:1;43044:15;43071:180;43119:77;43116:1;43109:88;43216:4;43213:1;43206:15;43240:4;43237:1;43230:15;43257:180;43305:77;43302:1;43295:88;43402:4;43399:1;43392:15;43426:4;43423:1;43416:15;43443:180;43491:77;43488:1;43481:88;43588:4;43585:1;43578:15;43612:4;43609:1;43602:15;43629:180;43677:77;43674:1;43667:88;43774:4;43771:1;43764:15;43798:4;43795:1;43788:15;43815:180;43863:77;43860:1;43853:88;43960:4;43957:1;43950:15;43984:4;43981:1;43974:15;44001:117;44110:1;44107;44100:12;44124:117;44233:1;44230;44223:12;44247:117;44356:1;44353;44346:12;44370:117;44479:1;44476;44469:12;44493:117;44602:1;44599;44592:12;44616:102;44657:6;44708:2;44704:7;44699:2;44692:5;44688:14;44684:28;44674:38;;44616:102;;;:::o;44724:221::-;44864:34;44860:1;44852:6;44848:14;44841:58;44933:4;44928:2;44920:6;44916:15;44909:29;44724:221;:::o;44951:225::-;45091:34;45087:1;45079:6;45075:14;45068:58;45160:8;45155:2;45147:6;45143:15;45136:33;44951:225;:::o;45182:229::-;45322:34;45318:1;45310:6;45306:14;45299:58;45391:12;45386:2;45378:6;45374:15;45367:37;45182:229;:::o;45417:170::-;45557:22;45553:1;45545:6;45541:14;45534:46;45417:170;:::o;45593:222::-;45733:34;45729:1;45721:6;45717:14;45710:58;45802:5;45797:2;45789:6;45785:15;45778:30;45593:222;:::o;45821:224::-;45961:34;45957:1;45949:6;45945:14;45938:58;46030:7;46025:2;46017:6;46013:15;46006:32;45821:224;:::o;46051:181::-;46191:33;46187:1;46179:6;46175:14;46168:57;46051:181;:::o;46238:244::-;46378:34;46374:1;46366:6;46362:14;46355:58;46447:27;46442:2;46434:6;46430:15;46423:52;46238:244;:::o;46488:230::-;46628:34;46624:1;46616:6;46612:14;46605:58;46697:13;46692:2;46684:6;46680:15;46673:38;46488:230;:::o;46724:180::-;46864:32;46860:1;46852:6;46848:14;46841:56;46724:180;:::o;46910:177::-;47050:29;47046:1;47038:6;47034:14;47027:53;46910:177;:::o;47093:225::-;47233:34;47229:1;47221:6;47217:14;47210:58;47302:8;47297:2;47289:6;47285:15;47278:33;47093:225;:::o;47324:155::-;47464:7;47460:1;47452:6;47448:14;47441:31;47324:155;:::o;47485:182::-;47625:34;47621:1;47613:6;47609:14;47602:58;47485:182;:::o;47673:234::-;47813:34;47809:1;47801:6;47797:14;47790:58;47882:17;47877:2;47869:6;47865:15;47858:42;47673:234;:::o;47913:176::-;48053:28;48049:1;48041:6;48037:14;48030:52;47913:176;:::o;48095:237::-;48235:34;48231:1;48223:6;48219:14;48212:58;48304:20;48299:2;48291:6;48287:15;48280:45;48095:237;:::o;48338:220::-;48478:34;48474:1;48466:6;48462:14;48455:58;48547:3;48542:2;48534:6;48530:15;48523:28;48338:220;:::o;48564:221::-;48704:34;48700:1;48692:6;48688:14;48681:58;48773:4;48768:2;48760:6;48756:15;48749:29;48564:221;:::o;48791:238::-;48931:34;48927:1;48919:6;48915:14;48908:58;49000:21;48995:2;48987:6;48983:15;48976:46;48791:238;:::o;49035:179::-;49175:31;49171:1;49163:6;49159:14;49152:55;49035:179;:::o;49220:220::-;49360:34;49356:1;49348:6;49344:14;49337:58;49429:3;49424:2;49416:6;49412:15;49405:28;49220:220;:::o;49446:233::-;49586:34;49582:1;49574:6;49570:14;49563:58;49655:16;49650:2;49642:6;49638:15;49631:41;49446:233;:::o;49685:249::-;49825:34;49821:1;49813:6;49809:14;49802:58;49894:32;49889:2;49881:6;49877:15;49870:57;49685:249;:::o;49940:181::-;50080:33;50076:1;50068:6;50064:14;50057:57;49940:181;:::o;50127:234::-;50267:34;50263:1;50255:6;50251:14;50244:58;50336:17;50331:2;50323:6;50319:15;50312:42;50127:234;:::o;50367:232::-;50507:34;50503:1;50495:6;50491:14;50484:58;50576:15;50571:2;50563:6;50559:15;50552:40;50367:232;:::o;50605:180::-;50745:32;50741:1;50733:6;50729:14;50722:56;50605:180;:::o;50791:221::-;50931:34;50927:1;50919:6;50915:14;50908:58;51000:4;50995:2;50987:6;50983:15;50976:29;50791:221;:::o;51018:119::-;51105:1;51098:5;51095:12;51085:46;;51111:18;;:::i;:::-;51085:46;51018:119;:::o;51143:122::-;51216:24;51234:5;51216:24;:::i;:::-;51209:5;51206:35;51196:63;;51255:1;51252;51245:12;51196:63;51143:122;:::o;51271:116::-;51341:21;51356:5;51341:21;:::i;:::-;51334:5;51331:32;51321:60;;51377:1;51374;51367:12;51321:60;51271:116;:::o;51393:120::-;51465:23;51482:5;51465:23;:::i;:::-;51458:5;51455:34;51445:62;;51503:1;51500;51493:12;51445:62;51393:120;:::o;51519:113::-;51606:1;51599:5;51596:12;51586:40;;51622:1;51619;51612:12;51586:40;51519:113;:::o;51638:122::-;51711:24;51729:5;51711:24;:::i;:::-;51704:5;51701:35;51691:63;;51750:1;51747;51740:12;51691:63;51638:122;:::o

Swarm Source

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