ETH Price: $2,502.75 (-0.54%)

Token

Sandykaka (Sandykaka)
 

Overview

Max Total Supply

76 Sandykaka

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Sandykaka
0xccf0a2520592197b1a23de2efbabe27fa0715680
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:
Sandykaka

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: Sandykaka.sol



pragma solidity ^0.8.0;





contract Sandykaka is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;

  struct SaleConfig {
    uint64 mintlistPrice;
    uint64 publicPrice;
    uint256 tierSupply;
  }

  SaleConfig public saleConfig;
  uint256 private _saleKey;

  mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("Sandykaka", "Sandykaka", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
  }

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

  function allowlistMint() external payable callerIsUser {
    uint256 price = uint256(saleConfig.mintlistPrice);
    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 publicSaleMint(uint256 quantity, uint256 callerSaleKey)
    external
    payable
    callerIsUser
  {
    SaleConfig memory config = saleConfig;
    uint256 publicPrice = uint256(config.publicPrice);
    uint256 tierSupply = config.tierSupply;

    require(
      _saleKey == callerSaleKey,
      "called with incorrect public sale key"
    );
    require(publicPrice != 0, "public sale has not begun yet");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(totalSupply() + quantity <= tierSupply, 'reached tier 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 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 preserve mint.
  function preserveMint(uint256 quantity, address to) external onlyOwner {
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    _safeMint(to, quantity);
  }

  function setSaleKey(uint256 saleKey) external onlyOwner {
    _saleKey = saleKey;
  }

  function setSaleConfig(
    uint64 mintlistPriceWei,
    uint64 publicPriceWei,
    uint256 tierSupply
  ) external onlyOwner {
    saleConfig = SaleConfig(
      mintlistPriceWei,
      publicPriceWei,
      tierSupply
    );
  }

  function getSaleConfig () public view returns (SaleConfig memory) {
    return saleConfig;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","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":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"getSaleConfig","outputs":[{"components":[{"internalType":"uint64","name":"mintlistPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"uint256","name":"tierSupply","type":"uint256"}],"internalType":"struct Sandykaka.SaleConfig","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":[],"name":"maxPerAddressDuringMint","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"},{"internalType":"address","name":"to","type":"address"}],"name":"preserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"callerSaleKey","type":"uint256"}],"name":"publicSaleMint","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":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"mintlistPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"uint256","name":"tierSupply","type":"uint256"}],"stateMutability":"view","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":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"mintlistPriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint256","name":"tierSupply","type":"uint256"}],"name":"setSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"saleKey","type":"uint256"}],"name":"setSaleKey","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"}]

