ETH Price: $3,298.87 (+1.62%)
Gas: 1 Gwei

Token

Meme Genesis (MEME)
 

Overview

Max Total Supply

5,000 MEME

Holders

988

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 MEME
0x73f9d0aafc70131b5bb26581c362e941997a3991
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:
MemeGenesis

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-26
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-13
*/
// memegenesis.com
// SPDX-License-Identifier: MIT

// File: contracts/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: contracts/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/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 tokenId);

    /**
     * @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: contracts/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 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: contracts/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: contracts/MemeGenesis.sol



pragma solidity ^0.8.0;





contract MemeGenesis is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable amountForDevs;
  uint256 public immutable amountForFree;
  uint256 public mintPrice = 0; //0.05 ETH
  uint256 public listPrice = 0; //0.05 ETH

  mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForDevs_,
    uint256 amountForFree_
  ) ERC721A("Meme Genesis", "MEME", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForDevs = amountForDevs_;
    amountForFree = amountForFree_;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function mint(uint256 quantity) external callerIsUser {

    require(totalSupply() + quantity <= amountForFree, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
  }

  function wlMint() external payable callerIsUser {
    uint256 price = listPrice;
    require(price != 0, "allowlist sale has not begun yet");
    require(allowlist[msg.sender] > 0, "not eligible for allowlist mint");
    require(totalSupply() + 1 <= collectionSize, "reached max supply");
    allowlist[msg.sender]--;
    _safeMint(msg.sender, 1);
    refundIfOver(price);
  }

  function paidMint(uint256 quantity)
    external
    payable
    callerIsUser
  {
    uint256 publicPrice = mintPrice;

    require(
      isPublicSaleOn(publicPrice),
      "public sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(publicPrice * quantity);
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function isPublicSaleOn(
    uint256 publicPriceWei
  ) public view returns (bool) {
    return
      publicPriceWei != 0 ;
  }


  function seedAllowlist(address[] memory addresses, uint256[] memory numSlots)
    external
    onlyOwner
  {
    require(
      addresses.length == numSlots.length,
      "addresses does not match numSlots length"
    );
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots[i];
    }
  }

  // For marketing etc.
  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

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

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

  function setListPrice(uint256 newPrice) public onlyOwner {
      listPrice = newPrice;
  }

  function setMintPrice(uint256 newPrice) public onlyOwner {
      mintPrice = newPrice;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"},{"internalType":"uint256","name":"amountForFree_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","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":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","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":"newPrice","type":"uint256"}],"name":"setListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]

610120604052600060015560006008556000600a556000600b553480156200002657600080fd5b50604051620033033803806200330383398101604081905262000049916200020c565b6040518060400160405280600c81526020016b4d656d652047656e6573697360a01b815250604051806040016040528060048152602001634d454d4560e01b8152508585620000a7620000a1620001b860201b60201c565b620001bc565b60008111620001145760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001765760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200010b565b6002620001848582620002e8565b506003620001938482620002e8565b5060a0919091526080525050600160095560c09390935260e0525061010052620003b4565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080600080608085870312156200022357600080fd5b505082516020840151604085015160609095015191969095509092509050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026e57607f821691505b6020821081036200028f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002e357600081815260208120601f850160051c81016020861015620002be5750805b601f850160051c820191505b81811015620002df57828155600101620002ca565b5050505b505050565b81516001600160401b0381111562000304576200030462000243565b6200031c8162000315845462000259565b8462000295565b602080601f8311600181146200035457600084156200033b5750858301515b600019600386901b1c1916600185901b178555620002df565b600085815260208120601f198616915b82811015620003855788860151825594840194600190910190840162000364565b5085821015620003a45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e05161010051612eb66200044d60003960008181610609015261128d01526000818161073c0152610c630152600081816104b301528181610f8601526112e0015260008181610cf901528181610d8701528181610dbf01528181611ea901528181611ed30152612413015260008181610f33015281816111b801528181611c950152611cc70152612eb66000f3fe6080604052600436106102305760003560e01c80637f9fa4111161012e578063b59e1c79116100ab578063e985e9c51161006f578063e985e9c5146106a1578063f2fde38b146106ea578063f4a0a5281461070a578063fbe1aa511461072a578063fe7d5bbb1461075e57600080fd5b8063b59e1c79146105f7578063b88d4fde1461062b578063c87b56dd1461064b578063d7224ba01461066b578063dc33e6811461068157600080fd5b8063a0712d68116100f2578063a0712d6814610555578063a22cb46514610575578063a7cd52cb14610595578063ac446002146105c2578063b05863d5146105d757600080fd5b80637f9fa411146104995780638bc35c2f146104a15780638da5cb5b146104d55780639231ab2a146104f357806395d89b411461054057600080fd5b806342842e0e116101bc57806365cde7331161018057806365cde733146104255780636817c76c146104385780636eb588d91461044e57806370a0823114610464578063715018a61461048457600080fd5b806342842e0e146103855780634f6ccce7146103a557806355f804b3146103c55780635ec08519146103e55780636352211e1461040557600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd146103055780632d20fb60146103255780632f745c5914610345578063375a069a1461036557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612646565b61077e565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6107eb565b60405161026191906126b3565b34801561029857600080fd5b506102ac6102a73660046126c6565b61087d565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df3660046126fb565b61090d565b005b3480156102f257600080fd5b506001545b604051908152602001610261565b34801561031157600080fd5b506102e4610320366004612725565b610a24565b34801561033157600080fd5b506102e46103403660046126c6565b610a2f565b34801561035157600080fd5b506102f76103603660046126fb565b610ac1565b34801561037157600080fd5b506102e46103803660046126c6565b610c37565b34801561039157600080fd5b506102e46103a0366004612725565b610df5565b3480156103b157600080fd5b506102f76103c03660046126c6565b610e10565b3480156103d157600080fd5b506102e46103e0366004612761565b610e79565b3480156103f157600080fd5b506102556104003660046126c6565b151590565b34801561041157600080fd5b506102ac6104203660046126c6565b610eb0565b6102e46104333660046126c6565b610ec2565b34801561044457600080fd5b506102f7600a5481565b34801561045a57600080fd5b506102f7600b5481565b34801561047057600080fd5b506102f761047f3660046127d2565b611020565b34801561049057600080fd5b506102e46110b1565b6102e46110e7565b3480156104ad57600080fd5b506102f77f000000000000000000000000000000000000000000000000000000000000000081565b3480156104e157600080fd5b506000546001600160a01b03166102ac565b3480156104ff57600080fd5b5061051361050e3660046126c6565b611240565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610261565b34801561054c57600080fd5b5061027f61125d565b34801561056157600080fd5b506102e46105703660046126c6565b61126c565b34801561058157600080fd5b506102e46105903660046127ed565b611364565b3480156105a157600080fd5b506102f76105b03660046127d2565b600c6020526000908152604090205481565b3480156105ce57600080fd5b506102e4611428565b3480156105e357600080fd5b506102e46105f23660046128fd565b611534565b34801561060357600080fd5b506102f77f000000000000000000000000000000000000000000000000000000000000000081565b34801561063757600080fd5b506102e46106463660046129bc565b61163b565b34801561065757600080fd5b5061027f6106663660046126c6565b611674565b34801561067757600080fd5b506102f760085481565b34801561068d57600080fd5b506102f761069c3660046127d2565b611741565b3480156106ad57600080fd5b506102556106bc366004612a7b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f657600080fd5b506102e46107053660046127d2565b61174c565b34801561071657600080fd5b506102e46107253660046126c6565b6117e4565b34801561073657600080fd5b506102f77f000000000000000000000000000000000000000000000000000000000000000081565b34801561076a57600080fd5b506102e46107793660046126c6565b611813565b60006001600160e01b031982166380ac58cd60e01b14806107af57506001600160e01b03198216635b5e139f60e01b145b806107ca57506001600160e01b0319821663780e9d6360e01b145b806107e557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107fa90612aae565b80601f016020809104026020016040519081016040528092919081815260200182805461082690612aae565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088a826001541190565b6108f15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091882610eb0565b9050806001600160a01b0316836001600160a01b0316036109865760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108e8565b336001600160a01b03821614806109a257506109a281336106bc565b610a145760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108e8565b610a1f838383611842565b505050565b610a1f83838361189e565b6000546001600160a01b03163314610a595760405162461bcd60e51b81526004016108e890612ae8565b600260095403610aab5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108e8565b6002600955610ab981611c24565b506001600955565b6000610acc83611020565b8210610b255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108e8565b6000610b3060015490565b905060008060005b83811015610bd7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b8a57805192505b876001600160a01b0316836001600160a01b031603610bc457868403610bb6575093506107e592505050565b83610bc081612b33565b9450505b5080610bcf81612b33565b915050610b38565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108e8565b6000546001600160a01b03163314610c615760405162461bcd60e51b81526004016108e890612ae8565b7f000000000000000000000000000000000000000000000000000000000000000081610c8c60015490565b610c969190612b4c565b1115610cf45760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016108e8565b610d1e7f000000000000000000000000000000000000000000000000000000000000000082612b75565b15610d805760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108e8565b6000610dac7f000000000000000000000000000000000000000000000000000000000000000083612b89565b905060005b81811015610a1f57610de3337f0000000000000000000000000000000000000000000000000000000000000000611e0d565b80610ded81612b33565b915050610db1565b610a1f8383836040518060200160405280600081525061163b565b6000610e1b60015490565b8210610e755760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108e8565b5090565b6000546001600160a01b03163314610ea35760405162461bcd60e51b81526004016108e890612ae8565b600d610a1f828483612be3565b6000610ebb82611e27565b5192915050565b323314610ee15760405162461bcd60e51b81526004016108e890612ca3565b600a5480610f315760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016108e8565b7f000000000000000000000000000000000000000000000000000000000000000082610f5c60015490565b610f669190612b4c565b1115610f845760405162461bcd60e51b81526004016108e890612cda565b7f000000000000000000000000000000000000000000000000000000000000000082610faf33611741565b610fb99190612b4c565b11156110005760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108e8565b61100a3383611e0d565b61101c6110178383612d06565b611fd0565b5050565b60006001600160a01b03821661108c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108e8565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146110db5760405162461bcd60e51b81526004016108e890612ae8565b6110e56000612057565b565b3233146111065760405162461bcd60e51b81526004016108e890612ca3565b600b54600081900361115a5760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016108e8565b336000908152600c60205260409020546111b65760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016108e8565b7f00000000000000000000000000000000000000000000000000000000000000006111e060015490565b6111eb906001612b4c565b11156112095760405162461bcd60e51b81526004016108e890612cda565b336000908152600c6020526040812080549161122483612d1d565b9190505550611234336001611e0d565b61123d81611fd0565b50565b60408051808201909152600080825260208201526107e582611e27565b6060600380546107fa90612aae565b32331461128b5760405162461bcd60e51b81526004016108e890612ca3565b7f0000000000000000000000000000000000000000000000000000000000000000816112b660015490565b6112c09190612b4c565b11156112de5760405162461bcd60e51b81526004016108e890612cda565b7f00000000000000000000000000000000000000000000000000000000000000008161130933611741565b6113139190612b4c565b111561135a5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108e8565b61123d3382611e0d565b336001600160a01b038316036113bc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108e8565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114525760405162461bcd60e51b81526004016108e890612ae8565b6002600954036114a45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108e8565b6002600955604051600090339047908381818185875af1925050503d80600081146114eb576040519150601f19603f3d011682016040523d82523d6000602084013e6114f0565b606091505b5050905080610ab95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108e8565b6000546001600160a01b0316331461155e5760405162461bcd60e51b81526004016108e890612ae8565b80518251146115c05760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b60648201526084016108e8565b60005b8251811015610a1f578181815181106115de576115de612d34565b6020026020010151600c60008584815181106115fc576115fc612d34565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061163390612b33565b9150506115c3565b61164684848461189e565b611652848484846120a7565b61166e5760405162461bcd60e51b81526004016108e890612d4a565b50505050565b6060611681826001541190565b6116e55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e8565b60006116ef6121a9565b9050600081511161170f576040518060200160405280600081525061173a565b80611719846121b8565b60405160200161172a929190612d9d565b6040516020818303038152906040525b9392505050565b60006107e5826122b8565b6000546001600160a01b031633146117765760405162461bcd60e51b81526004016108e890612ae8565b6001600160a01b0381166117db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e8565b61123d81612057565b6000546001600160a01b0316331461180e5760405162461bcd60e51b81526004016108e890612ae8565b600a55565b6000546001600160a01b0316331461183d5760405162461bcd60e51b81526004016108e890612ae8565b600b55565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118a982611e27565b80519091506000906001600160a01b0316336001600160a01b031614806118e05750336118d58461087d565b6001600160a01b0316145b806118f2575081516118f290336106bc565b90508061195c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108e8565b846001600160a01b031682600001516001600160a01b0316146119d05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108e8565b6001600160a01b038416611a345760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108e8565b611a446000848460000151611842565b6001600160a01b0385166000908152600560205260408120805460019290611a769084906001600160801b0316612dcc565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611ac291859116612df3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611b49846001612b4c565b6000818152600460205260409020549091506001600160a01b0316611bda57611b73816001541190565b15611bda5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611c745760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108e8565b60006001611c828484612b4c565b611c8c9190612e13565b9050611cb960017f0000000000000000000000000000000000000000000000000000000000000000612e13565b811115611cee57611ceb60017f0000000000000000000000000000000000000000000000000000000000000000612e13565b90505b611cf9816001541190565b611d545760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108e8565b815b818111611df9576000818152600460205260409020546001600160a01b0316611de7576000611d8482611e27565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611df181612b33565b915050611d56565b50611e05816001612b4c565b600855505050565b61101c828260405180602001604052806000815250612356565b6040805180820190915260008082526020820152611e46826001541190565b611ea55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108e8565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f0657611ef87f000000000000000000000000000000000000000000000000000000000000000084612e13565b611f03906001612b4c565b90505b825b818110611f6f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611f5c57949350505050565b5080611f6781612d1d565b915050611f08565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108e8565b803410156120195760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108e8565b8034111561123d57336108fc61202f8334612e13565b6040518115909202916000818181858888f1935050505015801561101c573d6000803e3d6000fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561219d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120eb903390899088908890600401612e26565b6020604051808303816000875af1925050508015612126575060408051601f3d908101601f1916820190925261212391810190612e63565b60015b612183573d808015612154576040519150601f19603f3d011682016040523d82523d6000602084013e612159565b606091505b50805160000361217b5760405162461bcd60e51b81526004016108e890612d4a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121a1565b5060015b949350505050565b6060600d80546107fa90612aae565b6060816000036121df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561220957806121f381612b33565b91506122029050600a83612b89565b91506121e3565b6000816001600160401b0381111561222357612223612829565b6040519080825280601f01601f19166020018201604052801561224d576020820181803683370190505b5090505b84156121a157612262600183612e13565b915061226f600a86612b75565b61227a906030612b4c565b60f81b81838151811061228f5761228f612d34565b60200101906001600160f81b031916908160001a9053506122b1600a86612b89565b9450612251565b60006001600160a01b03821661232a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108e8565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123b95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108e8565b6123c4816001541190565b156124115760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108e8565b7f000000000000000000000000000000000000000000000000000000000000000083111561248c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108e8565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124e8908790612df3565b6001600160801b031681526020018583602001516125069190612df3565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126255760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125e960008884886120a7565b6126055760405162461bcd60e51b81526004016108e890612d4a565b8161260f81612b33565b925050808061261d90612b33565b91505061259c565b506001819055611c1c565b6001600160e01b03198116811461123d57600080fd5b60006020828403121561265857600080fd5b813561173a81612630565b60005b8381101561267e578181015183820152602001612666565b50506000910152565b6000815180845261269f816020860160208601612663565b601f01601f19169290920160200192915050565b60208152600061173a6020830184612687565b6000602082840312156126d857600080fd5b5035919050565b80356001600160a01b03811681146126f657600080fd5b919050565b6000806040838503121561270e57600080fd5b612717836126df565b946020939093013593505050565b60008060006060848603121561273a57600080fd5b612743846126df565b9250612751602085016126df565b9150604084013590509250925092565b6000806020838503121561277457600080fd5b82356001600160401b038082111561278b57600080fd5b818501915085601f83011261279f57600080fd5b8135818111156127ae57600080fd5b8660208285010111156127c057600080fd5b60209290920196919550909350505050565b6000602082840312156127e457600080fd5b61173a826126df565b6000806040838503121561280057600080fd5b612809836126df565b91506020830135801515811461281e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561286757612867612829565b604052919050565b60006001600160401b0382111561288857612888612829565b5060051b60200190565b600082601f8301126128a357600080fd5b813560206128b86128b38361286f565b61283f565b82815260059290921b840181019181810190868411156128d757600080fd5b8286015b848110156128f257803583529183019183016128db565b509695505050505050565b6000806040838503121561291057600080fd5b82356001600160401b038082111561292757600080fd5b818501915085601f83011261293b57600080fd5b8135602061294b6128b38361286f565b82815260059290921b8401810191818101908984111561296a57600080fd5b948201945b8386101561298f57612980866126df565b8252948201949082019061296f565b965050860135925050808211156129a557600080fd5b506129b285828601612892565b9150509250929050565b600080600080608085870312156129d257600080fd5b6129db856126df565b935060206129ea8187016126df565b93506040860135925060608601356001600160401b0380821115612a0d57600080fd5b818801915088601f830112612a2157600080fd5b813581811115612a3357612a33612829565b612a45601f8201601f1916850161283f565b91508082528984828501011115612a5b57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612a8e57600080fd5b612a97836126df565b9150612aa5602084016126df565b90509250929050565b600181811c90821680612ac257607f821691505b602082108103612ae257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201612b4557612b45612b1d565b5060010190565b808201808211156107e5576107e5612b1d565b634e487b7160e01b600052601260045260246000fd5b600082612b8457612b84612b5f565b500690565b600082612b9857612b98612b5f565b500490565b601f821115610a1f57600081815260208120601f850160051c81016020861015612bc45750805b601f850160051c820191505b81811015611c1c57828155600101612bd0565b6001600160401b03831115612bfa57612bfa612829565b612c0e83612c088354612aae565b83612b9d565b6000601f841160018114612c425760008515612c2a5750838201355b600019600387901b1c1916600186901b178355612c9c565b600083815260209020601f19861690835b82811015612c735786850135825560209485019460019092019101612c53565b5086821015612c905760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b80820281158282048414176107e5576107e5612b1d565b600081612d2c57612d2c612b1d565b506000190190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612daf818460208801612663565b835190830190612dc3818360208801612663565b01949350505050565b6001600160801b03828116828216039080821115612dec57612dec612b1d565b5092915050565b6001600160801b03818116838216019080821115612dec57612dec612b1d565b818103818111156107e5576107e5612b1d565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e5990830184612687565b9695505050505050565b600060208284031215612e7557600080fd5b815161173a8161263056fea2646970667358221220b67aa873f692724f71cbe84c772a5a85e55b40783657809a1bbcb9244ded910164736f6c634300081100330000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000001388

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637f9fa4111161012e578063b59e1c79116100ab578063e985e9c51161006f578063e985e9c5146106a1578063f2fde38b146106ea578063f4a0a5281461070a578063fbe1aa511461072a578063fe7d5bbb1461075e57600080fd5b8063b59e1c79146105f7578063b88d4fde1461062b578063c87b56dd1461064b578063d7224ba01461066b578063dc33e6811461068157600080fd5b8063a0712d68116100f2578063a0712d6814610555578063a22cb46514610575578063a7cd52cb14610595578063ac446002146105c2578063b05863d5146105d757600080fd5b80637f9fa411146104995780638bc35c2f146104a15780638da5cb5b146104d55780639231ab2a146104f357806395d89b411461054057600080fd5b806342842e0e116101bc57806365cde7331161018057806365cde733146104255780636817c76c146104385780636eb588d91461044e57806370a0823114610464578063715018a61461048457600080fd5b806342842e0e146103855780634f6ccce7146103a557806355f804b3146103c55780635ec08519146103e55780636352211e1461040557600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd146103055780632d20fb60146103255780632f745c5914610345578063375a069a1461036557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612646565b61077e565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6107eb565b60405161026191906126b3565b34801561029857600080fd5b506102ac6102a73660046126c6565b61087d565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df3660046126fb565b61090d565b005b3480156102f257600080fd5b506001545b604051908152602001610261565b34801561031157600080fd5b506102e4610320366004612725565b610a24565b34801561033157600080fd5b506102e46103403660046126c6565b610a2f565b34801561035157600080fd5b506102f76103603660046126fb565b610ac1565b34801561037157600080fd5b506102e46103803660046126c6565b610c37565b34801561039157600080fd5b506102e46103a0366004612725565b610df5565b3480156103b157600080fd5b506102f76103c03660046126c6565b610e10565b3480156103d157600080fd5b506102e46103e0366004612761565b610e79565b3480156103f157600080fd5b506102556104003660046126c6565b151590565b34801561041157600080fd5b506102ac6104203660046126c6565b610eb0565b6102e46104333660046126c6565b610ec2565b34801561044457600080fd5b506102f7600a5481565b34801561045a57600080fd5b506102f7600b5481565b34801561047057600080fd5b506102f761047f3660046127d2565b611020565b34801561049057600080fd5b506102e46110b1565b6102e46110e7565b3480156104ad57600080fd5b506102f77f000000000000000000000000000000000000000000000000000000000000000581565b3480156104e157600080fd5b506000546001600160a01b03166102ac565b3480156104ff57600080fd5b5061051361050e3660046126c6565b611240565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610261565b34801561054c57600080fd5b5061027f61125d565b34801561056157600080fd5b506102e46105703660046126c6565b61126c565b34801561058157600080fd5b506102e46105903660046127ed565b611364565b3480156105a157600080fd5b506102f76105b03660046127d2565b600c6020526000908152604090205481565b3480156105ce57600080fd5b506102e4611428565b3480156105e357600080fd5b506102e46105f23660046128fd565b611534565b34801561060357600080fd5b506102f77f000000000000000000000000000000000000000000000000000000000000138881565b34801561063757600080fd5b506102e46106463660046129bc565b61163b565b34801561065757600080fd5b5061027f6106663660046126c6565b611674565b34801561067757600080fd5b506102f760085481565b34801561068d57600080fd5b506102f761069c3660046127d2565b611741565b3480156106ad57600080fd5b506102556106bc366004612a7b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f657600080fd5b506102e46107053660046127d2565b61174c565b34801561071657600080fd5b506102e46107253660046126c6565b6117e4565b34801561073657600080fd5b506102f77f00000000000000000000000000000000000000000000000000000000000003e881565b34801561076a57600080fd5b506102e46107793660046126c6565b611813565b60006001600160e01b031982166380ac58cd60e01b14806107af57506001600160e01b03198216635b5e139f60e01b145b806107ca57506001600160e01b0319821663780e9d6360e01b145b806107e557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107fa90612aae565b80601f016020809104026020016040519081016040528092919081815260200182805461082690612aae565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088a826001541190565b6108f15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091882610eb0565b9050806001600160a01b0316836001600160a01b0316036109865760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108e8565b336001600160a01b03821614806109a257506109a281336106bc565b610a145760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108e8565b610a1f838383611842565b505050565b610a1f83838361189e565b6000546001600160a01b03163314610a595760405162461bcd60e51b81526004016108e890612ae8565b600260095403610aab5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108e8565b6002600955610ab981611c24565b506001600955565b6000610acc83611020565b8210610b255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108e8565b6000610b3060015490565b905060008060005b83811015610bd7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b8a57805192505b876001600160a01b0316836001600160a01b031603610bc457868403610bb6575093506107e592505050565b83610bc081612b33565b9450505b5080610bcf81612b33565b915050610b38565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108e8565b6000546001600160a01b03163314610c615760405162461bcd60e51b81526004016108e890612ae8565b7f00000000000000000000000000000000000000000000000000000000000003e881610c8c60015490565b610c969190612b4c565b1115610cf45760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016108e8565b610d1e7f000000000000000000000000000000000000000000000000000000000000000582612b75565b15610d805760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108e8565b6000610dac7f000000000000000000000000000000000000000000000000000000000000000583612b89565b905060005b81811015610a1f57610de3337f0000000000000000000000000000000000000000000000000000000000000005611e0d565b80610ded81612b33565b915050610db1565b610a1f8383836040518060200160405280600081525061163b565b6000610e1b60015490565b8210610e755760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108e8565b5090565b6000546001600160a01b03163314610ea35760405162461bcd60e51b81526004016108e890612ae8565b600d610a1f828483612be3565b6000610ebb82611e27565b5192915050565b323314610ee15760405162461bcd60e51b81526004016108e890612ca3565b600a5480610f315760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016108e8565b7f000000000000000000000000000000000000000000000000000000000000271082610f5c60015490565b610f669190612b4c565b1115610f845760405162461bcd60e51b81526004016108e890612cda565b7f000000000000000000000000000000000000000000000000000000000000000582610faf33611741565b610fb99190612b4c565b11156110005760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108e8565b61100a3383611e0d565b61101c6110178383612d06565b611fd0565b5050565b60006001600160a01b03821661108c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108e8565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146110db5760405162461bcd60e51b81526004016108e890612ae8565b6110e56000612057565b565b3233146111065760405162461bcd60e51b81526004016108e890612ca3565b600b54600081900361115a5760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016108e8565b336000908152600c60205260409020546111b65760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016108e8565b7f00000000000000000000000000000000000000000000000000000000000027106111e060015490565b6111eb906001612b4c565b11156112095760405162461bcd60e51b81526004016108e890612cda565b336000908152600c6020526040812080549161122483612d1d565b9190505550611234336001611e0d565b61123d81611fd0565b50565b60408051808201909152600080825260208201526107e582611e27565b6060600380546107fa90612aae565b32331461128b5760405162461bcd60e51b81526004016108e890612ca3565b7f0000000000000000000000000000000000000000000000000000000000001388816112b660015490565b6112c09190612b4c565b11156112de5760405162461bcd60e51b81526004016108e890612cda565b7f00000000000000000000000000000000000000000000000000000000000000058161130933611741565b6113139190612b4c565b111561135a5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108e8565b61123d3382611e0d565b336001600160a01b038316036113bc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108e8565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114525760405162461bcd60e51b81526004016108e890612ae8565b6002600954036114a45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108e8565b6002600955604051600090339047908381818185875af1925050503d80600081146114eb576040519150601f19603f3d011682016040523d82523d6000602084013e6114f0565b606091505b5050905080610ab95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108e8565b6000546001600160a01b0316331461155e5760405162461bcd60e51b81526004016108e890612ae8565b80518251146115c05760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b60648201526084016108e8565b60005b8251811015610a1f578181815181106115de576115de612d34565b6020026020010151600c60008584815181106115fc576115fc612d34565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061163390612b33565b9150506115c3565b61164684848461189e565b611652848484846120a7565b61166e5760405162461bcd60e51b81526004016108e890612d4a565b50505050565b6060611681826001541190565b6116e55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e8565b60006116ef6121a9565b9050600081511161170f576040518060200160405280600081525061173a565b80611719846121b8565b60405160200161172a929190612d9d565b6040516020818303038152906040525b9392505050565b60006107e5826122b8565b6000546001600160a01b031633146117765760405162461bcd60e51b81526004016108e890612ae8565b6001600160a01b0381166117db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e8565b61123d81612057565b6000546001600160a01b0316331461180e5760405162461bcd60e51b81526004016108e890612ae8565b600a55565b6000546001600160a01b0316331461183d5760405162461bcd60e51b81526004016108e890612ae8565b600b55565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118a982611e27565b80519091506000906001600160a01b0316336001600160a01b031614806118e05750336118d58461087d565b6001600160a01b0316145b806118f2575081516118f290336106bc565b90508061195c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108e8565b846001600160a01b031682600001516001600160a01b0316146119d05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108e8565b6001600160a01b038416611a345760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108e8565b611a446000848460000151611842565b6001600160a01b0385166000908152600560205260408120805460019290611a769084906001600160801b0316612dcc565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611ac291859116612df3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611b49846001612b4c565b6000818152600460205260409020549091506001600160a01b0316611bda57611b73816001541190565b15611bda5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611c745760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108e8565b60006001611c828484612b4c565b611c8c9190612e13565b9050611cb960017f0000000000000000000000000000000000000000000000000000000000002710612e13565b811115611cee57611ceb60017f0000000000000000000000000000000000000000000000000000000000002710612e13565b90505b611cf9816001541190565b611d545760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108e8565b815b818111611df9576000818152600460205260409020546001600160a01b0316611de7576000611d8482611e27565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611df181612b33565b915050611d56565b50611e05816001612b4c565b600855505050565b61101c828260405180602001604052806000815250612356565b6040805180820190915260008082526020820152611e46826001541190565b611ea55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108e8565b60007f00000000000000000000000000000000000000000000000000000000000000058310611f0657611ef87f000000000000000000000000000000000000000000000000000000000000000584612e13565b611f03906001612b4c565b90505b825b818110611f6f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611f5c57949350505050565b5080611f6781612d1d565b915050611f08565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108e8565b803410156120195760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108e8565b8034111561123d57336108fc61202f8334612e13565b6040518115909202916000818181858888f1935050505015801561101c573d6000803e3d6000fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561219d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120eb903390899088908890600401612e26565b6020604051808303816000875af1925050508015612126575060408051601f3d908101601f1916820190925261212391810190612e63565b60015b612183573d808015612154576040519150601f19603f3d011682016040523d82523d6000602084013e612159565b606091505b50805160000361217b5760405162461bcd60e51b81526004016108e890612d4a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121a1565b5060015b949350505050565b6060600d80546107fa90612aae565b6060816000036121df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561220957806121f381612b33565b91506122029050600a83612b89565b91506121e3565b6000816001600160401b0381111561222357612223612829565b6040519080825280601f01601f19166020018201604052801561224d576020820181803683370190505b5090505b84156121a157612262600183612e13565b915061226f600a86612b75565b61227a906030612b4c565b60f81b81838151811061228f5761228f612d34565b60200101906001600160f81b031916908160001a9053506122b1600a86612b89565b9450612251565b60006001600160a01b03821661232a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108e8565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123b95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108e8565b6123c4816001541190565b156124115760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108e8565b7f000000000000000000000000000000000000000000000000000000000000000583111561248c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108e8565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124e8908790612df3565b6001600160801b031681526020018583602001516125069190612df3565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126255760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125e960008884886120a7565b6126055760405162461bcd60e51b81526004016108e890612d4a565b8161260f81612b33565b925050808061261d90612b33565b91505061259c565b506001819055611c1c565b6001600160e01b03198116811461123d57600080fd5b60006020828403121561265857600080fd5b813561173a81612630565b60005b8381101561267e578181015183820152602001612666565b50506000910152565b6000815180845261269f816020860160208601612663565b601f01601f19169290920160200192915050565b60208152600061173a6020830184612687565b6000602082840312156126d857600080fd5b5035919050565b80356001600160a01b03811681146126f657600080fd5b919050565b6000806040838503121561270e57600080fd5b612717836126df565b946020939093013593505050565b60008060006060848603121561273a57600080fd5b612743846126df565b9250612751602085016126df565b9150604084013590509250925092565b6000806020838503121561277457600080fd5b82356001600160401b038082111561278b57600080fd5b818501915085601f83011261279f57600080fd5b8135818111156127ae57600080fd5b8660208285010111156127c057600080fd5b60209290920196919550909350505050565b6000602082840312156127e457600080fd5b61173a826126df565b6000806040838503121561280057600080fd5b612809836126df565b91506020830135801515811461281e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561286757612867612829565b604052919050565b60006001600160401b0382111561288857612888612829565b5060051b60200190565b600082601f8301126128a357600080fd5b813560206128b86128b38361286f565b61283f565b82815260059290921b840181019181810190868411156128d757600080fd5b8286015b848110156128f257803583529183019183016128db565b509695505050505050565b6000806040838503121561291057600080fd5b82356001600160401b038082111561292757600080fd5b818501915085601f83011261293b57600080fd5b8135602061294b6128b38361286f565b82815260059290921b8401810191818101908984111561296a57600080fd5b948201945b8386101561298f57612980866126df565b8252948201949082019061296f565b965050860135925050808211156129a557600080fd5b506129b285828601612892565b9150509250929050565b600080600080608085870312156129d257600080fd5b6129db856126df565b935060206129ea8187016126df565b93506040860135925060608601356001600160401b0380821115612a0d57600080fd5b818801915088601f830112612a2157600080fd5b813581811115612a3357612a33612829565b612a45601f8201601f1916850161283f565b91508082528984828501011115612a5b57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612a8e57600080fd5b612a97836126df565b9150612aa5602084016126df565b90509250929050565b600181811c90821680612ac257607f821691505b602082108103612ae257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201612b4557612b45612b1d565b5060010190565b808201808211156107e5576107e5612b1d565b634e487b7160e01b600052601260045260246000fd5b600082612b8457612b84612b5f565b500690565b600082612b9857612b98612b5f565b500490565b601f821115610a1f57600081815260208120601f850160051c81016020861015612bc45750805b601f850160051c820191505b81811015611c1c57828155600101612bd0565b6001600160401b03831115612bfa57612bfa612829565b612c0e83612c088354612aae565b83612b9d565b6000601f841160018114612c425760008515612c2a5750838201355b600019600387901b1c1916600186901b178355612c9c565b600083815260209020601f19861690835b82811015612c735786850135825560209485019460019092019101612c53565b5086821015612c905760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b80820281158282048414176107e5576107e5612b1d565b600081612d2c57612d2c612b1d565b506000190190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612daf818460208801612663565b835190830190612dc3818360208801612663565b01949350505050565b6001600160801b03828116828216039080821115612dec57612dec612b1d565b5092915050565b6001600160801b03818116838216019080821115612dec57612dec612b1d565b818103818111156107e5576107e5612b1d565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e5990830184612687565b9695505050505050565b600060208284031215612e7557600080fd5b815161173a8161263056fea2646970667358221220b67aa873f692724f71cbe84c772a5a85e55b40783657809a1bbcb9244ded910164736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000001388

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : collectionSize_ (uint256): 10000
Arg [2] : amountForDevs_ (uint256): 1000
Arg [3] : amountForFree_ (uint256): 5000

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001388


Deployed Bytecode Sourcemap

41008:4223:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26370:370;;;;;;;;;;-1:-1:-1;26370:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26370:370:0;;;;;;;;28096:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29621:204::-;;;;;;;;;;-1:-1:-1;29621:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;29621:204:0;1533:203:1;29184:379:0;;;;;;;;;;-1:-1:-1;29184:379:0;;;;;:::i;:::-;;:::i;:::-;;24931:94;;;;;;;;;;-1:-1:-1;25007:12:0;;24931:94;;;2324:25:1;;;2312:2;2297:18;24931:94:0;2178:177:1;30471:142:0;;;;;;;;;;-1:-1:-1;30471:142:0;;;;;:::i;:::-;;:::i;44648:118::-;;;;;;;;;;-1:-1:-1;44648:118:0;;;;;:::i;:::-;;:::i;25562:744::-;;;;;;;;;;-1:-1:-1;25562:744:0;;;;;:::i;:::-;;:::i;43736:442::-;;;;;;;;;;-1:-1:-1;43736:442:0;;;;;:::i;:::-;;:::i;30676:157::-;;;;;;;;;;-1:-1:-1;30676:157:0;;;;;:::i;:::-;;:::i;25094:177::-;;;;;;;;;;-1:-1:-1;25094:177:0;;;;;:::i;:::-;;:::i;44355:100::-;;;;;;;;;;-1:-1:-1;44355:100:0;;;;;:::i;:::-;;:::i;43226:132::-;;;;;;;;;;-1:-1:-1;43226:132:0;;;;;:::i;:::-;43332:19;;;43226:132;27919:118;;;;;;;;;;-1:-1:-1;27919:118:0;;;;;:::i;:::-;;:::i;42497:513::-;;;;;;:::i;:::-;;:::i;41210:28::-;;;;;;;;;;;;;;;;41254;;;;;;;;;;;;;;;;26796:211;;;;;;;;;;-1:-1:-1;26796:211:0;;;;;:::i;:::-;;:::i;40302:94::-;;;;;;;;;;;;;:::i;42107:384::-;;;:::i;41071:48::-;;;;;;;;;;;;;;;39651:87;;;;;;;;;;-1:-1:-1;39697:7:0;39724:6;-1:-1:-1;;;;;39724:6:0;39651:87;;44885:147;;;;;;;;;;-1:-1:-1;44885:147:0;;;;;:::i;:::-;;:::i;:::-;;;;3711:13:1;;-1:-1:-1;;;;;3707:39:1;3689:58;;3807:4;3795:17;;;3789:24;-1:-1:-1;;;;;3785:49:1;3763:20;;;3756:79;;;;3662:18;44885:147:0;3481:360:1;28251:98:0;;;;;;;;;;;;;:::i;41797:304::-;;;;;;;;;;-1:-1:-1;41797:304:0;;;;;:::i;:::-;;:::i;29889:274::-;;;;;;;;;;-1:-1:-1;29889:274:0;;;;;:::i;:::-;;:::i;41300:44::-;;;;;;;;;;-1:-1:-1;41300:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;44461:181;;;;;;;;;;;;;:::i;43366:339::-;;;;;;;;;;-1:-1:-1;43366:339:0;;;;;:::i;:::-;;:::i;41167:38::-;;;;;;;;;;;;;;;30896:311;;;;;;;;;;-1:-1:-1;30896:311:0;;;;;:::i;:::-;;:::i;28412:394::-;;;;;;;;;;-1:-1:-1;28412:394:0;;;;;:::i;:::-;;:::i;35311:43::-;;;;;;;;;;;;;;;;44772:107;;;;;;;;;;-1:-1:-1;44772:107:0;;;;;:::i;:::-;;:::i;30226:186::-;;;;;;;;;;-1:-1:-1;30226:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;30371:25:0;;;30348:4;30371:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30226:186;40551:192;;;;;;;;;;-1:-1:-1;40551:192:0;;;;;:::i;:::-;;:::i;45136:92::-;;;;;;;;;;-1:-1:-1;45136:92:0;;;;;:::i;:::-;;:::i;41124:38::-;;;;;;;;;;;;;;;45038:92;;;;;;;;;;-1:-1:-1;45038:92:0;;;;;:::i;:::-;;:::i;26370:370::-;26497:4;-1:-1:-1;;;;;;26527:40:0;;-1:-1:-1;;;26527:40:0;;:99;;-1:-1:-1;;;;;;;26578:48:0;;-1:-1:-1;;;26578:48:0;26527:99;:160;;;-1:-1:-1;;;;;;;26637:50:0;;-1:-1:-1;;;26637:50:0;26527:160;:207;;;-1:-1:-1;;;;;;;;;;12651:40:0;;;26698:36;26513:221;26370:370;-1:-1:-1;;26370:370:0:o;28096:94::-;28150:13;28179:5;28172:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28096:94;:::o;29621:204::-;29689:7;29713:16;29721:7;31533:12;;-1:-1:-1;31523:22:0;31446:105;29713:16;29705:74;;;;-1:-1:-1;;;29705:74:0;;8453:2:1;29705:74:0;;;8435:21:1;8492:2;8472:18;;;8465:30;8531:34;8511:18;;;8504:62;-1:-1:-1;;;8582:18:1;;;8575:43;8635:19;;29705:74:0;;;;;;;;;-1:-1:-1;29795:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29795:24:0;;29621:204::o;29184:379::-;29253:13;29269:24;29285:7;29269:15;:24::i;:::-;29253:40;;29314:5;-1:-1:-1;;;;;29308:11:0;:2;-1:-1:-1;;;;;29308:11:0;;29300:58;;;;-1:-1:-1;;;29300:58:0;;8867:2:1;29300:58:0;;;8849:21:1;8906:2;8886:18;;;8879:30;8945:34;8925:18;;;8918:62;-1:-1:-1;;;8996:18:1;;;8989:32;9038:19;;29300:58:0;8665:398:1;29300:58:0;22481:10;-1:-1:-1;;;;;29383:21:0;;;;:62;;-1:-1:-1;29408:37:0;29425:5;22481:10;30226:186;:::i;29408:37::-;29367:153;;;;-1:-1:-1;;;29367:153:0;;9270:2:1;29367:153:0;;;9252:21:1;9309:2;9289:18;;;9282:30;9348:34;9328:18;;;9321:62;9419:27;9399:18;;;9392:55;9464:19;;29367:153:0;9068:421:1;29367:153:0;29529:28;29538:2;29542:7;29551:5;29529:8;:28::i;:::-;29246:317;29184:379;;:::o;30471:142::-;30579:28;30589:4;30595:2;30599:7;30579:9;:28::i;44648:118::-;39697:7;39724:6;-1:-1:-1;;;;;39724:6:0;22481:10;39871:23;39863:68;;;;-1:-1:-1;;;39863:68:0;;;;;;;:::i;:::-;20852:1:::1;21448:7;;:19:::0;21440:63:::1;;;::::0;-1:-1:-1;;;21440:63:0;;10057:2:1;21440:63:0::1;::::0;::::1;10039:21:1::0;10096:2;10076:18;;;10069:30;10135:33;10115:18;;;10108:61;10186:18;;21440:63:0::1;9855:355:1::0;21440:63:0::1;20852:1;21581:7;:18:::0;44732:28:::2;44751:8:::0;44732:18:::2;:28::i;:::-;-1:-1:-1::0;20808:1:0::1;21760:7;:22:::0;44648:118::o;25562:744::-;25671:7;25706:16;25716:5;25706:9;:16::i;:::-;25698:5;:24;25690:71;;;;-1:-1:-1;;;25690:71:0;;10417:2:1;25690:71:0;;;10399:21:1;10456:2;10436:18;;;10429:30;10495:34;10475:18;;;10468:62;-1:-1:-1;;;10546:18:1;;;10539:32;10588:19;;25690:71:0;10215:398:1;25690:71:0;25768:22;25793:13;25007:12;;;24931:94;25793:13;25768:38;;25813:19;25843:25;25893:9;25888:350;25912:14;25908:1;:18;25888:350;;;25942:31;25976:14;;;:11;:14;;;;;;;;;25942:48;;;;;;;;;-1:-1:-1;;;;;25942:48:0;;;;;-1:-1:-1;;;25942:48:0;;;-1:-1:-1;;;;;25942:48:0;;;;;;;;26003:28;25999:89;;26064:14;;;-1:-1:-1;25999:89:0;26121:5;-1:-1:-1;;;;;26100:26:0;:17;-1:-1:-1;;;;;26100:26:0;;26096:135;;26158:5;26143:11;:20;26139:59;;-1:-1:-1;26185:1:0;-1:-1:-1;26178:8:0;;-1:-1:-1;;;26178:8:0;26139:59;26208:13;;;;:::i;:::-;;;;26096:135;-1:-1:-1;25928:3:0;;;;:::i;:::-;;;;25888:350;;;-1:-1:-1;26244:56:0;;-1:-1:-1;;;26244:56:0;;11092:2:1;26244:56:0;;;11074:21:1;11131:2;11111:18;;;11104:30;11170:34;11150:18;;;11143:62;-1:-1:-1;;;11221:18:1;;;11214:44;11275:19;;26244:56:0;10890:410:1;43736:442:0;39697:7;39724:6;-1:-1:-1;;;;;39724:6:0;22481:10;39871:23;39863:68;;;;-1:-1:-1;;;39863:68:0;;;;;;;:::i;:::-;43841:13:::1;43829:8;43813:13;25007:12:::0;;;24931:94;43813:13:::1;:24;;;;:::i;:::-;:41;;43797:114;;;::::0;-1:-1:-1;;;43797:114:0;;11637:2:1;43797:114:0::1;::::0;::::1;11619:21:1::0;11676:2;11656:18;;;11649:30;11715:34;11695:18;;;11688:62;-1:-1:-1;;;11766:18:1;;;11759:37;11813:19;;43797:114:0::1;11435:403:1::0;43797:114:0::1;43934:23;43945:12;43934:8:::0;:23:::1;:::i;:::-;:28:::0;43918:106:::1;;;::::0;-1:-1:-1;;;43918:106:0;;12294:2:1;43918:106:0::1;::::0;::::1;12276:21:1::0;12333:2;12313:18;;;12306:30;12372:34;12352:18;;;12345:62;-1:-1:-1;;;12423:18:1;;;12416:42;12475:19;;43918:106:0::1;12092:408:1::0;43918:106:0::1;44031:17;44051:23;44062:12;44051:8:::0;:23:::1;:::i;:::-;44031:43;;44086:9;44081:92;44105:9;44101:1;:13;44081:92;;;44130:35;44140:10;44152:12;44130:9;:35::i;:::-;44116:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44081:92;;30676:157:::0;30788:39;30805:4;30811:2;30815:7;30788:39;;;;;;;;;;;;:16;:39::i;25094:177::-;25161:7;25193:13;25007:12;;;24931:94;25193:13;25185:5;:21;25177:69;;;;-1:-1:-1;;;25177:69:0;;12832:2:1;25177:69:0;;;12814:21:1;12871:2;12851:18;;;12844:30;12910:34;12890:18;;;12883:62;-1:-1:-1;;;12961:18:1;;;12954:33;13004:19;;25177:69:0;12630:399:1;25177:69:0;-1:-1:-1;25260:5:0;25094:177::o;44355:100::-;39697:7;39724:6;-1:-1:-1;;;;;39724:6:0;22481:10;39871:23;39863:68;;;;-1:-1:-1;;;39863:68:0;;;;;;;:::i;:::-;44426:13:::1;:23;44442:7:::0;;44426:13;:23:::1;:::i;27919:118::-:0;27983:7;28006:20;28018:7;28006:11;:20::i;:::-;:25;;27919:118;-1:-1:-1;;27919:118:0:o;42497:513::-;41719:9;41732:10;41719:23;41711:66;;;;-1:-1:-1;;;41711:66:0;;;;;;;:::i;:::-;42610:9:::1;::::0;43332:19;42628:90:::1;;;::::0;-1:-1:-1;;;42628:90:0;;15653:2:1;42628:90:0::1;::::0;::::1;15635:21:1::0;15692:2;15672:18;;;15665:30;15731:31;15711:18;;;15704:59;15780:18;;42628:90:0::1;15451:353:1::0;42628:90:0::1;42761:14;42749:8;42733:13;25007:12:::0;;;24931:94;42733:13:::1;:24;;;;:::i;:::-;:42;;42725:73;;;;-1:-1:-1::0;;;42725:73:0::1;;;;;;;:::i;:::-;42860:23;42848:8;42821:24;42834:10;42821:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;42805:118;;;::::0;-1:-1:-1;;;42805:118:0;;16358:2:1;42805:118:0::1;::::0;::::1;16340:21:1::0;16397:2;16377:18;;;16370:30;-1:-1:-1;;;16416:18:1;;;16409:52;16478:18;;42805:118:0::1;16156:346:1::0;42805:118:0::1;42930:31;42940:10;42952:8;42930:9;:31::i;:::-;42968:36;42981:22;42995:8:::0;42981:11;:22:::1;:::i;:::-;42968:12;:36::i;:::-;42581:429;42497:513:::0;:::o;26796:211::-;26860:7;-1:-1:-1;;;;;26884:19:0;;26876:75;;;;-1:-1:-1;;;26876:75:0;;16882:2:1;26876:75:0;;;16864:21:1;16921:2;16901:18;;;16894:30;16960:34;16940:18;;;16933:62;-1:-1:-1;;;17011:18:1;;;17004:41;17062:19;;26876:75:0;16680:407:1;26876:75:0;-1:-1:-1;;;;;;26973:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26973:27:0;;26796:211::o;40302:94::-;39697:7;39724:6;-1:-1:-1;;;;;39724:6:0;22481:10;39871:23;39863:68;;;;-1:-1:-1;;;39863:68:0;;;;;;;:::i;:::-;40367:21:::1;40385:1;40367:9;:21::i;:::-;40302:94::o:0;42107:384::-;41719:9;41732:10;41719:23;41711:66;;;;-1:-1:-1;;;41711:66:0;;;;;;;:::i;:::-;42178:9:::1;::::0;42162:13:::1;42202:10:::0;;;42194:55:::1;;;::::0;-1:-1:-1;;;42194:55:0;;17294:2:1;42194:55:0::1;::::0;::::1;17276:21:1::0;;;17313:18;;;17306:30;17372:34;17352:18;;;17345:62;17424:18;;42194:55:0::1;17092:356:1::0;42194:55:0::1;42274:10;42288:1;42264:21:::0;;;:9:::1;:21;::::0;;;;;42256:69:::1;;;::::0;-1:-1:-1;;;42256:69:0;;17655:2:1;42256:69:0::1;::::0;::::1;17637:21:1::0;17694:2;17674:18;;;17667:30;17733:33;17713:18;;;17706:61;17784:18;;42256:69:0::1;17453:355:1::0;42256:69:0::1;42361:14;42340:13;25007:12:::0;;;24931:94;42340:13:::1;:17;::::0;42356:1:::1;42340:17;:::i;:::-;:35;;42332:66;;;;-1:-1:-1::0;;;42332:66:0::1;;;;;;;:::i;:::-;42415:10;42405:21;::::0;;;:9:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;:::-;;;;;;42435:24;42445:10;42457:1;42435:9;:24::i;:::-;42466:19;42479:5;42466:12;:19::i;:::-;42155:336;42107:384::o:0;44885:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;45006:20:0;45018:7;45006:11;:20::i;28251:98::-;28307:13;28336:7;28329:14;;;;;:::i;41797:304::-;41719:9;41732:10;41719:23;41711:66;;;;-1:-1:-1;;;41711:66:0;;;;;;;:::i;:::-;41896:13:::1;41884:8;41868:13;25007:12:::0;;;24931:94;41868:13:::1;:24;;;;:::i;:::-;:41;;41860:72;;;;-1:-1:-1::0;;;41860:72:0::1;;;;;;;:::i;:::-;41994:23;41982:8;41955:24;41968:10;41955:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;41939:118;;;::::0;-1:-1:-1;;;41939:118:0;;16358:2:1;41939:118:0::1;::::0;::::1;16340:21:1::0;16397:2;16377:18;;;16370:30;-1:-1:-1;;;16416:18:1;;;16409:52;16478:18;;41939:118:0::1;16156:346:1::0;41939:118:0::1;42064:31;42074:10;42086:8;42064:9;:31::i;29889:274::-:0;22481:10;-1:-1:-1;;;;;29980:24:0;;;29972:63;;;;-1:-1:-1;;;29972:63:0;;18156:2:1;29972:63:0;;;18138:21:1;18195:2;18175:18;;;18168:30;18234:28;18214:18;;;18207:56;18280:18;;29972:63:0;17954:350:1;29972:63:0;22481:10;30044:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30044:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30044:53:0;;;;;;;;;;30109:48;;540:41:1;;;30044:42:0;;22481:10;30109:48;;513:18:1;30109:48:0;;;;;;;29889:274;;:::o;44461:181::-;39697:7;39724:6;-1:-1:-1;;;;;39724:6:0;22481:10;39871:23;39863:68;;;;-1:-1:-1;;;39863:68:0;;;;;;;:::i;:::-;20852:1:::1;21448:7;;:19:::0;21440:63:::1;;;::::0;-1:-1:-1;;;21440:63:0;;10057:2:1;21440:63:0::1;::::0;::::1;10039:21:1::0;10096:2;10076:18;;;10069:30;10135:33;10115:18;;;10108:61;10186:18;;21440:63:0::1;9855:355:1::0;21440:63:0::1;20852:1;21581:7;:18:::0;44544:49:::2;::::0;44526:12:::2;::::0;44544:10:::2;::::0;44567:21:::2;::::0;44526:12;44544:49;44526:12;44544:49;44567:21;44544:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44525:68;;;44608:7;44600:36;;;::::0;-1:-1:-1;;;44600:36:0;;18721:2:1;44600:36:0::2;::::0;::::2;18703:21:1::0;18760:2;18740:18;;;18733:30;-1:-1:-1;;;18779:18:1;;;18772:46;18835:18;;44600:36:0::2;18519:340:1::0;43366:339:0;39697:7;39724:6;-1:-1:-1;;;;;39724:6:0;22481:10;39871:23;39863:68;;;;-1:-1:-1;;;39863:68:0;;;;;;;:::i;:::-;43519:8:::1;:15;43499:9;:16;:35;43483:109;;;::::0;-1:-1:-1;;;43483:109:0;;19066:2:1;43483:109:0::1;::::0;::::1;19048:21:1::0;19105:2;19085:18;;;19078:30;19144:34;19124:18;;;19117:62;-1:-1:-1;;;19195:18:1;;;19188:38;19243:19;;43483:109:0::1;18864:404:1::0;43483:109:0::1;43604:9;43599:101;43623:9;:16;43619:1;:20;43599:101;;;43681:8;43690:1;43681:11;;;;;;;;:::i;:::-;;;;;;;43655:9;:23;43665:9;43675:1;43665:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;43655:23:0::1;-1:-1:-1::0;;;;;43655:23:0::1;;;;;;;;;;;;:37;;;;43641:3;;;;;:::i;:::-;;;;43599:101;;30896:311:::0;31033:28;31043:4;31049:2;31053:7;31033:9;:28::i;:::-;31084:48;31107:4;31113:2;31117:7;31126:5;31084:22;:48::i;:::-;31068:133;;;;-1:-1:-1;;;31068:133:0;;;;;;;:::i;:::-;30896:311;;;;:::o;28412:394::-;28510:13;28551:16;28559:7;31533:12;;-1:-1:-1;31523:22:0;31446:105;28551:16;28535:97;;;;-1:-1:-1;;;28535:97:0;;20027:2:1;28535:97:0;;;20009:21:1;20066:2;20046:18;;;20039:30;20105:34;20085:18;;;20078:62;-1:-1:-1;;;20156:18:1;;;20149:45;20211:19;;28535:97:0;19825:411:1;28535:97:0;28641:21;28665:10;:8;:10::i;:::-;28641:34;;28720:1;28702:7;28696:21;:25;:104;;;;;;;;;;;;;;;;;28757:7;28766:18;:7;:16;:18::i;:::-;28740:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28696:104;28682:118;28412:394;-1:-1:-1;;;28412:394:0:o;44772:107::-;44830:7;44853:20;44867:5;44853:13;:20::i;40551:192::-;39697:7;39724:6;-1:-1:-1;;;;;39724:6:0;22481:10;39871:23;39863:68;;;;-1:-1:-1;;;39863:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40640:22:0;::::1;40632:73;;;::::0;-1:-1:-1;;;40632:73:0;;20944:2:1;40632:73:0::1;::::0;::::1;20926:21:1::0;20983:2;20963:18;;;20956:30;21022:34;21002:18;;;20995:62;-1:-1:-1;;;21073:18:1;;;21066:36;21119:19;;40632:73:0::1;20742:402:1::0;40632:73:0::1;40716:19;40726:8;40716:9;:19::i;45136:92::-:0;39697:7;39724:6;-1:-1:-1;;;;;39724:6:0;22481:10;39871:23;39863:68;;;;-1:-1:-1;;;39863:68:0;;;;;;;:::i;:::-;45202:9:::1;:20:::0;45136:92::o;45038:::-;39697:7;39724:6;-1:-1:-1;;;;;39724:6:0;22481:10;39871:23;39863:68;;;;-1:-1:-1;;;39863:68:0;;;;;;;:::i;:::-;45104:9:::1;:20:::0;45038:92::o;35133:172::-;35230:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35230:29:0;-1:-1:-1;;;;;35230:29:0;;;;;;;;;35271:28;;35230:24;;35271:28;;;;;;;35133:172;;;:::o;33498:1529::-;33595:35;33633:20;33645:7;33633:11;:20::i;:::-;33704:18;;33595:58;;-1:-1:-1;33662:22:0;;-1:-1:-1;;;;;33688:34:0;22481:10;-1:-1:-1;;;;;33688:34:0;;:81;;;-1:-1:-1;22481:10:0;33733:20;33745:7;33733:11;:20::i;:::-;-1:-1:-1;;;;;33733:36:0;;33688:81;:142;;;-1:-1:-1;33797:18:0;;33780:50;;22481:10;30226:186;:::i;33780:50::-;33662:169;;33856:17;33840:101;;;;-1:-1:-1;;;33840:101:0;;21351:2:1;33840:101:0;;;21333:21:1;21390:2;21370:18;;;21363:30;21429:34;21409:18;;;21402:62;-1:-1:-1;;;21480:18:1;;;21473:48;21538:19;;33840:101:0;21149:414:1;33840:101:0;33988:4;-1:-1:-1;;;;;33966:26:0;:13;:18;;;-1:-1:-1;;;;;33966:26:0;;33950:98;;;;-1:-1:-1;;;33950:98:0;;21770:2:1;33950:98:0;;;21752:21:1;21809:2;21789:18;;;21782:30;21848:34;21828:18;;;21821:62;-1:-1:-1;;;21899:18:1;;;21892:36;21945:19;;33950:98:0;21568:402:1;33950:98:0;-1:-1:-1;;;;;34063:16:0;;34055:66;;;;-1:-1:-1;;;34055:66:0;;22177:2:1;34055:66:0;;;22159:21:1;22216:2;22196:18;;;22189:30;22255:34;22235:18;;;22228:62;-1:-1:-1;;;22306:18:1;;;22299:35;22351:19;;34055:66:0;21975:401:1;34055:66:0;34230:49;34247:1;34251:7;34260:13;:18;;;34230:8;:49::i;:::-;-1:-1:-1;;;;;34288:18:0;;;;;;:12;:18;;;;;:31;;34318:1;;34288:18;:31;;34318:1;;-1:-1:-1;;;;;34288:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;34288:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34326:16:0;;-1:-1:-1;34326:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;34326:16:0;;:29;;-1:-1:-1;;34326:29:0;;:::i;:::-;;;-1:-1:-1;;;;;34326:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34385:43:0;;;;;;;;-1:-1:-1;;;;;34385:43:0;;;;;-1:-1:-1;;;;;34411:15:0;34385:43;;;;;;;;;-1:-1:-1;34362:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;34362:66:0;-1:-1:-1;;;;;;34362:66:0;;;;;;;;;;;34678:11;34374:7;-1:-1:-1;34678:11:0;:::i;:::-;34741:1;34700:24;;;:11;:24;;;;;:29;34656:33;;-1:-1:-1;;;;;;34700:29:0;34696:236;;34758:20;34766:11;31533:12;;-1:-1:-1;31523:22:0;31446:105;34758:20;34754:171;;;34818:97;;;;;;;;34845:18;;-1:-1:-1;;;;;34818:97:0;;;;;;34876:28;;;;-1:-1:-1;;;;;34818:97:0;;;;;;;;;-1:-1:-1;34791:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;34791:124:0;-1:-1:-1;;;;;;34791:124:0;;;;;;;;;;;;34754:171;34964:7;34960:2;-1:-1:-1;;;;;34945:27:0;34954:4;-1:-1:-1;;;;;34945:27:0;;;;;;;;;;;34979:42;33588:1439;;;33498:1529;;;:::o;35459:846::-;35549:24;;35588:12;35580:49;;;;-1:-1:-1;;;35580:49:0;;22990:2:1;35580:49:0;;;22972:21:1;23029:2;23009:18;;;23002:30;23068:26;23048:18;;;23041:54;23112:18;;35580:49:0;22788:348:1;35580:49:0;35636:16;35686:1;35655:28;35675:8;35655:17;:28;:::i;:::-;:32;;;;:::i;:::-;35636:51;-1:-1:-1;35709:18:0;35726:1;35709:14;:18;:::i;:::-;35698:8;:29;35694:81;;;35749:18;35766:1;35749:14;:18;:::i;:::-;35738:29;;35694:81;35890:17;35898:8;31533:12;;-1:-1:-1;31523:22:0;31446:105;35890:17;35882:68;;;;-1:-1:-1;;;35882:68:0;;23476:2:1;35882:68:0;;;23458:21:1;23515:2;23495:18;;;23488:30;23554:34;23534:18;;;23527:62;-1:-1:-1;;;23605:18:1;;;23598:36;23651:19;;35882:68:0;23274:402:1;35882:68:0;35974:17;35957:297;35998:8;35993:1;:13;35957:297;;36057:1;36026:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;36026:19:0;36022:225;;36072:31;36106:14;36118:1;36106:11;:14::i;:::-;36148:89;;;;;;;;36175:14;;-1:-1:-1;;;;;36148:89:0;;;;;;36202:24;;;;-1:-1:-1;;;;;36148:89:0;;;;;;;;;-1:-1:-1;36131:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;36131:106:0;-1:-1:-1;;;;;;36131:106:0;;;;;;;;;;;;-1:-1:-1;36022:225:0;36008:3;;;;:::i;:::-;;;;35957:297;;;-1:-1:-1;36287:12:0;:8;36298:1;36287:12;:::i;:::-;36260:24;:39;-1:-1:-1;;;35459:846:0:o;31557:98::-;31622:27;31632:2;31636:8;31622:27;;;;;;;;;;;;:9;:27::i;27259:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;27376:16:0;27384:7;31533:12;;-1:-1:-1;31523:22:0;31446:105;27376:16;27368:71;;;;-1:-1:-1;;;27368:71:0;;23883:2:1;27368:71:0;;;23865:21:1;23922:2;23902:18;;;23895:30;23961:34;23941:18;;;23934:62;-1:-1:-1;;;24012:18:1;;;24005:40;24062:19;;27368:71:0;23681:406:1;27368:71:0;27448:26;27496:12;27485:7;:23;27481:93;;27540:22;27550:12;27540:7;:22;:::i;:::-;:26;;27565:1;27540:26;:::i;:::-;27519:47;;27481:93;27602:7;27582:212;27619:18;27611:4;:26;27582:212;;27656:31;27690:17;;;:11;:17;;;;;;;;;27656:51;;;;;;;;;-1:-1:-1;;;;;27656:51:0;;;;;-1:-1:-1;;;27656:51:0;;;-1:-1:-1;;;;;27656:51:0;;;;;;;;27720:28;27716:71;;27768:9;27259:606;-1:-1:-1;;;;27259:606:0:o;27716:71::-;-1:-1:-1;27639:6:0;;;;:::i;:::-;;;;27582:212;;;-1:-1:-1;27802:57:0;;-1:-1:-1;;;27802:57:0;;24294:2:1;27802:57:0;;;24276:21:1;24333:2;24313:18;;;24306:30;24372:34;24352:18;;;24345:62;-1:-1:-1;;;24423:18:1;;;24416:45;24478:19;;27802:57:0;24092:411:1;43016:204:0;43089:5;43076:9;:18;;43068:53;;;;-1:-1:-1;;;43068:53:0;;24710:2:1;43068:53:0;;;24692:21:1;24749:2;24729:18;;;24722:30;-1:-1:-1;;;24768:18:1;;;24761:52;24830:18;;43068:53:0;24508:346:1;43068:53:0;43144:5;43132:9;:17;43128:87;;;43168:10;43160:47;43189:17;43201:5;43189:9;:17;:::i;:::-;43160:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40751:173;40807:16;40826:6;;-1:-1:-1;;;;;40843:17:0;;;-1:-1:-1;;;;;;40843:17:0;;;;;;40876:40;;40826:6;;;;;;;40876:40;;40807:16;40876:40;40796:128;40751:173;:::o;36848:690::-;36985:4;-1:-1:-1;;;;;37002:13:0;;3237:20;3285:8;36998:535;;37041:72;;-1:-1:-1;;;37041:72:0;;-1:-1:-1;;;;;37041:36:0;;;;;:72;;22481:10;;37092:4;;37098:7;;37107:5;;37041:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37041:72:0;;;;;;;;-1:-1:-1;;37041:72:0;;;;;;;;;;;;:::i;:::-;;;37028:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37272:6;:13;37289:1;37272:18;37268:215;;37305:61;;-1:-1:-1;;;37305:61:0;;;;;;;:::i;37268:215::-;37451:6;37445:13;37436:6;37432:2;37428:15;37421:38;37028:464;-1:-1:-1;;;;;;37163:55:0;-1:-1:-1;;;37163:55:0;;-1:-1:-1;37156:62:0;;36998:535;-1:-1:-1;37521:4:0;36998:535;36848:690;;;;;;:::o;44241:108::-;44301:13;44330;44323:20;;;;;:::i;409:723::-;465:13;686:5;695:1;686:10;682:53;;-1:-1:-1;;713:10:0;;;;;;;;;;;;-1:-1:-1;;;713:10:0;;;;;409:723::o;682:53::-;760:5;745:12;801:78;808:9;;801:78;;834:8;;;;:::i;:::-;;-1:-1:-1;857:10:0;;-1:-1:-1;865:2:0;857:10;;:::i;:::-;;;801:78;;;889:19;921:6;-1:-1:-1;;;;;911:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;911:17:0;;889:39;;939:154;946:10;;939:154;;973:11;983:1;973:11;;:::i;:::-;;-1:-1:-1;1042:10:0;1050:2;1042:5;:10;:::i;:::-;1029:24;;:2;:24;:::i;:::-;1016:39;;999:6;1006;999:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;999:56:0;;;;;;;;-1:-1:-1;1070:11:0;1079:2;1070:11;;:::i;:::-;;;939:154;;27013:240;27074:7;-1:-1:-1;;;;;27106:19:0;;27090:102;;;;-1:-1:-1;;;27090:102:0;;25809:2:1;27090:102:0;;;25791:21:1;25848:2;25828:18;;;25821:30;25887:34;25867:18;;;25860:62;-1:-1:-1;;;25938:18:1;;;25931:47;25995:19;;27090:102:0;25607:413:1;27090:102:0;-1:-1:-1;;;;;;27214:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;27214:32:0;;-1:-1:-1;;;;;27214:32:0;;27013:240::o;31994:1272::-;32122:12;;-1:-1:-1;;;;;32149:16:0;;32141:62;;;;-1:-1:-1;;;32141:62:0;;26227:2:1;32141:62:0;;;26209:21:1;26266:2;26246:18;;;26239:30;26305:34;26285:18;;;26278:62;-1:-1:-1;;;26356:18:1;;;26349:31;26397:19;;32141:62:0;26025:397:1;32141:62:0;32340:21;32348:12;31533;;-1:-1:-1;31523:22:0;31446:105;32340:21;32339:22;32331:64;;;;-1:-1:-1;;;32331:64:0;;26629:2:1;32331:64:0;;;26611:21:1;26668:2;26648:18;;;26641:30;26707:31;26687:18;;;26680:59;26756:18;;32331:64:0;26427:353:1;32331:64:0;32422:12;32410:8;:24;;32402:71;;;;-1:-1:-1;;;32402:71:0;;26987:2:1;32402:71:0;;;26969:21:1;27026:2;27006:18;;;26999:30;27065:34;27045:18;;;27038:62;-1:-1:-1;;;27116:18:1;;;27109:32;27158:19;;32402:71:0;26785:398:1;32402:71:0;-1:-1:-1;;;;;32585:16:0;;32552:30;32585:16;;;:12;:16;;;;;;;;;32552:49;;;;;;;;;-1:-1:-1;;;;;32552:49:0;;;;;-1:-1:-1;;;32552:49:0;;;;;;;;;;;32627:119;;;;;;;;32647:19;;32552:49;;32627:119;;;32647:39;;32677:8;;32647:39;:::i;:::-;-1:-1:-1;;;;;32627:119:0;;;;;32730:8;32695:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32627:119:0;;;;;;-1:-1:-1;;;;;32608:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;32608:138:0;;;;;;;;;;;;32781:43;;;;;;;;;;-1:-1:-1;;;;;32807:15:0;32781:43;;;;;;;;32753:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32753:71:0;-1:-1:-1;;;;;;32753:71:0;;;;;;;;;;;;;;;;;;32765:12;;32877:281;32901:8;32897:1;:12;32877:281;;;32930:38;;32955:12;;-1:-1:-1;;;;;32930:38:0;;;32947:1;;32930:38;;32947:1;;32930:38;32995:59;33026:1;33030:2;33034:12;33048:5;32995:22;:59::i;:::-;32977:150;;;;-1:-1:-1;;;32977:150:0;;;;;;;:::i;:::-;33136:14;;;;:::i;:::-;;;;32911:3;;;;;:::i;:::-;;;;32877:281;;;-1:-1:-1;33166:12:0;:27;;;33200:60;30896:311;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:592::-;2764:6;2772;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2881:9;2868:23;-1:-1:-1;;;;;2951:2:1;2943:6;2940:14;2937:34;;;2967:1;2964;2957:12;2937:34;3005:6;2994:9;2990:22;2980:32;;3050:7;3043:4;3039:2;3035:13;3031:27;3021:55;;3072:1;3069;3062:12;3021:55;3112:2;3099:16;3138:2;3130:6;3127:14;3124:34;;;3154:1;3151;3144:12;3124:34;3199:7;3194:2;3185:6;3181:2;3177:15;3173:24;3170:37;3167:57;;;3220:1;3217;3210:12;3167:57;3251:2;3243:11;;;;;3273:6;;-1:-1:-1;2693:592:1;;-1:-1:-1;;;;2693:592:1:o;3290:186::-;3349:6;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3441:29;3460:9;3441:29;:::i;3846:347::-;3911:6;3919;3972:2;3960:9;3951:7;3947:23;3943:32;3940:52;;;3988:1;3985;3978:12;3940:52;4011:29;4030:9;4011:29;:::i;:::-;4001:39;;4090:2;4079:9;4075:18;4062:32;4137:5;4130:13;4123:21;4116:5;4113:32;4103:60;;4159:1;4156;4149:12;4103:60;4182:5;4172:15;;;3846:347;;;;;:::o;4198:127::-;4259:10;4254:3;4250:20;4247:1;4240:31;4290:4;4287:1;4280:15;4314:4;4311:1;4304:15;4330:275;4401:2;4395:9;4466:2;4447:13;;-1:-1:-1;;4443:27:1;4431:40;;-1:-1:-1;;;;;4486:34:1;;4522:22;;;4483:62;4480:88;;;4548:18;;:::i;:::-;4584:2;4577:22;4330:275;;-1:-1:-1;4330:275:1:o;4610:183::-;4670:4;-1:-1:-1;;;;;4695:6:1;4692:30;4689:56;;;4725:18;;:::i;:::-;-1:-1:-1;4770:1:1;4766:14;4782:4;4762:25;;4610:183::o;4798:662::-;4852:5;4905:3;4898:4;4890:6;4886:17;4882:27;4872:55;;4923:1;4920;4913:12;4872:55;4959:6;4946:20;4985:4;5009:60;5025:43;5065:2;5025:43;:::i;:::-;5009:60;:::i;:::-;5103:15;;;5189:1;5185:10;;;;5173:23;;5169:32;;;5134:12;;;;5213:15;;;5210:35;;;5241:1;5238;5231:12;5210:35;5277:2;5269:6;5265:15;5289:142;5305:6;5300:3;5297:15;5289:142;;;5371:17;;5359:30;;5409:12;;;;5322;;5289:142;;;-1:-1:-1;5449:5:1;4798:662;-1:-1:-1;;;;;;4798:662:1:o;5465:1146::-;5583:6;5591;5644:2;5632:9;5623:7;5619:23;5615:32;5612:52;;;5660:1;5657;5650:12;5612:52;5700:9;5687:23;-1:-1:-1;;;;;5770:2:1;5762:6;5759:14;5756:34;;;5786:1;5783;5776:12;5756:34;5824:6;5813:9;5809:22;5799:32;;5869:7;5862:4;5858:2;5854:13;5850:27;5840:55;;5891:1;5888;5881:12;5840:55;5927:2;5914:16;5949:4;5973:60;5989:43;6029:2;5989:43;:::i;5973:60::-;6067:15;;;6149:1;6145:10;;;;6137:19;;6133:28;;;6098:12;;;;6173:19;;;6170:39;;;6205:1;6202;6195:12;6170:39;6229:11;;;;6249:148;6265:6;6260:3;6257:15;6249:148;;;6331:23;6350:3;6331:23;:::i;:::-;6319:36;;6282:12;;;;6375;;;;6249:148;;;6416:5;-1:-1:-1;;6459:18:1;;6446:32;;-1:-1:-1;;6490:16:1;;;6487:36;;;6519:1;6516;6509:12;6487:36;;6542:63;6597:7;6586:8;6575:9;6571:24;6542:63;:::i;:::-;6532:73;;;5465:1146;;;;;:::o;6616:980::-;6711:6;6719;6727;6735;6788:3;6776:9;6767:7;6763:23;6759:33;6756:53;;;6805:1;6802;6795:12;6756:53;6828:29;6847:9;6828:29;:::i;:::-;6818:39;;6876:2;6897:38;6931:2;6920:9;6916:18;6897:38;:::i;:::-;6887:48;;6982:2;6971:9;6967:18;6954:32;6944:42;;7037:2;7026:9;7022:18;7009:32;-1:-1:-1;;;;;7101:2:1;7093:6;7090:14;7087:34;;;7117:1;7114;7107:12;7087:34;7155:6;7144:9;7140:22;7130:32;;7200:7;7193:4;7189:2;7185:13;7181:27;7171:55;;7222:1;7219;7212:12;7171:55;7258:2;7245:16;7280:2;7276;7273:10;7270:36;;;7286:18;;:::i;:::-;7328:53;7371:2;7352:13;;-1:-1:-1;;7348:27:1;7344:36;;7328:53;:::i;:::-;7315:66;;7404:2;7397:5;7390:17;7444:7;7439:2;7434;7430;7426:11;7422:20;7419:33;7416:53;;;7465:1;7462;7455:12;7416:53;7520:2;7515;7511;7507:11;7502:2;7495:5;7491:14;7478:45;7564:1;7559:2;7554;7547:5;7543:14;7539:23;7532:34;;7585:5;7575:15;;;;;6616:980;;;;;;;:::o;7601:260::-;7669:6;7677;7730:2;7718:9;7709:7;7705:23;7701:32;7698:52;;;7746:1;7743;7736:12;7698:52;7769:29;7788:9;7769:29;:::i;:::-;7759:39;;7817:38;7851:2;7840:9;7836:18;7817:38;:::i;:::-;7807:48;;7601:260;;;;;:::o;7866:380::-;7945:1;7941:12;;;;7988;;;8009:61;;8063:4;8055:6;8051:17;8041:27;;8009:61;8116:2;8108:6;8105:14;8085:18;8082:38;8079:161;;8162:10;8157:3;8153:20;8150:1;8143:31;8197:4;8194:1;8187:15;8225:4;8222:1;8215:15;8079:161;;7866:380;;;:::o;9494:356::-;9696:2;9678:21;;;9715:18;;;9708:30;9774:34;9769:2;9754:18;;9747:62;9841:2;9826:18;;9494:356::o;10618:127::-;10679:10;10674:3;10670:20;10667:1;10660:31;10710:4;10707:1;10700:15;10734:4;10731:1;10724:15;10750:135;10789:3;10810:17;;;10807:43;;10830:18;;:::i;:::-;-1:-1:-1;10877:1:1;10866:13;;10750:135::o;11305:125::-;11370:9;;;11391:10;;;11388:36;;;11404:18;;:::i;11843:127::-;11904:10;11899:3;11895:20;11892:1;11885:31;11935:4;11932:1;11925:15;11959:4;11956:1;11949:15;11975:112;12007:1;12033;12023:35;;12038:18;;:::i;:::-;-1:-1:-1;12072:9:1;;11975:112::o;12505:120::-;12545:1;12571;12561:35;;12576:18;;:::i;:::-;-1:-1:-1;12610:9:1;;12505:120::o;13160:545::-;13262:2;13257:3;13254:11;13251:448;;;13298:1;13323:5;13319:2;13312:17;13368:4;13364:2;13354:19;13438:2;13426:10;13422:19;13419:1;13415:27;13409:4;13405:38;13474:4;13462:10;13459:20;13456:47;;;-1:-1:-1;13497:4:1;13456:47;13552:2;13547:3;13543:12;13540:1;13536:20;13530:4;13526:31;13516:41;;13607:82;13625:2;13618:5;13615:13;13607:82;;;13670:17;;;13651:1;13640:13;13607:82;;13881:1206;-1:-1:-1;;;;;14000:3:1;13997:27;13994:53;;;14027:18;;:::i;:::-;14056:94;14146:3;14106:38;14138:4;14132:11;14106:38;:::i;:::-;14100:4;14056:94;:::i;:::-;14176:1;14201:2;14196:3;14193:11;14218:1;14213:616;;;;14873:1;14890:3;14887:93;;;-1:-1:-1;14946:19:1;;;14933:33;14887:93;-1:-1:-1;;13838:1:1;13834:11;;;13830:24;13826:29;13816:40;13862:1;13858:11;;;13813:57;14993:78;;14186:895;;14213:616;13107:1;13100:14;;;13144:4;13131:18;;-1:-1:-1;;14249:17:1;;;14350:9;14372:229;14386:7;14383:1;14380:14;14372:229;;;14475:19;;;14462:33;14447:49;;14582:4;14567:20;;;;14535:1;14523:14;;;;14402:12;14372:229;;;14376:3;14629;14620:7;14617:16;14614:159;;;14753:1;14749:6;14743:3;14737;14734:1;14730:11;14726:21;14722:34;14718:39;14705:9;14700:3;14696:19;14683:33;14679:79;14671:6;14664:95;14614:159;;;14816:1;14810:3;14807:1;14803:11;14799:19;14793:4;14786:33;14186:895;;;13881:1206;;;:::o;15092:354::-;15294:2;15276:21;;;15333:2;15313:18;;;15306:30;15372:32;15367:2;15352:18;;15345:60;15437:2;15422:18;;15092:354::o;15809:342::-;16011:2;15993:21;;;16050:2;16030:18;;;16023:30;-1:-1:-1;;;16084:2:1;16069:18;;16062:48;16142:2;16127:18;;15809:342::o;16507:168::-;16580:9;;;16611;;16628:15;;;16622:22;;16608:37;16598:71;;16649:18;;:::i;17813:136::-;17852:3;17880:5;17870:39;;17889:18;;:::i;:::-;-1:-1:-1;;;17925:18:1;;17813:136::o;19273:127::-;19334:10;19329:3;19325:20;19322:1;19315:31;19365:4;19362:1;19355:15;19389:4;19386:1;19379:15;19405:415;19607:2;19589:21;;;19646:2;19626:18;;;19619:30;19685:34;19680:2;19665:18;;19658:62;-1:-1:-1;;;19751:2:1;19736:18;;19729:49;19810:3;19795:19;;19405:415::o;20241:496::-;20420:3;20458:6;20452:13;20474:66;20533:6;20528:3;20521:4;20513:6;20509:17;20474:66;:::i;:::-;20603:13;;20562:16;;;;20625:70;20603:13;20562:16;20672:4;20660:17;;20625:70;:::i;:::-;20711:20;;20241:496;-1:-1:-1;;;;20241:496:1:o;22381:200::-;-1:-1:-1;;;;;22517:10:1;;;22505;;;22501:27;;22540:12;;;22537:38;;;22555:18;;:::i;:::-;22537:38;22381:200;;;;:::o;22586:197::-;-1:-1:-1;;;;;22708:10:1;;;22720;;;22704:27;;22743:11;;;22740:37;;;22757:18;;:::i;23141:128::-;23208:9;;;23229:11;;;23226:37;;;23243:18;;:::i;24859:489::-;-1:-1:-1;;;;;25128:15:1;;;25110:34;;25180:15;;25175:2;25160:18;;25153:43;25227:2;25212:18;;25205:34;;;25275:3;25270:2;25255:18;;25248:31;;;25053:4;;25296:46;;25322:19;;25314:6;25296:46;:::i;:::-;25288:54;24859:489;-1:-1:-1;;;;;;24859:489:1:o;25353:249::-;25422:6;25475:2;25463:9;25454:7;25450:23;25446:32;25443:52;;;25491:1;25488;25481:12;25443:52;25523:9;25517:16;25542:30;25566:5;25542:30;:::i

Swarm Source

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