ETH Price: $3,363.91 (-2.34%)
Gas: 2 Gwei

Token

LilTrump (LilTrump)
 

Overview

Max Total Supply

500 LilTrump

Holders

119

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jeffbeamishmarket.eth
Balance
1 LilTrump
0x773e46b1b1a9b0e976c1e6774350f84edb40da42
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LilTrump

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 2023-01-08
*/

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: @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/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: 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 = 0;

  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: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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




pragma solidity ^0.8.0;




contract LilTrump is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public WalletMint;
    bool public MintStartEnabled  = false;
    uint public MintPrice = 0.03 ether; 
    string public baseURI;  
    uint public freeMint = 0;
    uint public maxMintPerTx = 11;  
    uint public maxSupply = 500;

    constructor() ERC721A("LilTrump", "LilTrump",69,6969)
    {
        baseURI = "ipfs://QmbiZ3KHuNjUUMnWfPcxCikDgB5VJ5kSb67cDNky2N1qyu/";
        MintStartEnabled = true;
    }

    function mint(uint256 qty) external payable
    {
        require(MintStartEnabled , "LilTrump Info:  Minting Public Pause");
        require(qty <= maxMintPerTx, "LilTrump Info:  Limit Per Transaction");
        require(totalSupply() + qty <= maxSupply,"LilTrump Info:  Soldout");
        _safemint(qty);
    }

    function _safemint(uint256 qty) internal
    {
        if(WalletMint[msg.sender] < freeMint) 
        {
            if(qty < freeMint) qty = freeMint;
           require(msg.value >= (qty - freeMint) * MintPrice,"LilTrump Info:  Fund not enough");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
        else
        {
           require(msg.value >= qty * MintPrice,"LilTrump Info:  Fund not enough");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

    function airdropNFT(address to ,uint256 qty) external onlyOwner
    {
        _safeMint(to, qty);
    }

    function OwnerBatchMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

    function setPublicMinting() external onlyOwner {
        MintStartEnabled  = !MintStartEnabled ;
    }
    
    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        MintPrice = price_;
    }

    function setmaxMintPerTx(uint256 maxMintPerTx_) external onlyOwner {
        maxMintPerTx = maxMintPerTx_;
    }

    function setMaxFreeMint(uint256 qty_) external onlyOwner {
        freeMint = qty_;
    }

    function setmaxMint(uint256 maxMint_) external onlyOwner {
        maxSupply = maxMint_;
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(payable(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":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintStartEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdropNFT","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setmaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx_","type":"uint256"}],"name":"setmaxMintPerTx","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556000600b60006101000a81548160ff021916908315150217905550666a94d74f430000600c556000600e55600b600f556101f46010553480156200005057600080fd5b506040518060400160405280600881526020017f4c696c5472756d700000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4c696c5472756d700000000000000000000000000000000000000000000000008152506045611b396000811162000108576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ff90620003fd565b60405180910390fd5b600082116200014e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014590620003db565b60405180910390fd5b836001908051906020019062000166929190620002dd565b5082600290805190602001906200017f929190620002dd565b508160a08181525050806080818152505050505050620001b4620001a86200020f60201b60201c565b6200021760201b60201c565b600160098190555060405180606001604052806036815260200162004be160369139600d9080519060200190620001ed929190620002dd565b506001600b60006101000a81548160ff02191690831515021790555062000533565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002eb9062000430565b90600052602060002090601f0160209004810192826200030f57600085556200035b565b82601f106200032a57805160ff19168380011785556200035b565b828001600101855582156200035b579182015b828111156200035a5782518255916020019190600101906200033d565b5b5090506200036a91906200036e565b5090565b5b80821115620003895760008160009055506001016200036f565b5090565b60006200039c6027836200041f565b9150620003a98262000495565b604082019050919050565b6000620003c3602e836200041f565b9150620003d082620004e4565b604082019050919050565b60006020820190508181036000830152620003f6816200038d565b9050919050565b600060208201905081810360008301526200041881620003b4565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200044957607f821691505b6020821081141562000460576200045f62000466565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161467d6200056460003960008181611f3101528181611f5a01526128b501526000505061467d6000f3fe6080604052600436106102255760003560e01c806379f34a1011610123578063bc46081b116100ab578063de7fcb1d1161006f578063de7fcb1d146107e2578063e645f7081461080d578063e985e9c51461084a578063f2fde38b14610887578063fdbf9ef2146108b057610225565b8063bc46081b146106e7578063c87b56dd14610712578063d5abeb011461074f578063d7224ba01461077a578063dc33e681146107a557610225565b806395d89b41116100f257806395d89b4114610637578063a0712d6814610662578063a22cb4651461067e578063ac915c06146106a7578063b88d4fde146106be57610225565b806379f34a10146105915780638171609b146105ba5780638da5cb5b146105e357806391b7f5ed1461060e57610225565b80633ccfd60b116101b15780636352211e116101755780636352211e146104ac5780636c0360eb146104e957806370a0823114610514578063715018a614610551578063742a4c9b1461056857610225565b80633ccfd60b146103db57806342842e0e146103f25780634f6ccce71461041b57806355f804b3146104585780635b70ea9f1461048157610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c5780632fc2e29c1461038957806337e36f79146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906130c5565b6108db565b60405161025e919061365f565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b604051610289919061367a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061316c565b610ab7565b6040516102c691906135f8565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613085565b610b3c565b005b34801561030457600080fd5b5061030d610c55565b60405161031a91906139bc565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612f6f565b610c5e565b005b34801561035857600080fd5b50610373600480360381019061036e9190613085565b610c6e565b60405161038091906139bc565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab919061316c565b610e6c565b005b3480156103be57600080fd5b506103d960048036038101906103d49190613085565b610e7e565b005b3480156103e757600080fd5b506103f0610e94565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612f6f565b610efc565b005b34801561042757600080fd5b50610442600480360381019061043d919061316c565b610f1c565b60405161044f91906139bc565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061311f565b610f6f565b005b34801561048d57600080fd5b50610496610f8d565b6040516104a391906139bc565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce919061316c565b610f93565b6040516104e091906135f8565b60405180910390f35b3480156104f557600080fd5b506104fe610fa9565b60405161050b919061367a565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612f02565b611037565b60405161054891906139bc565b60405180910390f35b34801561055d57600080fd5b50610566611120565b005b34801561057457600080fd5b5061058f600480360381019061058a919061316c565b611134565b005b34801561059d57600080fd5b506105b860048036038101906105b3919061316c565b611146565b005b3480156105c657600080fd5b506105e160048036038101906105dc919061316c565b611158565b005b3480156105ef57600080fd5b506105f861116d565b60405161060591906135f8565b60405180910390f35b34801561061a57600080fd5b506106356004803603810190610630919061316c565b611197565b005b34801561064357600080fd5b5061064c6111a9565b604051610659919061367a565b60405180910390f35b61067c6004803603810190610677919061316c565b61123b565b005b34801561068a57600080fd5b506106a560048036038101906106a09190613045565b611332565b005b3480156106b357600080fd5b506106bc6114b3565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190612fc2565b6114e7565b005b3480156106f357600080fd5b506106fc611543565b604051610709919061365f565b60405180910390f35b34801561071e57600080fd5b506107396004803603810190610734919061316c565b611556565b604051610746919061367a565b60405180910390f35b34801561075b57600080fd5b506107646115fd565b60405161077191906139bc565b60405180910390f35b34801561078657600080fd5b5061078f611603565b60405161079c91906139bc565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612f02565b611609565b6040516107d991906139bc565b60405180910390f35b3480156107ee57600080fd5b506107f761161b565b60405161080491906139bc565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612f02565b611621565b60405161084191906139bc565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190612f2f565b611639565b60405161087e919061365f565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190612f02565b6116cd565b005b3480156108bc57600080fd5b506108c5611751565b6040516108d291906139bc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82611757565b5b9050919050565b606060018054610a3490613cfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090613cfb565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac2826117c1565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af89061397c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4782610f93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf906138bc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd76117ce565b73ffffffffffffffffffffffffffffffffffffffff161480610c065750610c0581610c006117ce565b611639565b5b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c906137dc565b60405180910390fd5b610c508383836117d6565b505050565b60008054905090565b610c69838383611888565b505050565b6000610c7983611037565b8210610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb19061369c565b60405180910390fd5b6000610cc4610c55565b905060008060005b83811015610e2a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dbe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e165786841415610e07578195505050505050610e66565b8380610e1290613d5e565b9450505b508080610e2290613d5e565b915050610ccc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d9061393c565b60405180910390fd5b92915050565b610e74611e41565b8060108190555050565b610e86611e41565b610e908282611ebf565b5050565b610e9c611e41565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ef9573d6000803e3d6000fd5b50565b610f17838383604051806020016040528060008152506114e7565b505050565b6000610f26610c55565b8210610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e9061377c565b60405180910390fd5b819050919050565b610f77611e41565b8181600d9190610f88929190612cf6565b505050565b600e5481565b6000610f9e82611edd565b600001519050919050565b600d8054610fb690613cfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe290613cfb565b801561102f5780601f106110045761010080835404028352916020019161102f565b820191906000526020600020905b81548152906001019060200180831161101257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f906137fc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611128611e41565b61113260006120e0565b565b61113c611e41565b80600e8190555050565b61114e611e41565b80600f8190555050565b611160611e41565b61116a3382611ebf565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61119f611e41565b80600c8190555050565b6060600280546111b890613cfb565b80601f01602080910402602001604051908101604052809291908181526020018280546111e490613cfb565b80156112315780601f1061120657610100808354040283529160200191611231565b820191906000526020600020905b81548152906001019060200180831161121457829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1661128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906136bc565b60405180910390fd5b600f548111156112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061375c565b60405180910390fd5b601054816112db610c55565b6112e59190613ab6565b1115611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d906136fc565b60405180910390fd5b61132f816121a6565b50565b61133a6117ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f9061387c565b60405180910390fd5b80600660006113b56117ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114626117ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a7919061365f565b60405180910390a35050565b6114bb611e41565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6114f2848484611888565b6114fe84848484612375565b61153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906138dc565b60405180910390fd5b50505050565b600b60009054906101000a900460ff1681565b6060611561826117c1565b6115a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115979061385c565b60405180910390fd5b60006115aa61250c565b905060008151116115ca57604051806020016040528060008152506115f5565b806115d48461259e565b6040516020016115e59291906135d4565b6040516020818303038152906040525b915050919050565b60105481565b60075481565b6000611614826126ff565b9050919050565b600f5481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116d5611e41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c9061371c565b60405180910390fd5b61174e816120e0565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061189382611edd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118ba6117ce565b73ffffffffffffffffffffffffffffffffffffffff16148061191657506118df6117ce565b73ffffffffffffffffffffffffffffffffffffffff166118fe84610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b806119325750611931826000015161192c6117ce565b611639565b5b905080611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b9061389c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dd9061381c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d9061379c565b60405180910390fd5b611a6385858560016127e8565b611a7360008484600001516117d6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ae19190613b97565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b859190613a70565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c8b9190613ab6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611dd157611d01816117c1565b15611dd0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e3986868660016127ee565b505050505050565b611e496117ce565b73ffffffffffffffffffffffffffffffffffffffff16611e6761116d565b73ffffffffffffffffffffffffffffffffffffffff1614611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb49061383c565b60405180910390fd5b565b611ed98282604051806020016040528060008152506127f4565b5050565b611ee5612d7c565b611eee826117c1565b611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f249061373c565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611f915760017f000000000000000000000000000000000000000000000000000000000000000084611f849190613bcb565b611f8e9190613ab6565b90505b60008390505b81811061209f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461208b578093505050506120db565b50808061209790613cd1565b915050611f97565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d29061395c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156122c157600e548110156121ff57600e5490505b600c54600e54826122109190613bcb565b61221a9190613b3d565b34101561225c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612253906136dc565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ab9190613ab6565b925050819055506122bc3382611ebf565b612372565b600c54816122cf9190613b3d565b341015612311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612308906136dc565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123609190613ab6565b925050819055506123713382611ebf565b5b50565b60006123968473ffffffffffffffffffffffffffffffffffffffff16612cd3565b156124ff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123bf6117ce565b8786866040518563ffffffff1660e01b81526004016123e19493929190613613565b602060405180830381600087803b1580156123fb57600080fd5b505af192505050801561242c57506040513d601f19601f8201168201806040525081019061242991906130f2565b60015b6124af573d806000811461245c576040519150601f19603f3d011682016040523d82523d6000602084013e612461565b606091505b506000815114156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e906138dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612504565b600190505b949350505050565b6060600d805461251b90613cfb565b80601f016020809104026020016040519081016040528092919081815260200182805461254790613cfb565b80156125945780601f1061256957610100808354040283529160200191612594565b820191906000526020600020905b81548152906001019060200180831161257757829003601f168201915b5050505050905090565b606060008214156125e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fa565b600082905060005b6000821461261857808061260190613d5e565b915050600a826126119190613b0c565b91506125ee565b60008167ffffffffffffffff81111561263457612633613e94565b5b6040519080825280601f01601f1916602001820160405280156126665781602001600182028036833780820191505090505b5090505b600085146126f35760018261267f9190613bcb565b9150600a8561268e9190613da7565b603061269a9190613ab6565b60f81b8183815181106126b0576126af613e65565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ec9190613b0c565b945061266a565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612767906137bc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561286a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128619061391c565b60405180910390fd5b612873816117c1565b156128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa906138fc565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290d9061399c565b60405180910390fd5b61292360008583866127e8565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a209190613a70565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a479190613a70565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612cb657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c566000888488612375565b612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c906138dc565b60405180910390fd5b8180612ca090613d5e565b9250508080612cae90613d5e565b915050612be5565b5080600081905550612ccb60008785886127ee565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d0290613cfb565b90600052602060002090601f016020900481019282612d245760008555612d6b565b82601f10612d3d57803560ff1916838001178555612d6b565b82800160010185558215612d6b579182015b82811115612d6a578235825591602001919060010190612d4f565b5b509050612d789190612db6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612dcf576000816000905550600101612db7565b5090565b6000612de6612de1846139fc565b6139d7565b905082815260208101848484011115612e0257612e01613ed2565b5b612e0d848285613c8f565b509392505050565b600081359050612e24816145eb565b92915050565b600081359050612e3981614602565b92915050565b600081359050612e4e81614619565b92915050565b600081519050612e6381614619565b92915050565b600082601f830112612e7e57612e7d613ec8565b5b8135612e8e848260208601612dd3565b91505092915050565b60008083601f840112612ead57612eac613ec8565b5b8235905067ffffffffffffffff811115612eca57612ec9613ec3565b5b602083019150836001820283011115612ee657612ee5613ecd565b5b9250929050565b600081359050612efc81614630565b92915050565b600060208284031215612f1857612f17613edc565b5b6000612f2684828501612e15565b91505092915050565b60008060408385031215612f4657612f45613edc565b5b6000612f5485828601612e15565b9250506020612f6585828601612e15565b9150509250929050565b600080600060608486031215612f8857612f87613edc565b5b6000612f9686828701612e15565b9350506020612fa786828701612e15565b9250506040612fb886828701612eed565b9150509250925092565b60008060008060808587031215612fdc57612fdb613edc565b5b6000612fea87828801612e15565b9450506020612ffb87828801612e15565b935050604061300c87828801612eed565b925050606085013567ffffffffffffffff81111561302d5761302c613ed7565b5b61303987828801612e69565b91505092959194509250565b6000806040838503121561305c5761305b613edc565b5b600061306a85828601612e15565b925050602061307b85828601612e2a565b9150509250929050565b6000806040838503121561309c5761309b613edc565b5b60006130aa85828601612e15565b92505060206130bb85828601612eed565b9150509250929050565b6000602082840312156130db576130da613edc565b5b60006130e984828501612e3f565b91505092915050565b60006020828403121561310857613107613edc565b5b600061311684828501612e54565b91505092915050565b6000806020838503121561313657613135613edc565b5b600083013567ffffffffffffffff81111561315457613153613ed7565b5b61316085828601612e97565b92509250509250929050565b60006020828403121561318257613181613edc565b5b600061319084828501612eed565b91505092915050565b6131a281613bff565b82525050565b6131b181613c11565b82525050565b60006131c282613a2d565b6131cc8185613a43565b93506131dc818560208601613c9e565b6131e581613ee1565b840191505092915050565b60006131fb82613a38565b6132058185613a54565b9350613215818560208601613c9e565b61321e81613ee1565b840191505092915050565b600061323482613a38565b61323e8185613a65565b935061324e818560208601613c9e565b80840191505092915050565b6000613267602283613a54565b915061327282613ef2565b604082019050919050565b600061328a602483613a54565b915061329582613f41565b604082019050919050565b60006132ad601f83613a54565b91506132b882613f90565b602082019050919050565b60006132d0601783613a54565b91506132db82613fb9565b602082019050919050565b60006132f3602683613a54565b91506132fe82613fe2565b604082019050919050565b6000613316602a83613a54565b915061332182614031565b604082019050919050565b6000613339602583613a54565b915061334482614080565b604082019050919050565b600061335c602383613a54565b9150613367826140cf565b604082019050919050565b600061337f602583613a54565b915061338a8261411e565b604082019050919050565b60006133a2603183613a54565b91506133ad8261416d565b604082019050919050565b60006133c5603983613a54565b91506133d0826141bc565b604082019050919050565b60006133e8602b83613a54565b91506133f38261420b565b604082019050919050565b600061340b602683613a54565b91506134168261425a565b604082019050919050565b600061342e602083613a54565b9150613439826142a9565b602082019050919050565b6000613451602f83613a54565b915061345c826142d2565b604082019050919050565b6000613474601a83613a54565b915061347f82614321565b602082019050919050565b6000613497603283613a54565b91506134a28261434a565b604082019050919050565b60006134ba602283613a54565b91506134c582614399565b604082019050919050565b60006134dd603383613a54565b91506134e8826143e8565b604082019050919050565b6000613500601d83613a54565b915061350b82614437565b602082019050919050565b6000613523602183613a54565b915061352e82614460565b604082019050919050565b6000613546602e83613a54565b9150613551826144af565b604082019050919050565b6000613569602f83613a54565b9150613574826144fe565b604082019050919050565b600061358c602d83613a54565b91506135978261454d565b604082019050919050565b60006135af602283613a54565b91506135ba8261459c565b604082019050919050565b6135ce81613c85565b82525050565b60006135e08285613229565b91506135ec8284613229565b91508190509392505050565b600060208201905061360d6000830184613199565b92915050565b60006080820190506136286000830187613199565b6136356020830186613199565b61364260408301856135c5565b818103606083015261365481846131b7565b905095945050505050565b600060208201905061367460008301846131a8565b92915050565b6000602082019050818103600083015261369481846131f0565b905092915050565b600060208201905081810360008301526136b58161325a565b9050919050565b600060208201905081810360008301526136d58161327d565b9050919050565b600060208201905081810360008301526136f5816132a0565b9050919050565b60006020820190508181036000830152613715816132c3565b9050919050565b60006020820190508181036000830152613735816132e6565b9050919050565b6000602082019050818103600083015261375581613309565b9050919050565b600060208201905081810360008301526137758161332c565b9050919050565b600060208201905081810360008301526137958161334f565b9050919050565b600060208201905081810360008301526137b581613372565b9050919050565b600060208201905081810360008301526137d581613395565b9050919050565b600060208201905081810360008301526137f5816133b8565b9050919050565b60006020820190508181036000830152613815816133db565b9050919050565b60006020820190508181036000830152613835816133fe565b9050919050565b6000602082019050818103600083015261385581613421565b9050919050565b6000602082019050818103600083015261387581613444565b9050919050565b6000602082019050818103600083015261389581613467565b9050919050565b600060208201905081810360008301526138b58161348a565b9050919050565b600060208201905081810360008301526138d5816134ad565b9050919050565b600060208201905081810360008301526138f5816134d0565b9050919050565b60006020820190508181036000830152613915816134f3565b9050919050565b6000602082019050818103600083015261393581613516565b9050919050565b6000602082019050818103600083015261395581613539565b9050919050565b600060208201905081810360008301526139758161355c565b9050919050565b600060208201905081810360008301526139958161357f565b9050919050565b600060208201905081810360008301526139b5816135a2565b9050919050565b60006020820190506139d160008301846135c5565b92915050565b60006139e16139f2565b90506139ed8282613d2d565b919050565b6000604051905090565b600067ffffffffffffffff821115613a1757613a16613e94565b5b613a2082613ee1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a7b82613c49565b9150613a8683613c49565b9250826fffffffffffffffffffffffffffffffff03821115613aab57613aaa613dd8565b5b828201905092915050565b6000613ac182613c85565b9150613acc83613c85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b0157613b00613dd8565b5b828201905092915050565b6000613b1782613c85565b9150613b2283613c85565b925082613b3257613b31613e07565b5b828204905092915050565b6000613b4882613c85565b9150613b5383613c85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b8c57613b8b613dd8565b5b828202905092915050565b6000613ba282613c49565b9150613bad83613c49565b925082821015613bc057613bbf613dd8565b5b828203905092915050565b6000613bd682613c85565b9150613be183613c85565b925082821015613bf457613bf3613dd8565b5b828203905092915050565b6000613c0a82613c65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cbc578082015181840152602081019050613ca1565b83811115613ccb576000848401525b50505050565b6000613cdc82613c85565b91506000821415613cf057613cef613dd8565b5b600182039050919050565b60006002820490506001821680613d1357607f821691505b60208210811415613d2757613d26613e36565b5b50919050565b613d3682613ee1565b810181811067ffffffffffffffff82111715613d5557613d54613e94565b5b80604052505050565b6000613d6982613c85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9c57613d9b613dd8565b5b600182019050919050565b6000613db282613c85565b9150613dbd83613c85565b925082613dcd57613dcc613e07565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696c5472756d7020496e666f3a20204d696e74696e67205075626c6963205060008201527f6175736500000000000000000000000000000000000000000000000000000000602082015250565b7f4c696c5472756d7020496e666f3a202046756e64206e6f7420656e6f75676800600082015250565b7f4c696c5472756d7020496e666f3a2020536f6c646f7574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4c696c5472756d7020496e666f3a20204c696d697420506572205472616e736160008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6145f481613bff565b81146145ff57600080fd5b50565b61460b81613c11565b811461461657600080fd5b50565b61462281613c1d565b811461462d57600080fd5b50565b61463981613c85565b811461464457600080fd5b5056fea264697066735822122068969c91e181d831d7d950621e00349023be911e1f96caf5f7270bc38583c2e964736f6c63430008070033697066733a2f2f516d62695a334b48754e6a55554d6e576650637843696b44674235564a356b5362363763444e6b79324e317179752f

Deployed Bytecode

0x6080604052600436106102255760003560e01c806379f34a1011610123578063bc46081b116100ab578063de7fcb1d1161006f578063de7fcb1d146107e2578063e645f7081461080d578063e985e9c51461084a578063f2fde38b14610887578063fdbf9ef2146108b057610225565b8063bc46081b146106e7578063c87b56dd14610712578063d5abeb011461074f578063d7224ba01461077a578063dc33e681146107a557610225565b806395d89b41116100f257806395d89b4114610637578063a0712d6814610662578063a22cb4651461067e578063ac915c06146106a7578063b88d4fde146106be57610225565b806379f34a10146105915780638171609b146105ba5780638da5cb5b146105e357806391b7f5ed1461060e57610225565b80633ccfd60b116101b15780636352211e116101755780636352211e146104ac5780636c0360eb146104e957806370a0823114610514578063715018a614610551578063742a4c9b1461056857610225565b80633ccfd60b146103db57806342842e0e146103f25780634f6ccce71461041b57806355f804b3146104585780635b70ea9f1461048157610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c5780632fc2e29c1461038957806337e36f79146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906130c5565b6108db565b60405161025e919061365f565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b604051610289919061367a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061316c565b610ab7565b6040516102c691906135f8565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613085565b610b3c565b005b34801561030457600080fd5b5061030d610c55565b60405161031a91906139bc565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612f6f565b610c5e565b005b34801561035857600080fd5b50610373600480360381019061036e9190613085565b610c6e565b60405161038091906139bc565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab919061316c565b610e6c565b005b3480156103be57600080fd5b506103d960048036038101906103d49190613085565b610e7e565b005b3480156103e757600080fd5b506103f0610e94565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612f6f565b610efc565b005b34801561042757600080fd5b50610442600480360381019061043d919061316c565b610f1c565b60405161044f91906139bc565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061311f565b610f6f565b005b34801561048d57600080fd5b50610496610f8d565b6040516104a391906139bc565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce919061316c565b610f93565b6040516104e091906135f8565b60405180910390f35b3480156104f557600080fd5b506104fe610fa9565b60405161050b919061367a565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612f02565b611037565b60405161054891906139bc565b60405180910390f35b34801561055d57600080fd5b50610566611120565b005b34801561057457600080fd5b5061058f600480360381019061058a919061316c565b611134565b005b34801561059d57600080fd5b506105b860048036038101906105b3919061316c565b611146565b005b3480156105c657600080fd5b506105e160048036038101906105dc919061316c565b611158565b005b3480156105ef57600080fd5b506105f861116d565b60405161060591906135f8565b60405180910390f35b34801561061a57600080fd5b506106356004803603810190610630919061316c565b611197565b005b34801561064357600080fd5b5061064c6111a9565b604051610659919061367a565b60405180910390f35b61067c6004803603810190610677919061316c565b61123b565b005b34801561068a57600080fd5b506106a560048036038101906106a09190613045565b611332565b005b3480156106b357600080fd5b506106bc6114b3565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190612fc2565b6114e7565b005b3480156106f357600080fd5b506106fc611543565b604051610709919061365f565b60405180910390f35b34801561071e57600080fd5b506107396004803603810190610734919061316c565b611556565b604051610746919061367a565b60405180910390f35b34801561075b57600080fd5b506107646115fd565b60405161077191906139bc565b60405180910390f35b34801561078657600080fd5b5061078f611603565b60405161079c91906139bc565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612f02565b611609565b6040516107d991906139bc565b60405180910390f35b3480156107ee57600080fd5b506107f761161b565b60405161080491906139bc565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612f02565b611621565b60405161084191906139bc565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190612f2f565b611639565b60405161087e919061365f565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190612f02565b6116cd565b005b3480156108bc57600080fd5b506108c5611751565b6040516108d291906139bc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82611757565b5b9050919050565b606060018054610a3490613cfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090613cfb565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac2826117c1565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af89061397c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4782610f93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf906138bc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd76117ce565b73ffffffffffffffffffffffffffffffffffffffff161480610c065750610c0581610c006117ce565b611639565b5b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c906137dc565b60405180910390fd5b610c508383836117d6565b505050565b60008054905090565b610c69838383611888565b505050565b6000610c7983611037565b8210610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb19061369c565b60405180910390fd5b6000610cc4610c55565b905060008060005b83811015610e2a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dbe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e165786841415610e07578195505050505050610e66565b8380610e1290613d5e565b9450505b508080610e2290613d5e565b915050610ccc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d9061393c565b60405180910390fd5b92915050565b610e74611e41565b8060108190555050565b610e86611e41565b610e908282611ebf565b5050565b610e9c611e41565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ef9573d6000803e3d6000fd5b50565b610f17838383604051806020016040528060008152506114e7565b505050565b6000610f26610c55565b8210610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e9061377c565b60405180910390fd5b819050919050565b610f77611e41565b8181600d9190610f88929190612cf6565b505050565b600e5481565b6000610f9e82611edd565b600001519050919050565b600d8054610fb690613cfb565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe290613cfb565b801561102f5780601f106110045761010080835404028352916020019161102f565b820191906000526020600020905b81548152906001019060200180831161101257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f906137fc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611128611e41565b61113260006120e0565b565b61113c611e41565b80600e8190555050565b61114e611e41565b80600f8190555050565b611160611e41565b61116a3382611ebf565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61119f611e41565b80600c8190555050565b6060600280546111b890613cfb565b80601f01602080910402602001604051908101604052809291908181526020018280546111e490613cfb565b80156112315780601f1061120657610100808354040283529160200191611231565b820191906000526020600020905b81548152906001019060200180831161121457829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1661128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906136bc565b60405180910390fd5b600f548111156112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061375c565b60405180910390fd5b601054816112db610c55565b6112e59190613ab6565b1115611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d906136fc565b60405180910390fd5b61132f816121a6565b50565b61133a6117ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f9061387c565b60405180910390fd5b80600660006113b56117ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114626117ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a7919061365f565b60405180910390a35050565b6114bb611e41565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6114f2848484611888565b6114fe84848484612375565b61153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906138dc565b60405180910390fd5b50505050565b600b60009054906101000a900460ff1681565b6060611561826117c1565b6115a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115979061385c565b60405180910390fd5b60006115aa61250c565b905060008151116115ca57604051806020016040528060008152506115f5565b806115d48461259e565b6040516020016115e59291906135d4565b6040516020818303038152906040525b915050919050565b60105481565b60075481565b6000611614826126ff565b9050919050565b600f5481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116d5611e41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c9061371c565b60405180910390fd5b61174e816120e0565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061189382611edd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118ba6117ce565b73ffffffffffffffffffffffffffffffffffffffff16148061191657506118df6117ce565b73ffffffffffffffffffffffffffffffffffffffff166118fe84610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b806119325750611931826000015161192c6117ce565b611639565b5b905080611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b9061389c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dd9061381c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d9061379c565b60405180910390fd5b611a6385858560016127e8565b611a7360008484600001516117d6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ae19190613b97565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b859190613a70565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c8b9190613ab6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611dd157611d01816117c1565b15611dd0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e3986868660016127ee565b505050505050565b611e496117ce565b73ffffffffffffffffffffffffffffffffffffffff16611e6761116d565b73ffffffffffffffffffffffffffffffffffffffff1614611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb49061383c565b60405180910390fd5b565b611ed98282604051806020016040528060008152506127f4565b5050565b611ee5612d7c565b611eee826117c1565b611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f249061373c565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000458310611f915760017f000000000000000000000000000000000000000000000000000000000000004584611f849190613bcb565b611f8e9190613ab6565b90505b60008390505b81811061209f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461208b578093505050506120db565b50808061209790613cd1565b915050611f97565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d29061395c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156122c157600e548110156121ff57600e5490505b600c54600e54826122109190613bcb565b61221a9190613b3d565b34101561225c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612253906136dc565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ab9190613ab6565b925050819055506122bc3382611ebf565b612372565b600c54816122cf9190613b3d565b341015612311576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612308906136dc565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123609190613ab6565b925050819055506123713382611ebf565b5b50565b60006123968473ffffffffffffffffffffffffffffffffffffffff16612cd3565b156124ff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123bf6117ce565b8786866040518563ffffffff1660e01b81526004016123e19493929190613613565b602060405180830381600087803b1580156123fb57600080fd5b505af192505050801561242c57506040513d601f19601f8201168201806040525081019061242991906130f2565b60015b6124af573d806000811461245c576040519150601f19603f3d011682016040523d82523d6000602084013e612461565b606091505b506000815114156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e906138dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612504565b600190505b949350505050565b6060600d805461251b90613cfb565b80601f016020809104026020016040519081016040528092919081815260200182805461254790613cfb565b80156125945780601f1061256957610100808354040283529160200191612594565b820191906000526020600020905b81548152906001019060200180831161257757829003601f168201915b5050505050905090565b606060008214156125e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fa565b600082905060005b6000821461261857808061260190613d5e565b915050600a826126119190613b0c565b91506125ee565b60008167ffffffffffffffff81111561263457612633613e94565b5b6040519080825280601f01601f1916602001820160405280156126665781602001600182028036833780820191505090505b5090505b600085146126f35760018261267f9190613bcb565b9150600a8561268e9190613da7565b603061269a9190613ab6565b60f81b8183815181106126b0576126af613e65565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ec9190613b0c565b945061266a565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612767906137bc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561286a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128619061391c565b60405180910390fd5b612873816117c1565b156128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa906138fc565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000045831115612916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290d9061399c565b60405180910390fd5b61292360008583866127e8565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a209190613a70565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a479190613a70565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612cb657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c566000888488612375565b612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c906138dc565b60405180910390fd5b8180612ca090613d5e565b9250508080612cae90613d5e565b915050612be5565b5080600081905550612ccb60008785886127ee565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612d0290613cfb565b90600052602060002090601f016020900481019282612d245760008555612d6b565b82601f10612d3d57803560ff1916838001178555612d6b565b82800160010185558215612d6b579182015b82811115612d6a578235825591602001919060010190612d4f565b5b509050612d789190612db6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612dcf576000816000905550600101612db7565b5090565b6000612de6612de1846139fc565b6139d7565b905082815260208101848484011115612e0257612e01613ed2565b5b612e0d848285613c8f565b509392505050565b600081359050612e24816145eb565b92915050565b600081359050612e3981614602565b92915050565b600081359050612e4e81614619565b92915050565b600081519050612e6381614619565b92915050565b600082601f830112612e7e57612e7d613ec8565b5b8135612e8e848260208601612dd3565b91505092915050565b60008083601f840112612ead57612eac613ec8565b5b8235905067ffffffffffffffff811115612eca57612ec9613ec3565b5b602083019150836001820283011115612ee657612ee5613ecd565b5b9250929050565b600081359050612efc81614630565b92915050565b600060208284031215612f1857612f17613edc565b5b6000612f2684828501612e15565b91505092915050565b60008060408385031215612f4657612f45613edc565b5b6000612f5485828601612e15565b9250506020612f6585828601612e15565b9150509250929050565b600080600060608486031215612f8857612f87613edc565b5b6000612f9686828701612e15565b9350506020612fa786828701612e15565b9250506040612fb886828701612eed565b9150509250925092565b60008060008060808587031215612fdc57612fdb613edc565b5b6000612fea87828801612e15565b9450506020612ffb87828801612e15565b935050604061300c87828801612eed565b925050606085013567ffffffffffffffff81111561302d5761302c613ed7565b5b61303987828801612e69565b91505092959194509250565b6000806040838503121561305c5761305b613edc565b5b600061306a85828601612e15565b925050602061307b85828601612e2a565b9150509250929050565b6000806040838503121561309c5761309b613edc565b5b60006130aa85828601612e15565b92505060206130bb85828601612eed565b9150509250929050565b6000602082840312156130db576130da613edc565b5b60006130e984828501612e3f565b91505092915050565b60006020828403121561310857613107613edc565b5b600061311684828501612e54565b91505092915050565b6000806020838503121561313657613135613edc565b5b600083013567ffffffffffffffff81111561315457613153613ed7565b5b61316085828601612e97565b92509250509250929050565b60006020828403121561318257613181613edc565b5b600061319084828501612eed565b91505092915050565b6131a281613bff565b82525050565b6131b181613c11565b82525050565b60006131c282613a2d565b6131cc8185613a43565b93506131dc818560208601613c9e565b6131e581613ee1565b840191505092915050565b60006131fb82613a38565b6132058185613a54565b9350613215818560208601613c9e565b61321e81613ee1565b840191505092915050565b600061323482613a38565b61323e8185613a65565b935061324e818560208601613c9e565b80840191505092915050565b6000613267602283613a54565b915061327282613ef2565b604082019050919050565b600061328a602483613a54565b915061329582613f41565b604082019050919050565b60006132ad601f83613a54565b91506132b882613f90565b602082019050919050565b60006132d0601783613a54565b91506132db82613fb9565b602082019050919050565b60006132f3602683613a54565b91506132fe82613fe2565b604082019050919050565b6000613316602a83613a54565b915061332182614031565b604082019050919050565b6000613339602583613a54565b915061334482614080565b604082019050919050565b600061335c602383613a54565b9150613367826140cf565b604082019050919050565b600061337f602583613a54565b915061338a8261411e565b604082019050919050565b60006133a2603183613a54565b91506133ad8261416d565b604082019050919050565b60006133c5603983613a54565b91506133d0826141bc565b604082019050919050565b60006133e8602b83613a54565b91506133f38261420b565b604082019050919050565b600061340b602683613a54565b91506134168261425a565b604082019050919050565b600061342e602083613a54565b9150613439826142a9565b602082019050919050565b6000613451602f83613a54565b915061345c826142d2565b604082019050919050565b6000613474601a83613a54565b915061347f82614321565b602082019050919050565b6000613497603283613a54565b91506134a28261434a565b604082019050919050565b60006134ba602283613a54565b91506134c582614399565b604082019050919050565b60006134dd603383613a54565b91506134e8826143e8565b604082019050919050565b6000613500601d83613a54565b915061350b82614437565b602082019050919050565b6000613523602183613a54565b915061352e82614460565b604082019050919050565b6000613546602e83613a54565b9150613551826144af565b604082019050919050565b6000613569602f83613a54565b9150613574826144fe565b604082019050919050565b600061358c602d83613a54565b91506135978261454d565b604082019050919050565b60006135af602283613a54565b91506135ba8261459c565b604082019050919050565b6135ce81613c85565b82525050565b60006135e08285613229565b91506135ec8284613229565b91508190509392505050565b600060208201905061360d6000830184613199565b92915050565b60006080820190506136286000830187613199565b6136356020830186613199565b61364260408301856135c5565b818103606083015261365481846131b7565b905095945050505050565b600060208201905061367460008301846131a8565b92915050565b6000602082019050818103600083015261369481846131f0565b905092915050565b600060208201905081810360008301526136b58161325a565b9050919050565b600060208201905081810360008301526136d58161327d565b9050919050565b600060208201905081810360008301526136f5816132a0565b9050919050565b60006020820190508181036000830152613715816132c3565b9050919050565b60006020820190508181036000830152613735816132e6565b9050919050565b6000602082019050818103600083015261375581613309565b9050919050565b600060208201905081810360008301526137758161332c565b9050919050565b600060208201905081810360008301526137958161334f565b9050919050565b600060208201905081810360008301526137b581613372565b9050919050565b600060208201905081810360008301526137d581613395565b9050919050565b600060208201905081810360008301526137f5816133b8565b9050919050565b60006020820190508181036000830152613815816133db565b9050919050565b60006020820190508181036000830152613835816133fe565b9050919050565b6000602082019050818103600083015261385581613421565b9050919050565b6000602082019050818103600083015261387581613444565b9050919050565b6000602082019050818103600083015261389581613467565b9050919050565b600060208201905081810360008301526138b58161348a565b9050919050565b600060208201905081810360008301526138d5816134ad565b9050919050565b600060208201905081810360008301526138f5816134d0565b9050919050565b60006020820190508181036000830152613915816134f3565b9050919050565b6000602082019050818103600083015261393581613516565b9050919050565b6000602082019050818103600083015261395581613539565b9050919050565b600060208201905081810360008301526139758161355c565b9050919050565b600060208201905081810360008301526139958161357f565b9050919050565b600060208201905081810360008301526139b5816135a2565b9050919050565b60006020820190506139d160008301846135c5565b92915050565b60006139e16139f2565b90506139ed8282613d2d565b919050565b6000604051905090565b600067ffffffffffffffff821115613a1757613a16613e94565b5b613a2082613ee1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a7b82613c49565b9150613a8683613c49565b9250826fffffffffffffffffffffffffffffffff03821115613aab57613aaa613dd8565b5b828201905092915050565b6000613ac182613c85565b9150613acc83613c85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b0157613b00613dd8565b5b828201905092915050565b6000613b1782613c85565b9150613b2283613c85565b925082613b3257613b31613e07565b5b828204905092915050565b6000613b4882613c85565b9150613b5383613c85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b8c57613b8b613dd8565b5b828202905092915050565b6000613ba282613c49565b9150613bad83613c49565b925082821015613bc057613bbf613dd8565b5b828203905092915050565b6000613bd682613c85565b9150613be183613c85565b925082821015613bf457613bf3613dd8565b5b828203905092915050565b6000613c0a82613c65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cbc578082015181840152602081019050613ca1565b83811115613ccb576000848401525b50505050565b6000613cdc82613c85565b91506000821415613cf057613cef613dd8565b5b600182039050919050565b60006002820490506001821680613d1357607f821691505b60208210811415613d2757613d26613e36565b5b50919050565b613d3682613ee1565b810181811067ffffffffffffffff82111715613d5557613d54613e94565b5b80604052505050565b6000613d6982613c85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9c57613d9b613dd8565b5b600182019050919050565b6000613db282613c85565b9150613dbd83613c85565b925082613dcd57613dcc613e07565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696c5472756d7020496e666f3a20204d696e74696e67205075626c6963205060008201527f6175736500000000000000000000000000000000000000000000000000000000602082015250565b7f4c696c5472756d7020496e666f3a202046756e64206e6f7420656e6f75676800600082015250565b7f4c696c5472756d7020496e666f3a2020536f6c646f7574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4c696c5472756d7020496e666f3a20204c696d697420506572205472616e736160008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6145f481613bff565b81146145ff57600080fd5b50565b61460b81613c11565b811461461657600080fd5b50565b61462281613c1d565b811461462d57600080fd5b50565b61463981613c85565b811461464457600080fd5b5056fea264697066735822122068969c91e181d831d7d950621e00349023be911e1f96caf5f7270bc38583c2e964736f6c63430008070033

Deployed Bytecode Sourcemap

43255:2651:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28214:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29940:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31465:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31028:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26775:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32315:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27406:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45681:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44908:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45785:116;;;;;;;;;;;;;:::i;:::-;;32520:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26938:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45252:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43488:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29763:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43458:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28640:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42399:103;;;;;;;;;;;;;:::i;:::-;;45582:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45460:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45022:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41751:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45362:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30095:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43779:317;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31733:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45136:104;;;;;;;;;;;;;:::i;:::-;;32740:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43372:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30256:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43557:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37155:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44671:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43519:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43319:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32070:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42657:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43416:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28214:370;28341:4;28386:25;28371:40;;;:11;:40;;;;:99;;;;28437:33;28422:48;;;:11;:48;;;;28371:99;:160;;;;28496:35;28481:50;;;:11;:50;;;;28371:160;:207;;;;28542:36;28566:11;28542:23;:36::i;:::-;28371:207;28357:221;;28214:370;;;:::o;29940:94::-;29994:13;30023:5;30016:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29940:94;:::o;31465:204::-;31533:7;31557:16;31565:7;31557;:16::i;:::-;31549:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31639:15;:24;31655:7;31639:24;;;;;;;;;;;;;;;;;;;;;31632:31;;31465:204;;;:::o;31028:379::-;31097:13;31113:24;31129:7;31113:15;:24::i;:::-;31097:40;;31158:5;31152:11;;:2;:11;;;;31144:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31243:5;31227:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31252:37;31269:5;31276:12;:10;:12::i;:::-;31252:16;:37::i;:::-;31227:62;31211:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31373:28;31382:2;31386:7;31395:5;31373:8;:28::i;:::-;31090:317;31028:379;;:::o;26775:94::-;26828:7;26851:12;;26844:19;;26775:94;:::o;32315:142::-;32423:28;32433:4;32439:2;32443:7;32423:9;:28::i;:::-;32315:142;;;:::o;27406:744::-;27515:7;27550:16;27560:5;27550:9;:16::i;:::-;27542:5;:24;27534:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27612:22;27637:13;:11;:13::i;:::-;27612:38;;27657:19;27687:25;27737:9;27732:350;27756:14;27752:1;:18;27732:350;;;27786:31;27820:11;:14;27832:1;27820:14;;;;;;;;;;;27786:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27873:1;27847:28;;:9;:14;;;:28;;;27843:89;;27908:9;:14;;;27888:34;;27843:89;27965:5;27944:26;;:17;:26;;;27940:135;;;28002:5;27987:11;:20;27983:59;;;28029:1;28022:8;;;;;;;;;27983:59;28052:13;;;;;:::i;:::-;;;;27940:135;27777:305;27772:3;;;;;:::i;:::-;;;;27732:350;;;;28088:56;;;;;;;;;;:::i;:::-;;;;;;;;27406:744;;;;;:::o;45681:96::-;41637:13;:11;:13::i;:::-;45761:8:::1;45749:9;:20;;;;45681:96:::0;:::o;44908:106::-;41637:13;:11;:13::i;:::-;44988:18:::1;44998:2;45002:3;44988:9;:18::i;:::-;44908:106:::0;;:::o;45785:116::-;41637:13;:11;:13::i;:::-;45841:10:::1;45833:28;;:60;45878:4;45862:30;;;45833:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45785:116::o:0;32520:157::-;32632:39;32649:4;32655:2;32659:7;32632:39;;;;;;;;;;;;:16;:39::i;:::-;32520:157;;;:::o;26938:177::-;27005:7;27037:13;:11;:13::i;:::-;27029:5;:21;27021:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;27104:5;27097:12;;26938:177;;;:::o;45252:102::-;41637:13;:11;:13::i;:::-;45338:8:::1;;45328:7;:18;;;;;;;:::i;:::-;;45252:102:::0;;:::o;43488:24::-;;;;:::o;29763:118::-;29827:7;29850:20;29862:7;29850:11;:20::i;:::-;:25;;;29843:32;;29763:118;;;:::o;43458:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28640:211::-;28704:7;28745:1;28728:19;;:5;:19;;;;28720:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28817:12;:19;28830:5;28817:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28809:36;;28802:43;;28640:211;;;:::o;42399:103::-;41637:13;:11;:13::i;:::-;42464:30:::1;42491:1;42464:18;:30::i;:::-;42399:103::o:0;45582:91::-;41637:13;:11;:13::i;:::-;45661:4:::1;45650:8;:15;;;;45582:91:::0;:::o;45460:114::-;41637:13;:11;:13::i;:::-;45553::::1;45538:12;:28;;;;45460:114:::0;:::o;45022:106::-;41637:13;:11;:13::i;:::-;45094:26:::1;45104:10;45116:3;45094:9;:26::i;:::-;45022:106:::0;:::o;41751:87::-;41797:7;41824:6;;;;;;;;;;;41817:13;;41751:87;:::o;45362:90::-;41637:13;:11;:13::i;:::-;45438:6:::1;45426:9;:18;;;;45362:90:::0;:::o;30095:98::-;30151:13;30180:7;30173:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30095:98;:::o;43779:317::-;43847:16;;;;;;;;;;;43839:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43931:12;;43924:3;:19;;43916:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;44027:9;;44020:3;44004:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;43996:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44074:14;44084:3;44074:9;:14::i;:::-;43779:317;:::o;31733:274::-;31836:12;:10;:12::i;:::-;31824:24;;:8;:24;;;;31816:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31933:8;31888:18;:32;31907:12;:10;:12::i;:::-;31888:32;;;;;;;;;;;;;;;:42;31921:8;31888:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31982:8;31953:48;;31968:12;:10;:12::i;:::-;31953:48;;;31992:8;31953:48;;;;;;:::i;:::-;;;;;;;;31733:274;;:::o;45136:104::-;41637:13;:11;:13::i;:::-;45215:16:::1;;;;;;;;;;;45214:17;45194:16;;:37;;;;;;;;;;;;;;;;;;45136:104::o:0;32740:311::-;32877:28;32887:4;32893:2;32897:7;32877:9;:28::i;:::-;32928:48;32951:4;32957:2;32961:7;32970:5;32928:22;:48::i;:::-;32912:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32740:311;;;;:::o;43372:37::-;;;;;;;;;;;;;:::o;30256:394::-;30354:13;30395:16;30403:7;30395;:16::i;:::-;30379:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;30485:21;30509:10;:8;:10::i;:::-;30485:34;;30564:1;30546:7;30540:21;:25;:104;;;;;;;;;;;;;;;;;30601:7;30610:18;:7;:16;:18::i;:::-;30584:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30540:104;30526:118;;;30256:394;;;:::o;43557:27::-;;;;:::o;37155:43::-;;;;:::o;44671:113::-;44729:7;44756:20;44770:5;44756:13;:20::i;:::-;44749:27;;44671:113;;;:::o;43519:29::-;;;;:::o;43319:46::-;;;;;;;;;;;;;;;;;:::o;32070:186::-;32192:4;32215:18;:25;32234:5;32215:25;;;;;;;;;;;;;;;:35;32241:8;32215:35;;;;;;;;;;;;;;;;;;;;;;;;;32208:42;;32070:186;;;;:::o;42657:201::-;41637:13;:11;:13::i;:::-;42766:1:::1;42746:22;;:8;:22;;;;42738:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42822:28;42841:8;42822:18;:28::i;:::-;42657:201:::0;:::o;43416:34::-;;;;:::o;13886:157::-;13971:4;14010:25;13995:40;;;:11;:40;;;;13988:47;;13886:157;;;:::o;33290:105::-;33347:4;33377:12;;33367:7;:22;33360:29;;33290:105;;;:::o;24255:98::-;24308:7;24335:10;24328:17;;24255:98;:::o;36977:172::-;37101:2;37074:15;:24;37090:7;37074:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37135:7;37131:2;37115:28;;37124:5;37115:28;;;;;;;;;;;;36977:172;;;:::o;35342:1529::-;35439:35;35477:20;35489:7;35477:11;:20::i;:::-;35439:58;;35506:22;35548:13;:18;;;35532:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35601:12;:10;:12::i;:::-;35577:36;;:20;35589:7;35577:11;:20::i;:::-;:36;;;35532:81;:142;;;;35624:50;35641:13;:18;;;35661:12;:10;:12::i;:::-;35624:16;:50::i;:::-;35532:142;35506:169;;35700:17;35684:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35832:4;35810:26;;:13;:18;;;:26;;;35794:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35921:1;35907:16;;:2;:16;;;;35899:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35974:43;35996:4;36002:2;36006:7;36015:1;35974:21;:43::i;:::-;36074:49;36091:1;36095:7;36104:13;:18;;;36074:8;:49::i;:::-;36162:1;36132:12;:18;36145:4;36132:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36198:1;36170:12;:16;36183:2;36170:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36229:43;;;;;;;;36244:2;36229:43;;;;;;36255:15;36229:43;;;;;36206:11;:20;36218:7;36206:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36500:19;36532:1;36522:7;:11;;;;:::i;:::-;36500:33;;36585:1;36544:43;;:11;:24;36556:11;36544:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36540:236;;;36602:20;36610:11;36602:7;:20::i;:::-;36598:171;;;36662:97;;;;;;;;36689:13;:18;;;36662:97;;;;;;36720:13;:28;;;36662:97;;;;;36635:11;:24;36647:11;36635:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36598:171;36540:236;36808:7;36804:2;36789:27;;36798:4;36789:27;;;;;;;;;;;;36823:42;36844:4;36850:2;36854:7;36863:1;36823:20;:42::i;:::-;35432:1439;;;35342:1529;;;:::o;41916:132::-;41991:12;:10;:12::i;:::-;41980:23;;:7;:5;:7::i;:::-;:23;;;41972:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41916:132::o;33401:98::-;33466:27;33476:2;33480:8;33466:27;;;;;;;;;;;;:9;:27::i;:::-;33401:98;;:::o;29103:606::-;29179:21;;:::i;:::-;29220:16;29228:7;29220;:16::i;:::-;29212:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29292:26;29340:12;29329:7;:23;29325:93;;29409:1;29394:12;29384:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;29363:47;;29325:93;29431:12;29446:7;29431:22;;29426:212;29463:18;29455:4;:26;29426:212;;29500:31;29534:11;:17;29546:4;29534:17;;;;;;;;;;;29500:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29590:1;29564:28;;:9;:14;;;:28;;;29560:71;;29612:9;29605:16;;;;;;;29560:71;29491:147;29483:6;;;;;:::i;:::-;;;;29426:212;;;;29646:57;;;;;;;;;;:::i;:::-;;;;;;;;29103:606;;;;:::o;43018:191::-;43092:16;43111:6;;;;;;;;;;;43092:25;;43137:8;43128:6;;:17;;;;;;;;;;;;;;;;;;43192:8;43161:40;;43182:8;43161:40;;;;;;;;;;;;43081:128;43018:191;:::o;44104:559::-;44189:8;;44164:10;:22;44175:10;44164:22;;;;;;;;;;;;;;;;:33;44161:495;;;44233:8;;44227:3;:14;44224:33;;;44249:8;;44243:14;;44224:33;44311:9;;44299:8;;44293:3;:14;;;;:::i;:::-;44292:28;;;;:::i;:::-;44279:9;:41;;44271:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;44396:3;44370:10;:22;44381:10;44370:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;44413:26;44423:10;44435:3;44413:9;:26::i;:::-;44161:495;;;44516:9;;44510:3;:15;;;;:::i;:::-;44497:9;:28;;44489:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44601:3;44575:10;:22;44586:10;44575:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;44618:26;44628:10;44640:3;44618:9;:26::i;:::-;44161:495;44104:559;:::o;38692:690::-;38829:4;38846:15;:2;:13;;;:15::i;:::-;38842:535;;;38901:2;38885:36;;;38922:12;:10;:12::i;:::-;38936:4;38942:7;38951:5;38885:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38872:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39133:1;39116:6;:13;:18;39112:215;;;39149:61;;;;;;;;;;:::i;:::-;;;;;;;;39112:215;39295:6;39289:13;39280:6;39276:2;39272:15;39265:38;38872:464;39017:45;;;39007:55;;;:6;:55;;;;39000:62;;;;;38842:535;39365:4;39358:11;;38692:690;;;;;;;:::o;44792:108::-;44852:13;44885:7;44878:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44792:108;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;28857:240::-;28918:7;28967:1;28950:19;;:5;:19;;;;28934:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;29058:12;:19;29071:5;29058:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29050:41;;29043:48;;28857:240;;;:::o;39844:141::-;;;;;:::o;40371:140::-;;;;;:::o;33838:1272::-;33943:20;33966:12;;33943:35;;34007:1;33993:16;;:2;:16;;;;33985:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34184:21;34192:12;34184:7;:21::i;:::-;34183:22;34175:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34266:12;34254:8;:24;;34246:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34326:61;34356:1;34360:2;34364:12;34378:8;34326:21;:61::i;:::-;34396:30;34429:12;:16;34442:2;34429:16;;;;;;;;;;;;;;;34396:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34471:119;;;;;;;;34521:8;34491:11;:19;;;:39;;;;:::i;:::-;34471:119;;;;;;34574:8;34539:11;:24;;;:44;;;;:::i;:::-;34471:119;;;;;34452:12;:16;34465:2;34452:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34625:43;;;;;;;;34640:2;34625:43;;;;;;34651:15;34625:43;;;;;34597:11;:25;34609:12;34597:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34677:20;34700:12;34677:35;;34726:9;34721:281;34745:8;34741:1;:12;34721:281;;;34799:12;34795:2;34774:38;;34791:1;34774:38;;;;;;;;;;;;34839:59;34870:1;34874:2;34878:12;34892:5;34839:22;:59::i;:::-;34821:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34980:14;;;;;:::i;:::-;;;;34755:3;;;;;:::i;:::-;;;;34721:281;;;;35025:12;35010;:27;;;;35044:60;35073:1;35077:2;35081:12;35095:8;35044:20;:60::i;:::-;33936:1174;;;33838:1272;;;:::o;3730:326::-;3790:4;4047:1;4025:7;:19;;;:23;4018:30;;3730:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:::-;12937:3;12958:67;13022:2;13017:3;12958:67;:::i;:::-;12951:74;;13034:93;13123:3;13034:93;:::i;:::-;13152:2;13147:3;13143:12;13136:19;;12795:366;;;:::o;13167:::-;13309:3;13330:67;13394:2;13389:3;13330:67;:::i;:::-;13323:74;;13406:93;13495:3;13406:93;:::i;:::-;13524:2;13519:3;13515:12;13508:19;;13167:366;;;:::o;13539:::-;13681:3;13702:67;13766:2;13761:3;13702:67;:::i;:::-;13695:74;;13778:93;13867:3;13778:93;:::i;:::-;13896:2;13891:3;13887:12;13880:19;;13539:366;;;:::o;13911:::-;14053:3;14074:67;14138:2;14133:3;14074:67;:::i;:::-;14067:74;;14150:93;14239:3;14150:93;:::i;:::-;14268:2;14263:3;14259:12;14252:19;;13911:366;;;:::o;14283:::-;14425:3;14446:67;14510:2;14505:3;14446:67;:::i;:::-;14439:74;;14522:93;14611:3;14522:93;:::i;:::-;14640:2;14635:3;14631:12;14624:19;;14283:366;;;:::o;14655:::-;14797:3;14818:67;14882:2;14877:3;14818:67;:::i;:::-;14811:74;;14894:93;14983:3;14894:93;:::i;:::-;15012:2;15007:3;15003:12;14996:19;;14655:366;;;:::o;15027:::-;15169:3;15190:67;15254:2;15249:3;15190:67;:::i;:::-;15183:74;;15266:93;15355:3;15266:93;:::i;:::-;15384:2;15379:3;15375:12;15368:19;;15027:366;;;:::o;15399:::-;15541:3;15562:67;15626:2;15621:3;15562:67;:::i;:::-;15555:74;;15638:93;15727:3;15638:93;:::i;:::-;15756:2;15751:3;15747:12;15740:19;;15399:366;;;:::o;15771:::-;15913:3;15934:67;15998:2;15993:3;15934:67;:::i;:::-;15927:74;;16010:93;16099:3;16010:93;:::i;:::-;16128:2;16123:3;16119:12;16112:19;;15771:366;;;:::o;16143:::-;16285:3;16306:67;16370:2;16365:3;16306:67;:::i;:::-;16299:74;;16382:93;16471:3;16382:93;:::i;:::-;16500:2;16495:3;16491:12;16484:19;;16143:366;;;:::o;16515:::-;16657:3;16678:67;16742:2;16737:3;16678:67;:::i;:::-;16671:74;;16754:93;16843:3;16754:93;:::i;:::-;16872:2;16867:3;16863:12;16856:19;;16515:366;;;:::o;16887:::-;17029:3;17050:67;17114:2;17109:3;17050:67;:::i;:::-;17043:74;;17126:93;17215:3;17126:93;:::i;:::-;17244:2;17239:3;17235:12;17228:19;;16887:366;;;:::o;17259:::-;17401:3;17422:67;17486:2;17481:3;17422:67;:::i;:::-;17415:74;;17498:93;17587:3;17498:93;:::i;:::-;17616:2;17611:3;17607:12;17600:19;;17259:366;;;:::o;17631:118::-;17718:24;17736:5;17718:24;:::i;:::-;17713:3;17706:37;17631:118;;:::o;17755:435::-;17935:3;17957:95;18048:3;18039:6;17957:95;:::i;:::-;17950:102;;18069:95;18160:3;18151:6;18069:95;:::i;:::-;18062:102;;18181:3;18174:10;;17755:435;;;;;:::o;18196:222::-;18289:4;18327:2;18316:9;18312:18;18304:26;;18340:71;18408:1;18397:9;18393:17;18384:6;18340:71;:::i;:::-;18196:222;;;;:::o;18424:640::-;18619:4;18657:3;18646:9;18642:19;18634:27;;18671:71;18739:1;18728:9;18724:17;18715:6;18671:71;:::i;:::-;18752:72;18820:2;18809:9;18805:18;18796:6;18752:72;:::i;:::-;18834;18902:2;18891:9;18887:18;18878:6;18834:72;:::i;:::-;18953:9;18947:4;18943:20;18938:2;18927:9;18923:18;18916:48;18981:76;19052:4;19043:6;18981:76;:::i;:::-;18973:84;;18424:640;;;;;;;:::o;19070:210::-;19157:4;19195:2;19184:9;19180:18;19172:26;;19208:65;19270:1;19259:9;19255:17;19246:6;19208:65;:::i;:::-;19070:210;;;;:::o;19286:313::-;19399:4;19437:2;19426:9;19422:18;19414:26;;19486:9;19480:4;19476:20;19472:1;19461:9;19457:17;19450:47;19514:78;19587:4;19578:6;19514:78;:::i;:::-;19506:86;;19286:313;;;;:::o;19605:419::-;19771:4;19809:2;19798:9;19794:18;19786:26;;19858:9;19852:4;19848:20;19844:1;19833:9;19829:17;19822:47;19886:131;20012:4;19886:131;:::i;:::-;19878:139;;19605:419;;;:::o;20030:::-;20196:4;20234:2;20223:9;20219:18;20211:26;;20283:9;20277:4;20273:20;20269:1;20258:9;20254:17;20247:47;20311:131;20437:4;20311:131;:::i;:::-;20303:139;;20030:419;;;:::o;20455:::-;20621:4;20659:2;20648:9;20644:18;20636:26;;20708:9;20702:4;20698:20;20694:1;20683:9;20679:17;20672:47;20736:131;20862:4;20736:131;:::i;:::-;20728:139;;20455:419;;;:::o;20880:::-;21046:4;21084:2;21073:9;21069:18;21061:26;;21133:9;21127:4;21123:20;21119:1;21108:9;21104:17;21097:47;21161:131;21287:4;21161:131;:::i;:::-;21153:139;;20880:419;;;:::o;21305:::-;21471:4;21509:2;21498:9;21494:18;21486:26;;21558:9;21552:4;21548:20;21544:1;21533:9;21529:17;21522:47;21586:131;21712:4;21586:131;:::i;:::-;21578:139;;21305:419;;;:::o;21730:::-;21896:4;21934:2;21923:9;21919:18;21911:26;;21983:9;21977:4;21973:20;21969:1;21958:9;21954:17;21947:47;22011:131;22137:4;22011:131;:::i;:::-;22003:139;;21730:419;;;:::o;22155:::-;22321:4;22359:2;22348:9;22344:18;22336:26;;22408:9;22402:4;22398:20;22394:1;22383:9;22379:17;22372:47;22436:131;22562:4;22436:131;:::i;:::-;22428:139;;22155:419;;;:::o;22580:::-;22746:4;22784:2;22773:9;22769:18;22761:26;;22833:9;22827:4;22823:20;22819:1;22808:9;22804:17;22797:47;22861:131;22987:4;22861:131;:::i;:::-;22853:139;;22580:419;;;:::o;23005:::-;23171:4;23209:2;23198:9;23194:18;23186:26;;23258:9;23252:4;23248:20;23244:1;23233:9;23229:17;23222:47;23286:131;23412:4;23286:131;:::i;:::-;23278:139;;23005:419;;;:::o;23430:::-;23596:4;23634:2;23623:9;23619:18;23611:26;;23683:9;23677:4;23673:20;23669:1;23658:9;23654:17;23647:47;23711:131;23837:4;23711:131;:::i;:::-;23703:139;;23430:419;;;:::o;23855:::-;24021:4;24059:2;24048:9;24044:18;24036:26;;24108:9;24102:4;24098:20;24094:1;24083:9;24079:17;24072:47;24136:131;24262:4;24136:131;:::i;:::-;24128:139;;23855:419;;;:::o;24280:::-;24446:4;24484:2;24473:9;24469:18;24461:26;;24533:9;24527:4;24523:20;24519:1;24508:9;24504:17;24497:47;24561:131;24687:4;24561:131;:::i;:::-;24553:139;;24280:419;;;:::o;24705:::-;24871:4;24909:2;24898:9;24894:18;24886:26;;24958:9;24952:4;24948:20;24944:1;24933:9;24929:17;24922:47;24986:131;25112:4;24986:131;:::i;:::-;24978:139;;24705:419;;;:::o;25130:::-;25296:4;25334:2;25323:9;25319:18;25311:26;;25383:9;25377:4;25373:20;25369:1;25358:9;25354:17;25347:47;25411:131;25537:4;25411:131;:::i;:::-;25403:139;;25130:419;;;:::o;25555:::-;25721:4;25759:2;25748:9;25744:18;25736:26;;25808:9;25802:4;25798:20;25794:1;25783:9;25779:17;25772:47;25836:131;25962:4;25836:131;:::i;:::-;25828:139;;25555:419;;;:::o;25980:::-;26146:4;26184:2;26173:9;26169:18;26161:26;;26233:9;26227:4;26223:20;26219:1;26208:9;26204:17;26197:47;26261:131;26387:4;26261:131;:::i;:::-;26253:139;;25980:419;;;:::o;26405:::-;26571:4;26609:2;26598:9;26594:18;26586:26;;26658:9;26652:4;26648:20;26644:1;26633:9;26629:17;26622:47;26686:131;26812:4;26686:131;:::i;:::-;26678:139;;26405:419;;;:::o;26830:::-;26996:4;27034:2;27023:9;27019:18;27011:26;;27083:9;27077:4;27073:20;27069:1;27058:9;27054:17;27047:47;27111:131;27237:4;27111:131;:::i;:::-;27103:139;;26830:419;;;:::o;27255:::-;27421:4;27459:2;27448:9;27444:18;27436:26;;27508:9;27502:4;27498:20;27494:1;27483:9;27479:17;27472:47;27536:131;27662:4;27536:131;:::i;:::-;27528:139;;27255:419;;;:::o;27680:::-;27846:4;27884:2;27873:9;27869:18;27861:26;;27933:9;27927:4;27923:20;27919:1;27908:9;27904:17;27897:47;27961:131;28087:4;27961:131;:::i;:::-;27953:139;;27680:419;;;:::o;28105:::-;28271:4;28309:2;28298:9;28294:18;28286:26;;28358:9;28352:4;28348:20;28344:1;28333:9;28329:17;28322:47;28386:131;28512:4;28386:131;:::i;:::-;28378:139;;28105:419;;;:::o;28530:::-;28696:4;28734:2;28723:9;28719:18;28711:26;;28783:9;28777:4;28773:20;28769:1;28758:9;28754:17;28747:47;28811:131;28937:4;28811:131;:::i;:::-;28803:139;;28530:419;;;:::o;28955:::-;29121:4;29159:2;29148:9;29144:18;29136:26;;29208:9;29202:4;29198:20;29194:1;29183:9;29179:17;29172:47;29236:131;29362:4;29236:131;:::i;:::-;29228:139;;28955:419;;;:::o;29380:::-;29546:4;29584:2;29573:9;29569:18;29561:26;;29633:9;29627:4;29623:20;29619:1;29608:9;29604:17;29597:47;29661:131;29787:4;29661:131;:::i;:::-;29653:139;;29380:419;;;:::o;29805:::-;29971:4;30009:2;29998:9;29994:18;29986:26;;30058:9;30052:4;30048:20;30044:1;30033:9;30029:17;30022:47;30086:131;30212:4;30086:131;:::i;:::-;30078:139;;29805:419;;;:::o;30230:222::-;30323:4;30361:2;30350:9;30346:18;30338:26;;30374:71;30442:1;30431:9;30427:17;30418:6;30374:71;:::i;:::-;30230:222;;;;:::o;30458:129::-;30492:6;30519:20;;:::i;:::-;30509:30;;30548:33;30576:4;30568:6;30548:33;:::i;:::-;30458:129;;;:::o;30593:75::-;30626:6;30659:2;30653:9;30643:19;;30593:75;:::o;30674:307::-;30735:4;30825:18;30817:6;30814:30;30811:56;;;30847:18;;:::i;:::-;30811:56;30885:29;30907:6;30885:29;:::i;:::-;30877:37;;30969:4;30963;30959:15;30951:23;;30674:307;;;:::o;30987:98::-;31038:6;31072:5;31066:12;31056:22;;30987:98;;;:::o;31091:99::-;31143:6;31177:5;31171:12;31161:22;;31091:99;;;:::o;31196:168::-;31279:11;31313:6;31308:3;31301:19;31353:4;31348:3;31344:14;31329:29;;31196:168;;;;:::o;31370:169::-;31454:11;31488:6;31483:3;31476:19;31528:4;31523:3;31519:14;31504:29;;31370:169;;;;:::o;31545:148::-;31647:11;31684:3;31669:18;;31545:148;;;;:::o;31699:273::-;31739:3;31758:20;31776:1;31758:20;:::i;:::-;31753:25;;31792:20;31810:1;31792:20;:::i;:::-;31787:25;;31914:1;31878:34;31874:42;31871:1;31868:49;31865:75;;;31920:18;;:::i;:::-;31865:75;31964:1;31961;31957:9;31950:16;;31699:273;;;;:::o;31978:305::-;32018:3;32037:20;32055:1;32037:20;:::i;:::-;32032:25;;32071:20;32089:1;32071:20;:::i;:::-;32066:25;;32225:1;32157:66;32153:74;32150:1;32147:81;32144:107;;;32231:18;;:::i;:::-;32144:107;32275:1;32272;32268:9;32261:16;;31978:305;;;;:::o;32289:185::-;32329:1;32346:20;32364:1;32346:20;:::i;:::-;32341:25;;32380:20;32398:1;32380:20;:::i;:::-;32375:25;;32419:1;32409:35;;32424:18;;:::i;:::-;32409:35;32466:1;32463;32459:9;32454:14;;32289:185;;;;:::o;32480:348::-;32520:7;32543:20;32561:1;32543:20;:::i;:::-;32538:25;;32577:20;32595:1;32577:20;:::i;:::-;32572:25;;32765:1;32697:66;32693:74;32690:1;32687:81;32682:1;32675:9;32668:17;32664:105;32661:131;;;32772:18;;:::i;:::-;32661:131;32820:1;32817;32813:9;32802:20;;32480:348;;;;:::o;32834:191::-;32874:4;32894:20;32912:1;32894:20;:::i;:::-;32889:25;;32928:20;32946:1;32928:20;:::i;:::-;32923:25;;32967:1;32964;32961:8;32958:34;;;32972:18;;:::i;:::-;32958:34;33017:1;33014;33010:9;33002:17;;32834:191;;;;:::o;33031:::-;33071:4;33091:20;33109:1;33091:20;:::i;:::-;33086:25;;33125:20;33143:1;33125:20;:::i;:::-;33120:25;;33164:1;33161;33158:8;33155:34;;;33169:18;;:::i;:::-;33155:34;33214:1;33211;33207:9;33199:17;;33031:191;;;;:::o;33228:96::-;33265:7;33294:24;33312:5;33294:24;:::i;:::-;33283:35;;33228:96;;;:::o;33330:90::-;33364:7;33407:5;33400:13;33393:21;33382:32;;33330:90;;;:::o;33426:149::-;33462:7;33502:66;33495:5;33491:78;33480:89;;33426:149;;;:::o;33581:118::-;33618:7;33658:34;33651:5;33647:46;33636:57;;33581:118;;;:::o;33705:126::-;33742:7;33782:42;33775:5;33771:54;33760:65;;33705:126;;;:::o;33837:77::-;33874:7;33903:5;33892:16;;33837:77;;;:::o;33920:154::-;34004:6;33999:3;33994;33981:30;34066:1;34057:6;34052:3;34048:16;34041:27;33920:154;;;:::o;34080:307::-;34148:1;34158:113;34172:6;34169:1;34166:13;34158:113;;;34257:1;34252:3;34248:11;34242:18;34238:1;34233:3;34229:11;34222:39;34194:2;34191:1;34187:10;34182:15;;34158:113;;;34289:6;34286:1;34283:13;34280:101;;;34369:1;34360:6;34355:3;34351:16;34344:27;34280:101;34129:258;34080:307;;;:::o;34393:171::-;34432:3;34455:24;34473:5;34455:24;:::i;:::-;34446:33;;34501:4;34494:5;34491:15;34488:41;;;34509:18;;:::i;:::-;34488:41;34556:1;34549:5;34545:13;34538:20;;34393:171;;;:::o;34570:320::-;34614:6;34651:1;34645:4;34641:12;34631:22;;34698:1;34692:4;34688:12;34719:18;34709:81;;34775:4;34767:6;34763:17;34753:27;;34709:81;34837:2;34829:6;34826:14;34806:18;34803:38;34800:84;;;34856:18;;:::i;:::-;34800:84;34621:269;34570:320;;;:::o;34896:281::-;34979:27;35001:4;34979:27;:::i;:::-;34971:6;34967:40;35109:6;35097:10;35094:22;35073:18;35061:10;35058:34;35055:62;35052:88;;;35120:18;;:::i;:::-;35052:88;35160:10;35156:2;35149:22;34939:238;34896:281;;:::o;35183:233::-;35222:3;35245:24;35263:5;35245:24;:::i;:::-;35236:33;;35291:66;35284:5;35281:77;35278:103;;;35361:18;;:::i;:::-;35278:103;35408:1;35401:5;35397:13;35390:20;;35183:233;;;:::o;35422:176::-;35454:1;35471:20;35489:1;35471:20;:::i;:::-;35466:25;;35505:20;35523:1;35505:20;:::i;:::-;35500:25;;35544:1;35534:35;;35549:18;;:::i;:::-;35534:35;35590:1;35587;35583:9;35578:14;;35422:176;;;;:::o;35604:180::-;35652:77;35649:1;35642:88;35749:4;35746:1;35739:15;35773:4;35770:1;35763:15;35790:180;35838:77;35835:1;35828:88;35935:4;35932:1;35925:15;35959:4;35956:1;35949:15;35976:180;36024:77;36021:1;36014:88;36121:4;36118:1;36111:15;36145:4;36142:1;36135:15;36162:180;36210:77;36207:1;36200:88;36307:4;36304:1;36297:15;36331:4;36328:1;36321:15;36348:180;36396:77;36393:1;36386:88;36493:4;36490:1;36483:15;36517:4;36514:1;36507:15;36534:117;36643:1;36640;36633:12;36657:117;36766:1;36763;36756:12;36780:117;36889:1;36886;36879:12;36903:117;37012:1;37009;37002:12;37026:117;37135:1;37132;37125:12;37149:117;37258:1;37255;37248:12;37272:102;37313:6;37364:2;37360:7;37355:2;37348:5;37344:14;37340:28;37330:38;;37272:102;;;:::o;37380:221::-;37520:34;37516:1;37508:6;37504:14;37497:58;37589:4;37584:2;37576:6;37572:15;37565:29;37380:221;:::o;37607:223::-;37747:34;37743:1;37735:6;37731:14;37724:58;37816:6;37811:2;37803:6;37799:15;37792:31;37607:223;:::o;37836:181::-;37976:33;37972:1;37964:6;37960:14;37953:57;37836:181;:::o;38023:173::-;38163:25;38159:1;38151:6;38147:14;38140:49;38023:173;:::o;38202:225::-;38342:34;38338:1;38330:6;38326:14;38319:58;38411:8;38406:2;38398:6;38394:15;38387:33;38202:225;:::o;38433:229::-;38573:34;38569:1;38561:6;38557:14;38550:58;38642:12;38637:2;38629:6;38625:15;38618:37;38433:229;:::o;38668:224::-;38808:34;38804:1;38796:6;38792:14;38785:58;38877:7;38872:2;38864:6;38860:15;38853:32;38668:224;:::o;38898:222::-;39038:34;39034:1;39026:6;39022:14;39015:58;39107:5;39102:2;39094:6;39090:15;39083:30;38898:222;:::o;39126:224::-;39266:34;39262:1;39254:6;39250:14;39243:58;39335:7;39330:2;39322:6;39318:15;39311:32;39126:224;:::o;39356:236::-;39496:34;39492:1;39484:6;39480:14;39473:58;39565:19;39560:2;39552:6;39548:15;39541:44;39356:236;:::o;39598:244::-;39738:34;39734:1;39726:6;39722:14;39715:58;39807:27;39802:2;39794:6;39790:15;39783:52;39598:244;:::o;39848:230::-;39988:34;39984:1;39976:6;39972:14;39965:58;40057:13;40052:2;40044:6;40040:15;40033:38;39848:230;:::o;40084:225::-;40224:34;40220:1;40212:6;40208:14;40201:58;40293:8;40288:2;40280:6;40276:15;40269:33;40084:225;:::o;40315:182::-;40455:34;40451:1;40443:6;40439:14;40432:58;40315:182;:::o;40503:234::-;40643:34;40639:1;40631:6;40627:14;40620:58;40712:17;40707:2;40699:6;40695:15;40688:42;40503:234;:::o;40743:176::-;40883:28;40879:1;40871:6;40867:14;40860:52;40743:176;:::o;40925:237::-;41065:34;41061:1;41053:6;41049:14;41042:58;41134:20;41129:2;41121:6;41117:15;41110:45;40925:237;:::o;41168:221::-;41308:34;41304:1;41296:6;41292:14;41285:58;41377:4;41372:2;41364:6;41360:15;41353:29;41168:221;:::o;41395:238::-;41535:34;41531:1;41523:6;41519:14;41512:58;41604:21;41599:2;41591:6;41587:15;41580:46;41395:238;:::o;41639:179::-;41779:31;41775:1;41767:6;41763:14;41756:55;41639:179;:::o;41824:220::-;41964:34;41960:1;41952:6;41948:14;41941:58;42033:3;42028:2;42020:6;42016:15;42009:28;41824:220;:::o;42050:233::-;42190:34;42186:1;42178:6;42174:14;42167:58;42259:16;42254:2;42246:6;42242:15;42235:41;42050:233;:::o;42289:234::-;42429:34;42425:1;42417:6;42413:14;42406:58;42498:17;42493:2;42485:6;42481:15;42474:42;42289:234;:::o;42529:232::-;42669:34;42665:1;42657:6;42653:14;42646:58;42738:15;42733:2;42725:6;42721:15;42714:40;42529:232;:::o;42767:221::-;42907:34;42903:1;42895:6;42891:14;42884:58;42976:4;42971:2;42963:6;42959:15;42952:29;42767:221;:::o;42994:122::-;43067:24;43085:5;43067:24;:::i;:::-;43060:5;43057:35;43047:63;;43106:1;43103;43096:12;43047:63;42994:122;:::o;43122:116::-;43192:21;43207:5;43192:21;:::i;:::-;43185:5;43182:32;43172:60;;43228:1;43225;43218:12;43172:60;43122:116;:::o;43244:120::-;43316:23;43333:5;43316:23;:::i;:::-;43309:5;43306:34;43296:62;;43354:1;43351;43344:12;43296:62;43244:120;:::o;43370:122::-;43443:24;43461:5;43443:24;:::i;:::-;43436:5;43433:35;43423:63;;43482:1;43479;43472:12;43423:63;43370:122;:::o

Swarm Source

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