60e0604052600060015560006008553480156200001b57600080fd5b5060405162003181380380620031818339810160408190526200003e91620002ad565b6040518060400160405280600981526020016853616e64796b616b6160b81b8152506040518060400160405280600981526020016853616e64796b616b6160b81b81525083836200009e62000098620001b360201b60201c565b620001b7565b600081116200010b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200016d5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000102565b83516200018290600290602087019062000207565b5082516200019890600390602086019062000207565b5060a091909152608052505060016009555060c0526200030f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200021590620002d2565b90600052602060002090601f01602090048101928262000239576000855562000284565b82601f106200025457805160ff191683800117855562000284565b8280016001018555821562000284579182015b828111156200028457825182559160200191906001019062000267565b506200029292915062000296565b5090565b5b8082111562000292576000815560010162000297565b60008060408385031215620002c157600080fd5b505080516020909101519092909150565b600181811c90821680620002e757607f821691505b602082108114156200030957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051612e116200037060003960008181610448015261161d015260008181611e7a01528181611ea40152612366015260008181610d0d01528181610e7b0152818161157101528181611bdf0152611c110152612e116000f3fe6080604052600436106102045760003560e01c80638bc35c2f11610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba01461068b578063dc33e681146106a1578063e50fcd25146106c1578063e985e9c5146106e1578063f2fde38b1461072a57600080fd5b8063b88d4fde146105c2578063c87b56dd146105e2578063cb91d8b314610602578063cea943ee1461061557600080fd5b806395d89b41116100e757806395d89b411461052b578063a22cb46514610540578063a7cd52cb14610560578063ac4460021461058d578063b05863d5146105a257600080fd5b80638bc35c2f146104365780638da5cb5b1461046a57806390aa0b0f146104885780639231ab2a146104de57600080fd5b806341fbddbd1161019b5780635edd95f91161016a5780635edd95f9146103a15780636352211e146103c157806370a08231146103e1578063715018a6146104015780637c3c27881461041657600080fd5b806341fbddbd1461033957806342842e0e146103415780634f6ccce71461036157806355f804b31461038157600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632d20fb60146102f95780632f745c591461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b5061022961022436600461292d565b61074a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536107b7565b6040516102359190612afa565b34801561026c57600080fd5b5061028061027b3660046129d8565b610849565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b336600461283d565b6108d9565b005b3480156102c657600080fd5b506001545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004612706565b6109f1565b34801561030557600080fd5b506102b86103143660046129d8565b6109fc565b34801561032557600080fd5b506102cb61033436600461283d565b610a8f565b6102b8610c07565b34801561034d57600080fd5b506102b861035c366004612706565b610d95565b34801561036d57600080fd5b506102cb61037c3660046129d8565b610db0565b34801561038d57600080fd5b506102b861039c366004612967565b610e19565b3480156103ad57600080fd5b506102b86103bc3660046129f1565b610e4f565b3480156103cd57600080fd5b506102806103dc3660046129d8565b610eda565b3480156103ed57600080fd5b506102cb6103fc3660046126b8565b610eec565b34801561040d57600080fd5b506102b8610f7d565b34801561042257600080fd5b506102b8610431366004612a36565b610fb3565b34801561044257600080fd5b506102cb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561047657600080fd5b506000546001600160a01b0316610280565b34801561049457600080fd5b50600a54600b546104b8916001600160401b0380821692600160401b909204169083565b604080516001600160401b03948516815293909216602084015290820152606001610235565b3480156104ea57600080fd5b506104fe6104f93660046129d8565b611032565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610235565b34801561053757600080fd5b5061025361104f565b34801561054c57600080fd5b506102b861055b366004612801565b61105e565b34801561056c57600080fd5b506102cb61057b3660046126b8565b600d6020526000908152604090205481565b34801561059957600080fd5b506102b8611123565b3480156105ae57600080fd5b506102b86105bd366004612867565b611230565b3480156105ce57600080fd5b506102b86105dd366004612742565b611337565b3480156105ee57600080fd5b506102536105fd3660046129d8565b611370565b6102b8610610366004612a14565b61143d565b34801561062157600080fd5b506040805160608082018352600080835260208084018290529284015282518082018452600a546001600160401b03808216808452600160401b9092048116838601908152600b549387019384528651928352511693810193909352519282019290925201610235565b34801561069757600080fd5b506102cb60085481565b3480156106ad57600080fd5b506102cb6106bc3660046126b8565b6116ba565b3480156106cd57600080fd5b506102b86106dc3660046129d8565b6116c5565b3480156106ed57600080fd5b506102296106fc3660046126d3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073657600080fd5b506102b86107453660046126b8565b6116f4565b60006001600160e01b031982166380ac58cd60e01b148061077b57506001600160e01b03198216635b5e139f60e01b145b8061079657506001600160e01b0319821663780e9d6360e01b145b806107b157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c690612d03565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290612d03565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b6000610856826001541190565b6108bd5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108e482610eda565b9050806001600160a01b0316836001600160a01b031614156109535760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108b4565b336001600160a01b038216148061096f575061096f81336106fc565b6109e15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108b4565b6109ec83838361178c565b505050565b6109ec8383836117e8565b6000546001600160a01b03163314610a265760405162461bcd60e51b81526004016108b490612b39565b60026009541415610a795760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b4565b6002600955610a8781611b6e565b506001600955565b6000610a9a83610eec565b8210610af35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108b4565b6000610afe60015490565b905060008060005b83811015610ba7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b5857805192505b876001600160a01b0316836001600160a01b03161415610b945786841415610b86575093506107b192505050565b83610b9081612d3e565b9450505b5080610b9f81612d3e565b915050610b06565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108b4565b323314610c565760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108b4565b600a546001600160401b031680610caf5760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016108b4565b336000908152600d6020526040902054610d0b5760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016108b4565b7f0000000000000000000000000000000000000000000000000000000000000000610d3560015490565b610d40906001612c36565b1115610d5e5760405162461bcd60e51b81526004016108b490612b0d565b336000908152600d60205260408120805491610d7983612cec565b9190505550610d89336001611d57565b610d9281611d71565b50565b6109ec83838360405180602001604052806000815250611337565b6000610dbb60015490565b8210610e155760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108b4565b5090565b6000546001600160a01b03163314610e435760405162461bcd60e51b81526004016108b490612b39565b6109ec600e8383612583565b6000546001600160a01b03163314610e795760405162461bcd60e51b81526004016108b490612b39565b7f000000000000000000000000000000000000000000000000000000000000000082610ea460015490565b610eae9190612c36565b1115610ecc5760405162461bcd60e51b81526004016108b490612b0d565b610ed68183611d57565b5050565b6000610ee582611df8565b5192915050565b60006001600160a01b038216610f585760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108b4565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610fa75760405162461bcd60e51b81526004016108b490612b39565b610fb16000611fa1565b565b6000546001600160a01b03163314610fdd5760405162461bcd60e51b81526004016108b490612b39565b604080516060810182526001600160401b0394851680825293909416602085018190529301819052600a80546fffffffffffffffffffffffffffffffff1916909217600160401b909302929092179055600b55565b60408051808201909152600080825260208201526107b182611df8565b6060600380546107c690612d03565b6001600160a01b0382163314156110b75760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108b4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461114d5760405162461bcd60e51b81526004016108b490612b39565b600260095414156111a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b4565b6002600955604051600090339047908381818185875af1925050503d80600081146111e7576040519150601f19603f3d011682016040523d82523d6000602084013e6111ec565b606091505b5050905080610a875760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108b4565b6000546001600160a01b0316331461125a5760405162461bcd60e51b81526004016108b490612b39565b80518251146112bc5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b60648201526084016108b4565b60005b82518110156109ec578181815181106112da576112da612d99565b6020026020010151600d60008584815181106112f8576112f8612d99565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061132f90612d3e565b9150506112bf565b6113428484846117e8565b61134e84848484611ff1565b61136a5760405162461bcd60e51b81526004016108b490612b6e565b50505050565b606061137d826001541190565b6113e15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b4565b60006113eb6120ff565b9050600081511161140b5760405180602001604052806000815250611436565b806114158461210e565b604051602001611426929190612a8e565b6040516020818303038152906040525b9392505050565b32331461148c5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108b4565b60408051606081018252600a546001600160401b038082168352600160401b9091041660208201819052600b54928201839052600c549192909184146115225760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b60648201526084016108b4565b8161156f5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016108b4565b7f00000000000000000000000000000000000000000000000000000000000000008561159a60015490565b6115a49190612c36565b11156115c25760405162461bcd60e51b81526004016108b490612b0d565b80856115cd60015490565b6115d79190612c36565b111561161b5760405162461bcd60e51b815260206004820152601360248201527272656163686564207469657220737570706c7960681b60448201526064016108b4565b7f000000000000000000000000000000000000000000000000000000000000000085611646336116ba565b6116509190612c36565b11156116975760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108b4565b6116a13386611d57565b6116b36116ae8684612c62565b611d71565b5050505050565b60006107b18261220b565b6000546001600160a01b031633146116ef5760405162461bcd60e51b81526004016108b490612b39565b600c55565b6000546001600160a01b0316331461171e5760405162461bcd60e51b81526004016108b490612b39565b6001600160a01b0381166117835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b4565b610d9281611fa1565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f382611df8565b80519091506000906001600160a01b0316336001600160a01b0316148061182a57503361181f84610849565b6001600160a01b0316145b8061183c5750815161183c90336106fc565b9050806118a65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108b4565b846001600160a01b031682600001516001600160a01b03161461191a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108b4565b6001600160a01b03841661197e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108b4565b61198e600084846000015161178c565b6001600160a01b03851660009081526005602052604081208054600192906119c09084906001600160801b0316612c81565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611a0c91859116612c14565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a93846001612c36565b6000818152600460205260409020549091506001600160a01b0316611b2457611abd816001541190565b15611b245760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611bbe5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108b4565b60006001611bcc8484612c36565b611bd69190612ca9565b9050611c0360017f0000000000000000000000000000000000000000000000000000000000000000612ca9565b811115611c3857611c3560017f0000000000000000000000000000000000000000000000000000000000000000612ca9565b90505b611c43816001541190565b611c9e5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108b4565b815b818111611d43576000818152600460205260409020546001600160a01b0316611d31576000611cce82611df8565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d3b81612d3e565b915050611ca0565b50611d4f816001612c36565b600855505050565b610ed68282604051806020016040528060008152506122a9565b80341015611dba5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108b4565b80341115610d9257336108fc611dd08334612ca9565b6040518115909202916000818181858888f19350505050158015610ed6573d6000803e3d6000fd5b6040805180820190915260008082526020820152611e17826001541190565b611e765760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108b4565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ed757611ec97f000000000000000000000000000000000000000000000000000000000000000084612ca9565b611ed4906001612c36565b90505b825b818110611f40576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611f2d57949350505050565b5080611f3881612cec565b915050611ed9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108b4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156120f357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612035903390899088908890600401612abd565b602060405180830381600087803b15801561204f57600080fd5b505af192505050801561207f575060408051601f3d908101601f1916820190925261207c9181019061294a565b60015b6120d9573d8080156120ad576040519150601f19603f3d011682016040523d82523d6000602084013e6120b2565b606091505b5080516120d15760405162461bcd60e51b81526004016108b490612b6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120f7565b5060015b949350505050565b6060600e80546107c690612d03565b6060816121325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561215c578061214681612d3e565b91506121559050600a83612c4e565b9150612136565b6000816001600160401b0381111561217657612176612daf565b6040519080825280601f01601f1916602001820160405280156121a0576020820181803683370190505b5090505b84156120f7576121b5600183612ca9565b91506121c2600a86612d59565b6121cd906030612c36565b60f81b8183815181106121e2576121e2612d99565b60200101906001600160f81b031916908160001a905350612204600a86612c4e565b94506121a4565b60006001600160a01b03821661227d5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108b4565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661230c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108b4565b612317816001541190565b156123645760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108b4565b7f00000000000000000000000000000000000000000000000000000000000000008311156123df5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108b4565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061243b908790612c14565b6001600160801b031681526020018583602001516124599190612c14565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156125785760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461253c6000888488611ff1565b6125585760405162461bcd60e51b81526004016108b490612b6e565b8161256281612d3e565b925050808061257090612d3e565b9150506124ef565b506001819055611b66565b82805461258f90612d03565b90600052602060002090601f0160209004810192826125b157600085556125f7565b82601f106125ca5782800160ff198235161785556125f7565b828001600101855582156125f7579182015b828111156125f75782358255916020019190600101906125dc565b50610e159291505b80821115610e1557600081556001016125ff565b80356001600160a01b038116811461262a57600080fd5b919050565b600082601f83011261264057600080fd5b8135602061265561265083612bf1565b612bc1565b80838252828201915082860187848660051b890101111561267557600080fd5b60005b8581101561269457813584529284019290840190600101612678565b5090979650505050505050565b80356001600160401b038116811461262a57600080fd5b6000602082840312156126ca57600080fd5b61143682612613565b600080604083850312156126e657600080fd5b6126ef83612613565b91506126fd60208401612613565b90509250929050565b60008060006060848603121561271b57600080fd5b61272484612613565b925061273260208501612613565b9150604084013590509250925092565b6000806000806080858703121561275857600080fd5b61276185612613565b93506020612770818701612613565b93506040860135925060608601356001600160401b038082111561279357600080fd5b818801915088601f8301126127a757600080fd5b8135818111156127b9576127b9612daf565b6127cb601f8201601f19168501612bc1565b915080825289848285010111156127e157600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561281457600080fd5b61281d83612613565b91506020830135801515811461283257600080fd5b809150509250929050565b6000806040838503121561285057600080fd5b61285983612613565b946020939093013593505050565b6000806040838503121561287a57600080fd5b82356001600160401b038082111561289157600080fd5b818501915085601f8301126128a557600080fd5b813560206128b561265083612bf1565b8083825282820191508286018a848660051b89010111156128d557600080fd5b600096505b848710156128ff576128eb81612613565b8352600196909601959183019183016128da565b509650508601359250508082111561291657600080fd5b506129238582860161262f565b9150509250929050565b60006020828403121561293f57600080fd5b813561143681612dc5565b60006020828403121561295c57600080fd5b815161143681612dc5565b6000806020838503121561297a57600080fd5b82356001600160401b038082111561299157600080fd5b818501915085601f8301126129a557600080fd5b8135818111156129b457600080fd5b8660208285010111156129c657600080fd5b60209290920196919550909350505050565b6000602082840312156129ea57600080fd5b5035919050565b60008060408385031215612a0457600080fd5b823591506126fd60208401612613565b60008060408385031215612a2757600080fd5b50508035926020909101359150565b600080600060608486031215612a4b57600080fd5b612a54846126a1565b9250612732602085016126a1565b60008151808452612a7a816020860160208601612cc0565b601f01601f19169290920160200192915050565b60008351612aa0818460208801612cc0565b835190830190612ab4818360208801612cc0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612af090830184612a62565b9695505050505050565b6020815260006114366020830184612a62565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612be957612be9612daf565b604052919050565b60006001600160401b03821115612c0a57612c0a612daf565b5060051b60200190565b60006001600160801b03808316818516808303821115612ab457612ab4612d6d565b60008219821115612c4957612c49612d6d565b500190565b600082612c5d57612c5d612d83565b500490565b6000816000190483118215151615612c7c57612c7c612d6d565b500290565b60006001600160801b0383811690831681811015612ca157612ca1612d6d565b039392505050565b600082821015612cbb57612cbb612d6d565b500390565b60005b83811015612cdb578181015183820152602001612cc3565b8381111561136a5750506000910152565b600081612cfb57612cfb612d6d565b506000190190565b600181811c90821680612d1757607f821691505b60208210811415612d3857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d5257612d52612d6d565b5060010190565b600082612d6857612d68612d83565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d9257600080fdfea2646970667358221220fac81d578f9ac86c29e729daf9b435a559dc4ee2cecc1a9d8ac67eb421c8a0c964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000d2

Deployed Bytecode

0x6080604052600436106102045760003560e01c80638bc35c2f11610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba01461068b578063dc33e681146106a1578063e50fcd25146106c1578063e985e9c5146106e1578063f2fde38b1461072a57600080fd5b8063b88d4fde146105c2578063c87b56dd146105e2578063cb91d8b314610602578063cea943ee1461061557600080fd5b806395d89b41116100e757806395d89b411461052b578063a22cb46514610540578063a7cd52cb14610560578063ac4460021461058d578063b05863d5146105a257600080fd5b80638bc35c2f146104365780638da5cb5b1461046a57806390aa0b0f146104885780639231ab2a146104de57600080fd5b806341fbddbd1161019b5780635edd95f91161016a5780635edd95f9146103a15780636352211e146103c157806370a08231146103e1578063715018a6146104015780637c3c27881461041657600080fd5b806341fbddbd1461033957806342842e0e146103415780634f6ccce71461036157806355f804b31461038157600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632d20fb60146102f95780632f745c591461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b5061022961022436600461292d565b61074a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536107b7565b6040516102359190612afa565b34801561026c57600080fd5b5061028061027b3660046129d8565b610849565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b336600461283d565b6108d9565b005b3480156102c657600080fd5b506001545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004612706565b6109f1565b34801561030557600080fd5b506102b86103143660046129d8565b6109fc565b34801561032557600080fd5b506102cb61033436600461283d565b610a8f565b6102b8610c07565b34801561034d57600080fd5b506102b861035c366004612706565b610d95565b34801561036d57600080fd5b506102cb61037c3660046129d8565b610db0565b34801561038d57600080fd5b506102b861039c366004612967565b610e19565b3480156103ad57600080fd5b506102b86103bc3660046129f1565b610e4f565b3480156103cd57600080fd5b506102806103dc3660046129d8565b610eda565b3480156103ed57600080fd5b506102cb6103fc3660046126b8565b610eec565b34801561040d57600080fd5b506102b8610f7d565b34801561042257600080fd5b506102b8610431366004612a36565b610fb3565b34801561044257600080fd5b506102cb7f000000000000000000000000000000000000000000000000000000000000000181565b34801561047657600080fd5b506000546001600160a01b0316610280565b34801561049457600080fd5b50600a54600b546104b8916001600160401b0380821692600160401b909204169083565b604080516001600160401b03948516815293909216602084015290820152606001610235565b3480156104ea57600080fd5b506104fe6104f93660046129d8565b611032565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610235565b34801561053757600080fd5b5061025361104f565b34801561054c57600080fd5b506102b861055b366004612801565b61105e565b34801561056c57600080fd5b506102cb61057b3660046126b8565b600d6020526000908152604090205481565b34801561059957600080fd5b506102b8611123565b3480156105ae57600080fd5b506102b86105bd366004612867565b611230565b3480156105ce57600080fd5b506102b86105dd366004612742565b611337565b3480156105ee57600080fd5b506102536105fd3660046129d8565b611370565b6102b8610610366004612a14565b61143d565b34801561062157600080fd5b506040805160608082018352600080835260208084018290529284015282518082018452600a546001600160401b03808216808452600160401b9092048116838601908152600b549387019384528651928352511693810193909352519282019290925201610235565b34801561069757600080fd5b506102cb60085481565b3480156106ad57600080fd5b506102cb6106bc3660046126b8565b6116ba565b3480156106cd57600080fd5b506102b86106dc3660046129d8565b6116c5565b3480156106ed57600080fd5b506102296106fc3660046126d3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073657600080fd5b506102b86107453660046126b8565b6116f4565b60006001600160e01b031982166380ac58cd60e01b148061077b57506001600160e01b03198216635b5e139f60e01b145b8061079657506001600160e01b0319821663780e9d6360e01b145b806107b157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c690612d03565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290612d03565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b6000610856826001541190565b6108bd5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108e482610eda565b9050806001600160a01b0316836001600160a01b031614156109535760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108b4565b336001600160a01b038216148061096f575061096f81336106fc565b6109e15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108b4565b6109ec83838361178c565b505050565b6109ec8383836117e8565b6000546001600160a01b03163314610a265760405162461bcd60e51b81526004016108b490612b39565b60026009541415610a795760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b4565b6002600955610a8781611b6e565b506001600955565b6000610a9a83610eec565b8210610af35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108b4565b6000610afe60015490565b905060008060005b83811015610ba7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b5857805192505b876001600160a01b0316836001600160a01b03161415610b945786841415610b86575093506107b192505050565b83610b9081612d3e565b9450505b5080610b9f81612d3e565b915050610b06565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108b4565b323314610c565760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108b4565b600a546001600160401b031680610caf5760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e2079657460448201526064016108b4565b336000908152600d6020526040902054610d0b5760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016108b4565b7f00000000000000000000000000000000000000000000000000000000000000d2610d3560015490565b610d40906001612c36565b1115610d5e5760405162461bcd60e51b81526004016108b490612b0d565b336000908152600d60205260408120805491610d7983612cec565b9190505550610d89336001611d57565b610d9281611d71565b50565b6109ec83838360405180602001604052806000815250611337565b6000610dbb60015490565b8210610e155760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108b4565b5090565b6000546001600160a01b03163314610e435760405162461bcd60e51b81526004016108b490612b39565b6109ec600e8383612583565b6000546001600160a01b03163314610e795760405162461bcd60e51b81526004016108b490612b39565b7f00000000000000000000000000000000000000000000000000000000000000d282610ea460015490565b610eae9190612c36565b1115610ecc5760405162461bcd60e51b81526004016108b490612b0d565b610ed68183611d57565b5050565b6000610ee582611df8565b5192915050565b60006001600160a01b038216610f585760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108b4565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610fa75760405162461bcd60e51b81526004016108b490612b39565b610fb16000611fa1565b565b6000546001600160a01b03163314610fdd5760405162461bcd60e51b81526004016108b490612b39565b604080516060810182526001600160401b0394851680825293909416602085018190529301819052600a80546fffffffffffffffffffffffffffffffff1916909217600160401b909302929092179055600b55565b60408051808201909152600080825260208201526107b182611df8565b6060600380546107c690612d03565b6001600160a01b0382163314156110b75760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108b4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461114d5760405162461bcd60e51b81526004016108b490612b39565b600260095414156111a05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b4565b6002600955604051600090339047908381818185875af1925050503d80600081146111e7576040519150601f19603f3d011682016040523d82523d6000602084013e6111ec565b606091505b5050905080610a875760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108b4565b6000546001600160a01b0316331461125a5760405162461bcd60e51b81526004016108b490612b39565b80518251146112bc5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b60648201526084016108b4565b60005b82518110156109ec578181815181106112da576112da612d99565b6020026020010151600d60008584815181106112f8576112f8612d99565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061132f90612d3e565b9150506112bf565b6113428484846117e8565b61134e84848484611ff1565b61136a5760405162461bcd60e51b81526004016108b490612b6e565b50505050565b606061137d826001541190565b6113e15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b4565b60006113eb6120ff565b9050600081511161140b5760405180602001604052806000815250611436565b806114158461210e565b604051602001611426929190612a8e565b6040516020818303038152906040525b9392505050565b32331461148c5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108b4565b60408051606081018252600a546001600160401b038082168352600160401b9091041660208201819052600b54928201839052600c549192909184146115225760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b60648201526084016108b4565b8161156f5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016108b4565b7f00000000000000000000000000000000000000000000000000000000000000d28561159a60015490565b6115a49190612c36565b11156115c25760405162461bcd60e51b81526004016108b490612b0d565b80856115cd60015490565b6115d79190612c36565b111561161b5760405162461bcd60e51b815260206004820152601360248201527272656163686564207469657220737570706c7960681b60448201526064016108b4565b7f000000000000000000000000000000000000000000000000000000000000000185611646336116ba565b6116509190612c36565b11156116975760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108b4565b6116a13386611d57565b6116b36116ae8684612c62565b611d71565b5050505050565b60006107b18261220b565b6000546001600160a01b031633146116ef5760405162461bcd60e51b81526004016108b490612b39565b600c55565b6000546001600160a01b0316331461171e5760405162461bcd60e51b81526004016108b490612b39565b6001600160a01b0381166117835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b4565b610d9281611fa1565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117f382611df8565b80519091506000906001600160a01b0316336001600160a01b0316148061182a57503361181f84610849565b6001600160a01b0316145b8061183c5750815161183c90336106fc565b9050806118a65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108b4565b846001600160a01b031682600001516001600160a01b03161461191a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108b4565b6001600160a01b03841661197e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108b4565b61198e600084846000015161178c565b6001600160a01b03851660009081526005602052604081208054600192906119c09084906001600160801b0316612c81565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611a0c91859116612c14565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a93846001612c36565b6000818152600460205260409020549091506001600160a01b0316611b2457611abd816001541190565b15611b245760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611bbe5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108b4565b60006001611bcc8484612c36565b611bd69190612ca9565b9050611c0360017f00000000000000000000000000000000000000000000000000000000000000d2612ca9565b811115611c3857611c3560017f00000000000000000000000000000000000000000000000000000000000000d2612ca9565b90505b611c43816001541190565b611c9e5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108b4565b815b818111611d43576000818152600460205260409020546001600160a01b0316611d31576000611cce82611df8565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d3b81612d3e565b915050611ca0565b50611d4f816001612c36565b600855505050565b610ed68282604051806020016040528060008152506122a9565b80341015611dba5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016108b4565b80341115610d9257336108fc611dd08334612ca9565b6040518115909202916000818181858888f19350505050158015610ed6573d6000803e3d6000fd5b6040805180820190915260008082526020820152611e17826001541190565b611e765760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108b4565b60007f00000000000000000000000000000000000000000000000000000000000000018310611ed757611ec97f000000000000000000000000000000000000000000000000000000000000000184612ca9565b611ed4906001612c36565b90505b825b818110611f40576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611f2d57949350505050565b5080611f3881612cec565b915050611ed9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108b4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156120f357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612035903390899088908890600401612abd565b602060405180830381600087803b15801561204f57600080fd5b505af192505050801561207f575060408051601f3d908101601f1916820190925261207c9181019061294a565b60015b6120d9573d8080156120ad576040519150601f19603f3d011682016040523d82523d6000602084013e6120b2565b606091505b5080516120d15760405162461bcd60e51b81526004016108b490612b6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120f7565b5060015b949350505050565b6060600e80546107c690612d03565b6060816121325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561215c578061214681612d3e565b91506121559050600a83612c4e565b9150612136565b6000816001600160401b0381111561217657612176612daf565b6040519080825280601f01601f1916602001820160405280156121a0576020820181803683370190505b5090505b84156120f7576121b5600183612ca9565b91506121c2600a86612d59565b6121cd906030612c36565b60f81b8183815181106121e2576121e2612d99565b60200101906001600160f81b031916908160001a905350612204600a86612c4e565b94506121a4565b60006001600160a01b03821661227d5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108b4565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661230c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108b4565b612317816001541190565b156123645760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108b4565b7f00000000000000000000000000000000000000000000000000000000000000018311156123df5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108b4565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061243b908790612c14565b6001600160801b031681526020018583602001516124599190612c14565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156125785760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461253c6000888488611ff1565b6125585760405162461bcd60e51b81526004016108b490612b6e565b8161256281612d3e565b925050808061257090612d3e565b9150506124ef565b506001819055611b66565b82805461258f90612d03565b90600052602060002090601f0160209004810192826125b157600085556125f7565b82601f106125ca5782800160ff198235161785556125f7565b828001600101855582156125f7579182015b828111156125f75782358255916020019190600101906125dc565b50610e159291505b80821115610e1557600081556001016125ff565b80356001600160a01b038116811461262a57600080fd5b919050565b600082601f83011261264057600080fd5b8135602061265561265083612bf1565b612bc1565b80838252828201915082860187848660051b890101111561267557600080fd5b60005b8581101561269457813584529284019290840190600101612678565b5090979650505050505050565b80356001600160401b038116811461262a57600080fd5b6000602082840312156126ca57600080fd5b61143682612613565b600080604083850312156126e657600080fd5b6126ef83612613565b91506126fd60208401612613565b90509250929050565b60008060006060848603121561271b57600080fd5b61272484612613565b925061273260208501612613565b9150604084013590509250925092565b6000806000806080858703121561275857600080fd5b61276185612613565b93506020612770818701612613565b93506040860135925060608601356001600160401b038082111561279357600080fd5b818801915088601f8301126127a757600080fd5b8135818111156127b9576127b9612daf565b6127cb601f8201601f19168501612bc1565b915080825289848285010111156127e157600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561281457600080fd5b61281d83612613565b91506020830135801515811461283257600080fd5b809150509250929050565b6000806040838503121561285057600080fd5b61285983612613565b946020939093013593505050565b6000806040838503121561287a57600080fd5b82356001600160401b038082111561289157600080fd5b818501915085601f8301126128a557600080fd5b813560206128b561265083612bf1565b8083825282820191508286018a848660051b89010111156128d557600080fd5b600096505b848710156128ff576128eb81612613565b8352600196909601959183019183016128da565b509650508601359250508082111561291657600080fd5b506129238582860161262f565b9150509250929050565b60006020828403121561293f57600080fd5b813561143681612dc5565b60006020828403121561295c57600080fd5b815161143681612dc5565b6000806020838503121561297a57600080fd5b82356001600160401b038082111561299157600080fd5b818501915085601f8301126129a557600080fd5b8135818111156129b457600080fd5b8660208285010111156129c657600080fd5b60209290920196919550909350505050565b6000602082840312156129ea57600080fd5b5035919050565b60008060408385031215612a0457600080fd5b823591506126fd60208401612613565b60008060408385031215612a2757600080fd5b50508035926020909101359150565b600080600060608486031215612a4b57600080fd5b612a54846126a1565b9250612732602085016126a1565b60008151808452612a7a816020860160208601612cc0565b601f01601f19169290920160200192915050565b60008351612aa0818460208801612cc0565b835190830190612ab4818360208801612cc0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612af090830184612a62565b9695505050505050565b6020815260006114366020830184612a62565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612be957612be9612daf565b604052919050565b60006001600160401b03821115612c0a57612c0a612daf565b5060051b60200190565b60006001600160801b03808316818516808303821115612ab457612ab4612d6d565b60008219821115612c4957612c49612d6d565b500190565b600082612c5d57612c5d612d83565b500490565b6000816000190483118215151615612c7c57612c7c612d6d565b500290565b60006001600160801b0383811690831681811015612ca157612ca1612d6d565b039392505050565b600082821015612cbb57612cbb612d6d565b500390565b60005b83811015612cdb578181015183820152602001612cc3565b8381111561136a5750506000910152565b600081612cfb57612cfb612d6d565b506000190190565b600181811c90821680612d1757607f821691505b60208210811415612d3857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d5257612d52612d6d565b5060010190565b600082612d6857612d68612d83565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d9257600080fdfea2646970667358221220fac81d578f9ac86c29e729daf9b435a559dc4ee2cecc1a9d8ac67eb421c8a0c964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000d2

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 1
Arg [1] : collectionSize_ (uint256): 210

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000d2


Deployed Bytecode Sourcemap

42688:3940:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27791:370;;;;;;;;;;-1:-1:-1;27791:370:0;;;;;:::i;:::-;;:::i;:::-;;;8533:14:1;;8526:22;8508:41;;8496:2;8481:18;27791:370:0;;;;;;;;29517:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31042:204::-;;;;;;;;;;-1:-1:-1;31042:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7831:32:1;;;7813:51;;7801:2;7786:18;31042:204:0;7667:203:1;30605:379:0;;;;;;;;;;-1:-1:-1;30605:379:0;;;;;:::i;:::-;;:::i;:::-;;26352:94;;;;;;;;;;-1:-1:-1;26428:12:0;;26352:94;;;23312:25:1;;;23300:2;23285:18;26352:94:0;23166:177:1;31892:142:0;;;;;;;;;;-1:-1:-1;31892:142:0;;;;;:::i;:::-;;:::i;46241:118::-;;;;;;;;;;-1:-1:-1;46241:118:0;;;;;:::i;:::-;;:::i;26983:744::-;;;;;;;;;;-1:-1:-1;26983:744:0;;;;;:::i;:::-;;:::i;43342:415::-;;;:::i;32097:157::-;;;;;;;;;;-1:-1:-1;32097:157:0;;;;;:::i;:::-;;:::i;26515:177::-;;;;;;;;;;-1:-1:-1;26515:177:0;;;;;:::i;:::-;;:::i;45948:100::-;;;;;;;;;;-1:-1:-1;45948:100:0;;;;;:::i;:::-;;:::i;45146:187::-;;;;;;;;;;-1:-1:-1;45146:187:0;;;;;:::i;:::-;;:::i;29340:118::-;;;;;;;;;;-1:-1:-1;29340:118:0;;;;;:::i;:::-;;:::i;28217:211::-;;;;;;;;;;-1:-1:-1;28217:211:0;;;;;:::i;:::-;;:::i;41806:103::-;;;;;;;;;;;;;:::i;45432:240::-;;;;;;;;;;-1:-1:-1;45432:240:0;;;;;:::i;:::-;;:::i;42749:48::-;;;;;;;;;;;;;;;41155:87;;;;;;;;;;-1:-1:-1;41201:7:0;41228:6;-1:-1:-1;;;;;41228:6:0;41155:87;;42911:28;;;;;;;;;;-1:-1:-1;42911:28:0;;;;;;-1:-1:-1;;;;;42911:28:0;;;;-1:-1:-1;;;42911:28:0;;;;;;;;;;;-1:-1:-1;;;;;23601:15:1;;;23583:34;;23653:15;;;;23648:2;23633:18;;23626:43;23685:18;;;23678:34;23534:2;23519:18;42911:28:0;23348:370:1;46478:147:0;;;;;;;;;;-1:-1:-1;46478:147:0;;;;;:::i;:::-;;:::i;:::-;;;;23031:13:1;;-1:-1:-1;;;;;23027:39:1;23009:58;;23127:4;23115:17;;;23109:24;-1:-1:-1;;;;;23105:49:1;23083:20;;;23076:79;;;;22982:18;46478:147:0;22801:360:1;29672:98:0;;;;;;;;;;;;;:::i;31310:274::-;;;;;;;;;;-1:-1:-1;31310:274:0;;;;;:::i;:::-;;:::i;42975:44::-;;;;;;;;;;-1:-1:-1;42975:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;46054:181;;;;;;;;;;;;;:::i;44776:339::-;;;;;;;;;;-1:-1:-1;44776:339:0;;;;;:::i;:::-;;:::i;32317:311::-;;;;;;;;;;-1:-1:-1;32317:311:0;;;;;:::i;:::-;;:::i;29833:394::-;;;;;;;;;;-1:-1:-1;29833:394:0;;;;;:::i;:::-;;:::i;43763:797::-;;;;;;:::i;:::-;;:::i;45678:96::-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;45751:17:0;;;;;;;45758:10;45751:17;-1:-1:-1;;;;;45751:17:0;;;;;;-1:-1:-1;;;45751:17:0;;;;;;;;;;;;;;;;;;;45678:96;;22614:41:1;;;22697:24;22693:33;22671:20;;;22664:63;;;;22765:24;22743:20;;;22736:54;;;;22550:18;45678:96:0;22375:421:1;36732:43:0;;;;;;;;;;;;;;;;46365:107;;;;;;;;;;-1:-1:-1;46365:107:0;;;;;:::i;:::-;;:::i;45339:87::-;;;;;;;;;;-1:-1:-1;45339:87:0;;;;;:::i;:::-;;:::i;31647:186::-;;;;;;;;;;-1:-1:-1;31647:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31792:25:0;;;31769:4;31792:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31647:186;42064:201;;;;;;;;;;-1:-1:-1;42064:201:0;;;;;:::i;:::-;;:::i;27791:370::-;27918:4;-1:-1:-1;;;;;;27948:40:0;;-1:-1:-1;;;27948:40:0;;:99;;-1:-1:-1;;;;;;;27999:48:0;;-1:-1:-1;;;27999:48:0;27948:99;:160;;;-1:-1:-1;;;;;;;28058:50:0;;-1:-1:-1;;;28058:50:0;27948:160;:207;;;-1:-1:-1;;;;;;;;;;13584:40:0;;;28119:36;27934:221;27791:370;-1:-1:-1;;27791:370:0:o;29517:94::-;29571:13;29600:5;29593:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29517:94;:::o;31042:204::-;31110:7;31134:16;31142:7;32954:12;;-1:-1:-1;32944:22:0;32867:105;31134:16;31126:74;;;;-1:-1:-1;;;31126:74:0;;21351:2:1;31126:74:0;;;21333:21:1;21390:2;21370:18;;;21363:30;21429:34;21409:18;;;21402:62;-1:-1:-1;;;21480:18:1;;;21473:43;21533:19;;31126:74:0;;;;;;;;;-1:-1:-1;31216:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31216:24:0;;31042:204::o;30605:379::-;30674:13;30690:24;30706:7;30690:15;:24::i;:::-;30674:40;;30735:5;-1:-1:-1;;;;;30729:11:0;:2;-1:-1:-1;;;;;30729:11:0;;;30721:58;;;;-1:-1:-1;;;30721:58:0;;17123:2:1;30721:58:0;;;17105:21:1;17162:2;17142:18;;;17135:30;17201:34;17181:18;;;17174:62;-1:-1:-1;;;17252:18:1;;;17245:32;17294:19;;30721:58:0;16921:398:1;30721:58:0;23912:10;-1:-1:-1;;;;;30804:21:0;;;;:62;;-1:-1:-1;30829:37:0;30846:5;23912:10;31647:186;:::i;30829:37::-;30788:153;;;;-1:-1:-1;;;30788:153:0;;12548:2:1;30788:153:0;;;12530:21:1;12587:2;12567:18;;;12560:30;12626:34;12606:18;;;12599:62;12697:27;12677:18;;;12670:55;12742:19;;30788:153:0;12346:421:1;30788:153:0;30950:28;30959:2;30963:7;30972:5;30950:8;:28::i;:::-;30667:317;30605:379;;:::o;31892:142::-;32000:28;32010:4;32016:2;32020:7;32000:9;:28::i;46241:118::-;41201:7;41228:6;-1:-1:-1;;;;;41228:6:0;23912:10;41375:23;41367:68;;;;-1:-1:-1;;;41367:68:0;;;;;;;:::i;:::-;22206:1:::1;22804:7;;:19;;22796:63;;;::::0;-1:-1:-1;;;22796:63:0;;20575:2:1;22796:63:0::1;::::0;::::1;20557:21:1::0;20614:2;20594:18;;;20587:30;20653:33;20633:18;;;20626:61;20704:18;;22796:63:0::1;20373:355:1::0;22796:63:0::1;22206:1;22937:7;:18:::0;46325:28:::2;46344:8:::0;46325:18:::2;:28::i;:::-;-1:-1:-1::0;22162:1:0::1;23116:7;:22:::0;46241:118::o;26983:744::-;27092:7;27127:16;27137:5;27127:9;:16::i;:::-;27119:5;:24;27111:71;;;;-1:-1:-1;;;27111:71:0;;8986:2:1;27111:71:0;;;8968:21:1;9025:2;9005:18;;;8998:30;9064:34;9044:18;;;9037:62;-1:-1:-1;;;9115:18:1;;;9108:32;9157:19;;27111:71:0;8784:398:1;27111:71:0;27189:22;27214:13;26428:12;;;26352:94;27214:13;27189:38;;27234:19;27264:25;27314:9;27309:350;27333:14;27329:1;:18;27309:350;;;27363:31;27397:14;;;:11;:14;;;;;;;;;27363:48;;;;;;;;;-1:-1:-1;;;;;27363:48:0;;;;;-1:-1:-1;;;27363:48:0;;;-1:-1:-1;;;;;27363:48:0;;;;;;;;27424:28;27420:89;;27485:14;;;-1:-1:-1;27420:89:0;27542:5;-1:-1:-1;;;;;27521:26:0;:17;-1:-1:-1;;;;;27521:26:0;;27517:135;;;27579:5;27564:11;:20;27560:59;;;-1:-1:-1;27606:1:0;-1:-1:-1;27599:8:0;;-1:-1:-1;;;27599:8:0;27560:59;27629:13;;;;:::i;:::-;;;;27517:135;-1:-1:-1;27349:3:0;;;;:::i;:::-;;;;27309:350;;;-1:-1:-1;27665:56:0;;-1:-1:-1;;;27665:56:0;;19753:2:1;27665:56:0;;;19735:21:1;19792:2;19772:18;;;19765:30;19831:34;19811:18;;;19804:62;-1:-1:-1;;;19882:18:1;;;19875:44;19936:19;;27665:56:0;19551:410:1;43342:415:0;43264:9;43277:10;43264:23;43256:66;;;;-1:-1:-1;;;43256:66:0;;12189:2:1;43256:66:0;;;12171:21:1;12228:2;12208:18;;;12201:30;12267:32;12247:18;;;12240:60;12317:18;;43256:66:0;11987:354:1;43256:66:0;43428:10:::1;:24:::0;-1:-1:-1;;;;;43428:24:0::1;43468:10:::0;43460:55:::1;;;::::0;-1:-1:-1;;;43460:55:0;;16404:2:1;43460:55:0::1;::::0;::::1;16386:21:1::0;;;16423:18;;;16416:30;16482:34;16462:18;;;16455:62;16534:18;;43460:55:0::1;16202:356:1::0;43460:55:0::1;43540:10;43554:1;43530:21:::0;;;:9:::1;:21;::::0;;;;;43522:69:::1;;;::::0;-1:-1:-1;;;43522:69:0;;14086:2:1;43522:69:0::1;::::0;::::1;14068:21:1::0;14125:2;14105:18;;;14098:30;14164:33;14144:18;;;14137:61;14215:18;;43522:69:0::1;13884:355:1::0;43522:69:0::1;43627:14;43606:13;26428:12:::0;;;26352:94;43606:13:::1;:17;::::0;43622:1:::1;43606:17;:::i;:::-;:35;;43598:66;;;;-1:-1:-1::0;;;43598:66:0::1;;;;;;;:::i;:::-;43681:10;43671:21;::::0;;;:9:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;:::-;;;;;;43701:24;43711:10;43723:1;43701:9;:24::i;:::-;43732:19;43745:5;43732:12;:19::i;:::-;43397:360;43342:415::o:0;32097:157::-;32209:39;32226:4;32232:2;32236:7;32209:39;;;;;;;;;;;;:16;:39::i;26515:177::-;26582:7;26614:13;26428:12;;;26352:94;26614:13;26606:5;:21;26598:69;;;;-1:-1:-1;;;26598:69:0;;10207:2:1;26598:69:0;;;10189:21:1;10246:2;10226:18;;;10219:30;10285:34;10265:18;;;10258:62;-1:-1:-1;;;10336:18:1;;;10329:33;10379:19;;26598:69:0;10005:399:1;26598:69:0;-1:-1:-1;26681:5:0;26515:177::o;45948:100::-;41201:7;41228:6;-1:-1:-1;;;;;41228:6:0;23912:10;41375:23;41367:68;;;;-1:-1:-1;;;41367:68:0;;;;;;;:::i;:::-;46019:23:::1;:13;46035:7:::0;;46019:23:::1;:::i;45146:187::-:0;41201:7;41228:6;-1:-1:-1;;;;;41228:6:0;23912:10;41375:23;41367:68;;;;-1:-1:-1;;;41367:68:0;;;;;;;:::i;:::-;45260:14:::1;45248:8;45232:13;26428:12:::0;;;26352:94;45232:13:::1;:24;;;;:::i;:::-;:42;;45224:73;;;;-1:-1:-1::0;;;45224:73:0::1;;;;;;;:::i;:::-;45304:23;45314:2;45318:8;45304:9;:23::i;:::-;45146:187:::0;;:::o;29340:118::-;29404:7;29427:20;29439:7;29427:11;:20::i;:::-;:25;;29340:118;-1:-1:-1;;29340:118:0:o;28217:211::-;28281:7;-1:-1:-1;;;;;28305:19:0;;28297:75;;;;-1:-1:-1;;;28297:75:0;;13327:2:1;28297:75:0;;;13309:21:1;13366:2;13346:18;;;13339:30;13405:34;13385:18;;;13378:62;-1:-1:-1;;;13456:18:1;;;13449:41;13507:19;;28297:75:0;13125:407:1;28297:75:0;-1:-1:-1;;;;;;28394:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28394:27:0;;28217:211::o;41806:103::-;41201:7;41228:6;-1:-1:-1;;;;;41228:6:0;23912:10;41375:23;41367:68;;;;-1:-1:-1;;;41367:68:0;;;;;;;:::i;:::-;41871:30:::1;41898:1;41871:18;:30::i;:::-;41806:103::o:0;45432:240::-;41201:7;41228:6;-1:-1:-1;;;;;41228:6:0;23912:10;41375:23;41367:68;;;;-1:-1:-1;;;41367:68:0;;;;;;;:::i;:::-;45582:84:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;45582:84:0;;::::1;::::0;;;;;;::::1;;::::0;::::1;::::0;;;;;;;;45569:10:::1;:97:::0;;-1:-1:-1;;45569:97:0;;;;-1:-1:-1;;;45569:97:0;;::::1;::::0;;;::::1;::::0;;;;45432:240::o;46478:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;46599:20:0;46611:7;46599:11;:20::i;29672:98::-;29728:13;29757:7;29750:14;;;;;:::i;31310:274::-;-1:-1:-1;;;;;31401:24:0;;23912:10;31401:24;;31393:63;;;;-1:-1:-1;;;31393:63:0;;15630:2:1;31393:63:0;;;15612:21:1;15669:2;15649:18;;;15642:30;15708:28;15688:18;;;15681:56;15754:18;;31393:63:0;15428:350:1;31393:63:0;23912:10;31465:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31465:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31465:53:0;;;;;;;;;;31530:48;;8508:41:1;;;31465:42:0;;23912:10;31530:48;;8481:18:1;31530:48:0;;;;;;;31310:274;;:::o;46054:181::-;41201:7;41228:6;-1:-1:-1;;;;;41228:6:0;23912:10;41375:23;41367:68;;;;-1:-1:-1;;;41367:68:0;;;;;;;:::i;:::-;22206:1:::1;22804:7;;:19;;22796:63;;;::::0;-1:-1:-1;;;22796:63:0;;20575:2:1;22796:63:0::1;::::0;::::1;20557:21:1::0;20614:2;20594:18;;;20587:30;20653:33;20633:18;;;20626:61;20704:18;;22796:63:0::1;20373:355:1::0;22796:63:0::1;22206:1;22937:7;:18:::0;46137:49:::2;::::0;46119:12:::2;::::0;46137:10:::2;::::0;46160:21:::2;::::0;46119:12;46137:49;46119:12;46137:49;46160:21;46137:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46118:68;;;46201:7;46193:36;;;::::0;-1:-1:-1;;;46193:36:0;;17526:2:1;46193:36:0::2;::::0;::::2;17508:21:1::0;17565:2;17545:18;;;17538:30;-1:-1:-1;;;17584:18:1;;;17577:46;17640:18;;46193:36:0::2;17324:340:1::0;44776:339:0;41201:7;41228:6;-1:-1:-1;;;;;41228:6:0;23912:10;41375:23;41367:68;;;;-1:-1:-1;;;41367:68:0;;;;;;;:::i;:::-;44929:8:::1;:15;44909:9;:16;:35;44893:109;;;::::0;-1:-1:-1;;;44893:109:0;;22168:2:1;44893:109:0::1;::::0;::::1;22150:21:1::0;22207:2;22187:18;;;22180:30;22246:34;22226:18;;;22219:62;-1:-1:-1;;;22297:18:1;;;22290:38;22345:19;;44893:109:0::1;21966:404:1::0;44893:109:0::1;45014:9;45009:101;45033:9;:16;45029:1;:20;45009:101;;;45091:8;45100:1;45091:11;;;;;;;;:::i;:::-;;;;;;;45065:9;:23;45075:9;45085:1;45075:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;45065:23:0::1;-1:-1:-1::0;;;;;45065:23:0::1;;;;;;;;;;;;:37;;;;45051:3;;;;;:::i;:::-;;;;45009:101;;32317:311:::0;32454:28;32464:4;32470:2;32474:7;32454:9;:28::i;:::-;32505:48;32528:4;32534:2;32538:7;32547:5;32505:22;:48::i;:::-;32489:133;;;;-1:-1:-1;;;32489:133:0;;;;;;;:::i;:::-;32317:311;;;;:::o;29833:394::-;29931:13;29972:16;29980:7;32954:12;;-1:-1:-1;32944:22:0;32867:105;29972:16;29956:97;;;;-1:-1:-1;;;29956:97:0;;15214:2:1;29956:97:0;;;15196:21:1;15253:2;15233:18;;;15226:30;15292:34;15272:18;;;15265:62;-1:-1:-1;;;15343:18:1;;;15336:45;15398:19;;29956:97:0;15012:411:1;29956:97:0;30062:21;30086:10;:8;:10::i;:::-;30062:34;;30141:1;30123:7;30117:21;:25;:104;;;;;;;;;;;;;;;;;30178:7;30187:18;:7;:16;:18::i;:::-;30161:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30117:104;30103:118;29833:394;-1:-1:-1;;;29833:394:0:o;43763:797::-;43264:9;43277:10;43264:23;43256:66;;;;-1:-1:-1;;;43256:66:0;;12189:2:1;43256:66:0;;;12171:21:1;12228:2;12208:18;;;12201:30;12267:32;12247:18;;;12240:60;12317:18;;43256:66:0;11987:354:1;43256:66:0;43883:37:::1;::::0;;::::1;::::0;::::1;::::0;;43910:10:::1;43883:37:::0;-1:-1:-1;;;;;43883:37:0;;::::1;::::0;;-1:-1:-1;;;43883:37:0;;::::1;;;::::0;::::1;::::0;;;;;;;;;;;44046:8:::1;::::0;43883:37;;;;44046:25;::::1;44030:96;;;::::0;-1:-1:-1;;;44030:96:0;;11435:2:1;44030:96:0::1;::::0;::::1;11417:21:1::0;11474:2;11454:18;;;11447:30;11513:34;11493:18;;;11486:62;-1:-1:-1;;;11564:18:1;;;11557:35;11609:19;;44030:96:0::1;11233:401:1::0;44030:96:0::1;44141:16:::0;44133:58:::1;;;::::0;-1:-1:-1;;;44133:58:0;;16765:2:1;44133:58:0::1;::::0;::::1;16747:21:1::0;16804:2;16784:18;;;16777:30;16843:31;16823:18;;;16816:59;16892:18;;44133:58:0::1;16563:353:1::0;44133:58:0::1;44234:14;44222:8;44206:13;26428:12:::0;;;26352:94;44206:13:::1;:24;;;;:::i;:::-;:42;;44198:73;;;;-1:-1:-1::0;;;44198:73:0::1;;;;;;;:::i;:::-;44314:10;44302:8;44286:13;26428:12:::0;;;26352:94;44286:13:::1;:24;;;;:::i;:::-;:38;;44278:70;;;::::0;-1:-1:-1;;;44278:70:0;;11841:2:1;44278:70:0::1;::::0;::::1;11823:21:1::0;11880:2;11860:18;;;11853:30;-1:-1:-1;;;11899:18:1;;;11892:49;11958:18;;44278:70:0::1;11639:343:1::0;44278:70:0::1;44410:23;44398:8;44371:24;44384:10;44371:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;44355:118;;;::::0;-1:-1:-1;;;44355:118:0;;19402:2:1;44355:118:0::1;::::0;::::1;19384:21:1::0;19441:2;19421:18;;;19414:30;-1:-1:-1;;;19460:18:1;;;19453:52;19522:18;;44355:118:0::1;19200:346:1::0;44355:118:0::1;44480:31;44490:10;44502:8;44480:9;:31::i;:::-;44518:36;44531:22;44545:8:::0;44531:11;:22:::1;:::i;:::-;44518:12;:36::i;:::-;43876:684;;;43763:797:::0;;:::o;46365:107::-;46423:7;46446:20;46460:5;46446:13;:20::i;45339:87::-;41201:7;41228:6;-1:-1:-1;;;;;41228:6:0;23912:10;41375:23;41367:68;;;;-1:-1:-1;;;41367:68:0;;;;;;;:::i;:::-;45402:8:::1;:18:::0;45339:87::o;42064:201::-;41201:7;41228:6;-1:-1:-1;;;;;41228:6:0;23912:10;41375:23;41367:68;;;;-1:-1:-1;;;41367:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42153:22:0;::::1;42145:73;;;::::0;-1:-1:-1;;;42145:73:0;;9389:2:1;42145:73:0::1;::::0;::::1;9371:21:1::0;9428:2;9408:18;;;9401:30;9467:34;9447:18;;;9440:62;-1:-1:-1;;;9518:18:1;;;9511:36;9564:19;;42145:73:0::1;9187:402:1::0;42145:73:0::1;42229:28;42248:8;42229:18;:28::i;36554:172::-:0;36651:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36651:29:0;-1:-1:-1;;;;;36651:29:0;;;;;;;;;36692:28;;36651:24;;36692:28;;;;;;;36554:172;;;:::o;34919:1529::-;35016:35;35054:20;35066:7;35054:11;:20::i;:::-;35125:18;;35016:58;;-1:-1:-1;35083:22:0;;-1:-1:-1;;;;;35109:34:0;23912:10;-1:-1:-1;;;;;35109:34:0;;:81;;;-1:-1:-1;23912:10:0;35154:20;35166:7;35154:11;:20::i;:::-;-1:-1:-1;;;;;35154:36:0;;35109:81;:142;;;-1:-1:-1;35218:18:0;;35201:50;;23912:10;31647:186;:::i;35201:50::-;35083:169;;35277:17;35261:101;;;;-1:-1:-1;;;35261:101:0;;15985:2:1;35261:101:0;;;15967:21:1;16024:2;16004:18;;;15997:30;16063:34;16043:18;;;16036:62;-1:-1:-1;;;16114:18:1;;;16107:48;16172:19;;35261:101:0;15783:414:1;35261:101:0;35409:4;-1:-1:-1;;;;;35387:26:0;:13;:18;;;-1:-1:-1;;;;;35387:26:0;;35371:98;;;;-1:-1:-1;;;35371:98:0;;14446:2:1;35371:98:0;;;14428:21:1;14485:2;14465:18;;;14458:30;14524:34;14504:18;;;14497:62;-1:-1:-1;;;14575:18:1;;;14568:36;14621:19;;35371:98:0;14244:402:1;35371:98:0;-1:-1:-1;;;;;35484:16:0;;35476:66;;;;-1:-1:-1;;;35476:66:0;;10611:2:1;35476:66:0;;;10593:21:1;10650:2;10630:18;;;10623:30;10689:34;10669:18;;;10662:62;-1:-1:-1;;;10740:18:1;;;10733:35;10785:19;;35476:66:0;10409:401:1;35476:66:0;35651:49;35668:1;35672:7;35681:13;:18;;;35651:8;:49::i;:::-;-1:-1:-1;;;;;35709:18:0;;;;;;:12;:18;;;;;:31;;35739:1;;35709:18;:31;;35739:1;;-1:-1:-1;;;;;35709:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35709:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35747:16:0;;-1:-1:-1;35747:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35747:16:0;;:29;;-1:-1:-1;;35747:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35747:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35806:43:0;;;;;;;;-1:-1:-1;;;;;35806:43:0;;;;;-1:-1:-1;;;;;35832:15:0;35806:43;;;;;;;;;-1:-1:-1;35783:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35783:66:0;-1:-1:-1;;;;;;35783:66:0;;;;;;;;;;;36099:11;35795:7;-1:-1:-1;36099:11:0;:::i;:::-;36162:1;36121:24;;;:11;:24;;;;;:29;36077:33;;-1:-1:-1;;;;;;36121:29:0;36117:236;;36179:20;36187:11;32954:12;;-1:-1:-1;32944:22:0;32867:105;36179:20;36175:171;;;36239:97;;;;;;;;36266:18;;-1:-1:-1;;;;;36239:97:0;;;;;;36297:28;;;;-1:-1:-1;;;;;36239:97:0;;;;;;;;;-1:-1:-1;36212:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;36212:124:0;-1:-1:-1;;;;;;36212:124:0;;;;;;;;;;;;36175:171;36385:7;36381:2;-1:-1:-1;;;;;36366:27:0;36375:4;-1:-1:-1;;;;;36366:27:0;;;;;;;;;;;36400:42;35009:1439;;;34919:1529;;;:::o;36880:846::-;36970:24;;37009:12;37001:49;;;;-1:-1:-1;;;37001:49:0;;12974:2:1;37001:49:0;;;12956:21:1;13013:2;12993:18;;;12986:30;13052:26;13032:18;;;13025:54;13096:18;;37001:49:0;12772:348:1;37001:49:0;37057:16;37107:1;37076:28;37096:8;37076:17;:28;:::i;:::-;:32;;;;:::i;:::-;37057:51;-1:-1:-1;37130:18:0;37147:1;37130:14;:18;:::i;:::-;37119:8;:29;37115:81;;;37170:18;37187:1;37170:14;:18;:::i;:::-;37159:29;;37115:81;37311:17;37319:8;32954:12;;-1:-1:-1;32944:22:0;32867:105;37311:17;37303:68;;;;-1:-1:-1;;;37303:68:0;;20168:2:1;37303:68:0;;;20150:21:1;20207:2;20187:18;;;20180:30;20246:34;20226:18;;;20219:62;-1:-1:-1;;;20297:18:1;;;20290:36;20343:19;;37303:68:0;19966:402:1;37303:68:0;37395:17;37378:297;37419:8;37414:1;:13;37378:297;;37478:1;37447:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;37447:19:0;37443:225;;37493:31;37527:14;37539:1;37527:11;:14::i;:::-;37569:89;;;;;;;;37596:14;;-1:-1:-1;;;;;37569:89:0;;;;;;37623:24;;;;-1:-1:-1;;;;;37569:89:0;;;;;;;;;-1:-1:-1;37552:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;37552:106:0;-1:-1:-1;;;;;;37552:106:0;;;;;;;;;;;;-1:-1:-1;37443:225:0;37429:3;;;;:::i;:::-;;;;37378:297;;;-1:-1:-1;37708:12:0;:8;37719:1;37708:12;:::i;:::-;37681:24;:39;-1:-1:-1;;;36880:846:0:o;32978:98::-;33043:27;33053:2;33057:8;33043:27;;;;;;;;;;;;:9;:27::i;44566:204::-;44639:5;44626:9;:18;;44618:53;;;;-1:-1:-1;;;44618:53:0;;18291:2:1;44618:53:0;;;18273:21:1;18330:2;18310:18;;;18303:30;-1:-1:-1;;;18349:18:1;;;18342:52;18411:18;;44618:53:0;18089:346:1;44618:53:0;44694:5;44682:9;:17;44678:87;;;44718:10;44710:47;44739:17;44751:5;44739:9;:17;:::i;:::-;44710:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28680:606;-1:-1:-1;;;;;;;;;;;;;;;;;28797:16:0;28805:7;32954:12;;-1:-1:-1;32944:22:0;32867:105;28797:16;28789:71;;;;-1:-1:-1;;;28789:71:0;;9796:2:1;28789:71:0;;;9778:21:1;9835:2;9815:18;;;9808:30;9874:34;9854:18;;;9847:62;-1:-1:-1;;;9925:18:1;;;9918:40;9975:19;;28789:71:0;9594:406:1;28789:71:0;28869:26;28917:12;28906:7;:23;28902:93;;28961:22;28971:12;28961:7;:22;:::i;:::-;:26;;28986:1;28961:26;:::i;:::-;28940:47;;28902:93;29023:7;29003:212;29040:18;29032:4;:26;29003:212;;29077:31;29111:17;;;:11;:17;;;;;;;;;29077:51;;;;;;;;;-1:-1:-1;;;;;29077:51:0;;;;;-1:-1:-1;;;29077:51:0;;;-1:-1:-1;;;;;29077:51:0;;;;;;;;29141:28;29137:71;;29189:9;28680:606;-1:-1:-1;;;;28680:606:0:o;29137:71::-;-1:-1:-1;29060:6:0;;;;:::i;:::-;;;;29003:212;;;-1:-1:-1;29223:57:0;;-1:-1:-1;;;29223:57:0;;20935:2:1;29223:57:0;;;20917:21:1;20974:2;20954:18;;;20947:30;21013:34;20993:18;;;20986:62;-1:-1:-1;;;21064:18:1;;;21057:45;21119:19;;29223:57:0;20733:411:1;42425:191:0;42499:16;42518:6;;-1:-1:-1;;;;;42535:17:0;;;-1:-1:-1;;;;;;42535:17:0;;;;;;42568:40;;42518:6;;;;;;;42568:40;;42499:16;42568:40;42488:128;42425:191;:::o;38269:690::-;38406:4;-1:-1:-1;;;;;38423:13:0;;3687:19;:23;38419:535;;38462:72;;-1:-1:-1;;;38462:72:0;;-1:-1:-1;;;;;38462:36:0;;;;;:72;;23912:10;;38513:4;;38519:7;;38528:5;;38462:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38462:72:0;;;;;;;;-1:-1:-1;;38462:72:0;;;;;;;;;;;;:::i;:::-;;;38449:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38693:13:0;;38689:215;;38726:61;;-1:-1:-1;;;38726:61:0;;;;;;;:::i;38689:215::-;38872:6;38866:13;38857:6;38853:2;38849:15;38842:38;38449:464;-1:-1:-1;;;;;;38584:55:0;-1:-1:-1;;;38584:55:0;;-1:-1:-1;38577:62:0;;38419:535;-1:-1:-1;38942:4:0;38419:535;38269:690;;;;;;:::o;45834:108::-;45894:13;45923;45916:20;;;;;:::i;400:723::-;456:13;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;-1:-1:-1;;;704:10:0;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;-1:-1:-1;;;;;902:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;990:56:0;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;28434:240;28495:7;-1:-1:-1;;;;;28527:19:0;;28511:102;;;;-1:-1:-1;;;28511:102:0;;11017:2:1;28511:102:0;;;10999:21:1;11056:2;11036:18;;;11029:30;11095:34;11075:18;;;11068:62;-1:-1:-1;;;11146:18:1;;;11139:47;11203:19;;28511:102:0;10815:413:1;28511:102:0;-1:-1:-1;;;;;;28635:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28635:32:0;;-1:-1:-1;;;;;28635:32:0;;28434:240::o;33415:1272::-;33543:12;;-1:-1:-1;;;;;33570:16:0;;33562:62;;;;-1:-1:-1;;;33562:62:0;;19000:2:1;33562:62:0;;;18982:21:1;19039:2;19019:18;;;19012:30;19078:34;19058:18;;;19051:62;-1:-1:-1;;;19129:18:1;;;19122:31;19170:19;;33562:62:0;18798:397:1;33562:62:0;33761:21;33769:12;32954;;-1:-1:-1;32944:22:0;32867:105;33761:21;33760:22;33752:64;;;;-1:-1:-1;;;33752:64:0;;18642:2:1;33752:64:0;;;18624:21:1;18681:2;18661:18;;;18654:30;18720:31;18700:18;;;18693:59;18769:18;;33752:64:0;18440:353:1;33752:64:0;33843:12;33831:8;:24;;33823:71;;;;-1:-1:-1;;;33823:71:0;;21765:2:1;33823:71:0;;;21747:21:1;21804:2;21784:18;;;21777:30;21843:34;21823:18;;;21816:62;-1:-1:-1;;;21894:18:1;;;21887:32;21936:19;;33823:71:0;21563:398:1;33823:71:0;-1:-1:-1;;;;;34006:16:0;;33973:30;34006:16;;;:12;:16;;;;;;;;;33973:49;;;;;;;;;-1:-1:-1;;;;;33973:49:0;;;;;-1:-1:-1;;;33973:49:0;;;;;;;;;;;34048:119;;;;;;;;34068:19;;33973:49;;34048:119;;;34068:39;;34098:8;;34068:39;:::i;:::-;-1:-1:-1;;;;;34048:119:0;;;;;34151:8;34116:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34048:119:0;;;;;;-1:-1:-1;;;;;34029:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;34029:138:0;;;;;;;;;;;;34202:43;;;;;;;;;;-1:-1:-1;;;;;34228:15:0;34202:43;;;;;;;;34174:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34174:71:0;-1:-1:-1;;;;;;34174:71:0;;;;;;;;;;;;;;;;;;34186:12;;34298:281;34322:8;34318:1;:12;34298:281;;;34351:38;;34376:12;;-1:-1:-1;;;;;34351:38:0;;;34368:1;;34351:38;;34368:1;;34351:38;34416:59;34447:1;34451:2;34455:12;34469:5;34416:22;:59::i;:::-;34398:150;;;;-1:-1:-1;;;34398:150:0;;;;;;;:::i;:::-;34557:14;;;;:::i;:::-;;;;34332:3;;;;;:::i;:::-;;;;34298:281;;;-1:-1:-1;34587:12:0;:27;;;34621:60;32317:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:673::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:61;;;641:1;638;631:12;584:61;663:1;673:163;687:2;684:1;681:9;673:163;;;744:17;;732:30;;782:12;;;;814;;;;705:1;698:9;673:163;;;-1:-1:-1;854:5:1;;192:673;-1:-1:-1;;;;;;;192:673:1:o;870:171::-;937:20;;-1:-1:-1;;;;;986:30:1;;976:41;;966:69;;1031:1;1028;1021:12;1046:186;1105:6;1158:2;1146:9;1137:7;1133:23;1129:32;1126:52;;;1174:1;1171;1164:12;1126:52;1197:29;1216:9;1197:29;:::i;1237:260::-;1305:6;1313;1366:2;1354:9;1345:7;1341:23;1337:32;1334:52;;;1382:1;1379;1372:12;1334:52;1405:29;1424:9;1405:29;:::i;:::-;1395:39;;1453:38;1487:2;1476:9;1472:18;1453:38;:::i;:::-;1443:48;;1237:260;;;;;:::o;1502:328::-;1579:6;1587;1595;1648:2;1636:9;1627:7;1623:23;1619:32;1616:52;;;1664:1;1661;1654:12;1616:52;1687:29;1706:9;1687:29;:::i;:::-;1677:39;;1735:38;1769:2;1758:9;1754:18;1735:38;:::i;:::-;1725:48;;1820:2;1809:9;1805:18;1792:32;1782:42;;1502:328;;;;;:::o;1835:980::-;1930:6;1938;1946;1954;2007:3;1995:9;1986:7;1982:23;1978:33;1975:53;;;2024:1;2021;2014:12;1975:53;2047:29;2066:9;2047:29;:::i;:::-;2037:39;;2095:2;2116:38;2150:2;2139:9;2135:18;2116:38;:::i;:::-;2106:48;;2201:2;2190:9;2186:18;2173:32;2163:42;;2256:2;2245:9;2241:18;2228:32;-1:-1:-1;;;;;2320:2:1;2312:6;2309:14;2306:34;;;2336:1;2333;2326:12;2306:34;2374:6;2363:9;2359:22;2349:32;;2419:7;2412:4;2408:2;2404:13;2400:27;2390:55;;2441:1;2438;2431:12;2390:55;2477:2;2464:16;2499:2;2495;2492:10;2489:36;;;2505:18;;:::i;:::-;2547:53;2590:2;2571:13;;-1:-1:-1;;2567:27:1;2563:36;;2547:53;:::i;:::-;2534:66;;2623:2;2616:5;2609:17;2663:7;2658:2;2653;2649;2645:11;2641:20;2638:33;2635:53;;;2684:1;2681;2674:12;2635:53;2739:2;2734;2730;2726:11;2721:2;2714:5;2710:14;2697:45;2783:1;2778:2;2773;2766:5;2762:14;2758:23;2751:34;;2804:5;2794:15;;;;;1835:980;;;;;;;:::o;2820:347::-;2885:6;2893;2946:2;2934:9;2925:7;2921:23;2917:32;2914:52;;;2962:1;2959;2952:12;2914:52;2985:29;3004:9;2985:29;:::i;:::-;2975:39;;3064:2;3053:9;3049:18;3036:32;3111:5;3104:13;3097:21;3090:5;3087:32;3077:60;;3133:1;3130;3123:12;3077:60;3156:5;3146:15;;;2820:347;;;;;:::o;3172:254::-;3240:6;3248;3301:2;3289:9;3280:7;3276:23;3272:32;3269:52;;;3317:1;3314;3307:12;3269:52;3340:29;3359:9;3340:29;:::i;:::-;3330:39;3416:2;3401:18;;;;3388:32;;-1:-1:-1;;;3172:254:1:o;3431:1157::-;3549:6;3557;3610:2;3598:9;3589:7;3585:23;3581:32;3578:52;;;3626:1;3623;3616:12;3578:52;3666:9;3653:23;-1:-1:-1;;;;;3736:2:1;3728:6;3725:14;3722:34;;;3752:1;3749;3742:12;3722:34;3790:6;3779:9;3775:22;3765:32;;3835:7;3828:4;3824:2;3820:13;3816:27;3806:55;;3857:1;3854;3847:12;3806:55;3893:2;3880:16;3915:4;3939:60;3955:43;3995:2;3955:43;:::i;3939:60::-;4021:3;4045:2;4040:3;4033:15;4073:2;4068:3;4064:12;4057:19;;4104:2;4100;4096:11;4152:7;4147:2;4141;4138:1;4134:10;4130:2;4126:19;4122:28;4119:41;4116:61;;;4173:1;4170;4163:12;4116:61;4195:1;4186:10;;4205:169;4219:2;4216:1;4213:9;4205:169;;;4276:23;4295:3;4276:23;:::i;:::-;4264:36;;4237:1;4230:9;;;;;4320:12;;;;4352;;4205:169;;;-1:-1:-1;4393:5:1;-1:-1:-1;;4436:18:1;;4423:32;;-1:-1:-1;;4467:16:1;;;4464:36;;;4496:1;4493;4486:12;4464:36;;4519:63;4574:7;4563:8;4552:9;4548:24;4519:63;:::i;:::-;4509:73;;;3431:1157;;;;;:::o;4593:245::-;4651:6;4704:2;4692:9;4683:7;4679:23;4675:32;4672:52;;;4720:1;4717;4710:12;4672:52;4759:9;4746:23;4778:30;4802:5;4778:30;:::i;4843:249::-;4912:6;4965:2;4953:9;4944:7;4940:23;4936:32;4933:52;;;4981:1;4978;4971:12;4933:52;5013:9;5007:16;5032:30;5056:5;5032:30;:::i;5097:592::-;5168:6;5176;5229:2;5217:9;5208:7;5204:23;5200:32;5197:52;;;5245:1;5242;5235:12;5197:52;5285:9;5272:23;-1:-1:-1;;;;;5355:2:1;5347:6;5344:14;5341:34;;;5371:1;5368;5361:12;5341:34;5409:6;5398:9;5394:22;5384:32;;5454:7;5447:4;5443:2;5439:13;5435:27;5425:55;;5476:1;5473;5466:12;5425:55;5516:2;5503:16;5542:2;5534:6;5531:14;5528:34;;;5558:1;5555;5548:12;5528:34;5603:7;5598:2;5589:6;5585:2;5581:15;5577:24;5574:37;5571:57;;;5624:1;5621;5614:12;5571:57;5655:2;5647:11;;;;;5677:6;;-1:-1:-1;5097:592:1;;-1:-1:-1;;;;5097:592:1:o;5694:180::-;5753:6;5806:2;5794:9;5785:7;5781:23;5777:32;5774:52;;;5822:1;5819;5812:12;5774:52;-1:-1:-1;5845:23:1;;5694:180;-1:-1:-1;5694:180:1:o;5879:254::-;5947:6;5955;6008:2;5996:9;5987:7;5983:23;5979:32;5976:52;;;6024:1;6021;6014:12;5976:52;6060:9;6047:23;6037:33;;6089:38;6123:2;6112:9;6108:18;6089:38;:::i;6138:248::-;6206:6;6214;6267:2;6255:9;6246:7;6242:23;6238:32;6235:52;;;6283:1;6280;6273:12;6235:52;-1:-1:-1;;6306:23:1;;;6376:2;6361:18;;;6348:32;;-1:-1:-1;6138:248:1:o;6391:324::-;6466:6;6474;6482;6535:2;6523:9;6514:7;6510:23;6506:32;6503:52;;;6551:1;6548;6541:12;6503:52;6574:28;6592:9;6574:28;:::i;:::-;6564:38;;6621:37;6654:2;6643:9;6639:18;6621:37;:::i;6720:257::-;6761:3;6799:5;6793:12;6826:6;6821:3;6814:19;6842:63;6898:6;6891:4;6886:3;6882:14;6875:4;6868:5;6864:16;6842:63;:::i;:::-;6959:2;6938:15;-1:-1:-1;;6934:29:1;6925:39;;;;6966:4;6921:50;;6720:257;-1:-1:-1;;6720:257:1:o;6982:470::-;7161:3;7199:6;7193:13;7215:53;7261:6;7256:3;7249:4;7241:6;7237:17;7215:53;:::i;:::-;7331:13;;7290:16;;;;7353:57;7331:13;7290:16;7387:4;7375:17;;7353:57;:::i;:::-;7426:20;;6982:470;-1:-1:-1;;;;6982:470:1:o;7875:488::-;-1:-1:-1;;;;;8144:15:1;;;8126:34;;8196:15;;8191:2;8176:18;;8169:43;8243:2;8228:18;;8221:34;;;8291:3;8286:2;8271:18;;8264:31;;;8069:4;;8312:45;;8337:19;;8329:6;8312:45;:::i;:::-;8304:53;7875:488;-1:-1:-1;;;;;;7875:488:1:o;8560:219::-;8709:2;8698:9;8691:21;8672:4;8729:44;8769:2;8758:9;8754:18;8746:6;8729:44;:::i;13537:342::-;13739:2;13721:21;;;13778:2;13758:18;;;13751:30;-1:-1:-1;;;13812:2:1;13797:18;;13790:48;13870:2;13855:18;;13537:342::o;14651:356::-;14853:2;14835:21;;;14872:18;;;14865:30;14931:34;14926:2;14911:18;;14904:62;14998:2;14983:18;;14651:356::o;17669:415::-;17871:2;17853:21;;;17910:2;17890:18;;;17883:30;17949:34;17944:2;17929:18;;17922:62;-1:-1:-1;;;18015:2:1;18000:18;;17993:49;18074:3;18059:19;;17669:415::o;23723:275::-;23794:2;23788:9;23859:2;23840:13;;-1:-1:-1;;23836:27:1;23824:40;;-1:-1:-1;;;;;23879:34:1;;23915:22;;;23876:62;23873:88;;;23941:18;;:::i;:::-;23977:2;23970:22;23723:275;;-1:-1:-1;23723:275:1:o;24003:183::-;24063:4;-1:-1:-1;;;;;24088:6:1;24085:30;24082:56;;;24118:18;;:::i;:::-;-1:-1:-1;24163:1:1;24159:14;24175:4;24155:25;;24003:183::o;24191:253::-;24231:3;-1:-1:-1;;;;;24320:2:1;24317:1;24313:10;24350:2;24347:1;24343:10;24381:3;24377:2;24373:12;24368:3;24365:21;24362:47;;;24389:18;;:::i;24449:128::-;24489:3;24520:1;24516:6;24513:1;24510:13;24507:39;;;24526:18;;:::i;:::-;-1:-1:-1;24562:9:1;;24449:128::o;24582:120::-;24622:1;24648;24638:35;;24653:18;;:::i;:::-;-1:-1:-1;24687:9:1;;24582:120::o;24707:168::-;24747:7;24813:1;24809;24805:6;24801:14;24798:1;24795:21;24790:1;24783:9;24776:17;24772:45;24769:71;;;24820:18;;:::i;:::-;-1:-1:-1;24860:9:1;;24707:168::o;24880:246::-;24920:4;-1:-1:-1;;;;;25033:10:1;;;;25003;;25055:12;;;25052:38;;;25070:18;;:::i;:::-;25107:13;;24880:246;-1:-1:-1;;;24880:246:1:o;25131:125::-;25171:4;25199:1;25196;25193:8;25190:34;;;25204:18;;:::i;:::-;-1:-1:-1;25241:9:1;;25131:125::o;25261:258::-;25333:1;25343:113;25357:6;25354:1;25351:13;25343:113;;;25433:11;;;25427:18;25414:11;;;25407:39;25379:2;25372:10;25343:113;;;25474:6;25471:1;25468:13;25465:48;;;-1:-1:-1;;25509:1:1;25491:16;;25484:27;25261:258::o;25524:136::-;25563:3;25591:5;25581:39;;25600:18;;:::i;:::-;-1:-1:-1;;;25636:18:1;;25524:136::o;25665:380::-;25744:1;25740:12;;;;25787;;;25808:61;;25862:4;25854:6;25850:17;25840:27;;25808:61;25915:2;25907:6;25904:14;25884:18;25881:38;25878:161;;;25961:10;25956:3;25952:20;25949:1;25942:31;25996:4;25993:1;25986:15;26024:4;26021:1;26014:15;25878:161;;25665:380;;;:::o;26050:135::-;26089:3;-1:-1:-1;;26110:17:1;;26107:43;;;26130:18;;:::i;:::-;-1:-1:-1;26177:1:1;26166:13;;26050:135::o;26190:112::-;26222:1;26248;26238:35;;26253:18;;:::i;:::-;-1:-1:-1;26287:9:1;;26190:112::o;26307:127::-;26368:10;26363:3;26359:20;26356:1;26349:31;26399:4;26396:1;26389:15;26423:4;26420:1;26413:15;26439:127;26500:10;26495:3;26491:20;26488:1;26481:31;26531:4;26528:1;26521:15;26555:4;26552:1;26545:15;26571:127;26632:10;26627:3;26623:20;26620:1;26613:31;26663:4;26660:1;26653:15;26687:4;26684:1;26677:15;26703:127;26764:10;26759:3;26755:20;26752:1;26745:31;26795:4;26792:1;26785:15;26819:4;26816:1;26809:15;26835:131;-1:-1:-1;;;;;;26909:32:1;;26899:43;;26889:71;;26956:1;26953;26946:12

Swarm Source

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