ETH Price: $2,284.11 (-2.55%)
Gas: 1.5 Gwei

Token

Doodle MoonBird (Doodle MoonBird)
 

Overview

Max Total Supply

476 Doodle MoonBird

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
12 Doodle MoonBird
0xe4F8cf094298A636c6bcf8f52De33472a91f8fB5
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:
DoodleMoonBirds

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-18
*/

// SPDX-License-Identifier: MIT

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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








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




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


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


pragma solidity ^0.8.0;


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

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

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

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


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


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  collectionSize;
  uint256 internal  collectionSizeFree;
  uint256 internal  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_,
    uint256 collectionSizeFree_
  ) {
    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_;
    collectionSizeFree = collectionSizeFree_;
  }

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


pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;


contract DoodleMoonBirds is Ownable, ERC721A, ReentrancyGuard {
  uint256 public amountForDevs;
  uint256 public price = 0.0024 ether;
  uint256 public freemintAmount = 3;
  uint256 public mintAmount = 20;

  struct SaleConfig {
    uint64 publicPrice;
  }

  SaleConfig public saleConfig;


  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 collectionSizeFree_,
    uint256 amountForDevs_
  ) ERC721A("Doodle MoonBird", "Doodle MoonBird", maxBatchSize_, collectionSize_, collectionSizeFree_) {
    
    amountForDevs = amountForDevs_;
    
  }

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

  function lmint(uint256 quantity)
    external
    payable
    callerIsUser
  {
      require(quantity <= mintAmount, "Too many minted at once");
      require(msg.value >= price * quantity, "Need to send more ETH.");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    _safeMint(msg.sender, quantity);
    
  }


  function Mint(uint256 quantity) external payable {address _caller = _msgSender();
     
        require(quantity > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts"); 

        if(collectionSizeFree >= totalSupply())

        {require(freemintAmount >= quantity , "Excess max per free tx");} 


     else
     
     {require(mintAmount >= quantity , "Excess max per paid tx");
     
     require(msg.value >= price * quantity, "Need to send more ETH.");
     
     }
    
    _safeMint(msg.sender, quantity);

     }






  // For marketing etc.
  function mint(uint256 quantity) external onlyOwner {
    
     require(totalSupply() + quantity <= amountForDevs, "reached max supply");
    _safeMint(msg.sender, quantity);
  }
    

  // // metadata URI
  string private _baseTokenURI;

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

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

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

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

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

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

function setprice(uint256 _newprice) public onlyOwner {
	    price = _newprice;
	}

  function setfreemints(uint256 _newfreemints) public onlyOwner {
	    collectionSizeFree = _newfreemints;
	}

    function setcollectionSize(uint256 _newcollectionSize) public onlyOwner {
	    collectionSize = _newcollectionSize;
	}

    function setamountForDevs(uint256 _newamountForDevs) public onlyOwner {
	    amountForDevs = _newamountForDevs;
	}

    function setfreemintAmount(uint256 _newfreemintAmount) public onlyOwner {
	    freemintAmount = _newfreemintAmount;
	}

    function setmintAmount(uint256 _newmintAmount) public onlyOwner {
	    mintAmount = _newmintAmount;
	}


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSizeFree_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","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":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemintAmount","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"lmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintAmount","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"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":"uint256","name":"_newamountForDevs","type":"uint256"}],"name":"setamountForDevs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newcollectionSize","type":"uint256"}],"name":"setcollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemintAmount","type":"uint256"}],"name":"setfreemintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemints","type":"uint256"}],"name":"setfreemints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmintAmount","type":"uint256"}],"name":"setmintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

608060405260006001556000600b55660886c98b760000600e556003600f5560146010553480156200003057600080fd5b5060405162002c1a38038062002c1a8339810160408190526200005391620002d5565b6040518060400160405280600f81526020016e111bdbd91b1948135bdbdb909a5c99608a1b8152506040518060400160405280600f81526020016e111bdbd91b1948135bdbdb909a5c99608a1b815250858585620000c0620000ba620001db60201b60201c565b620001df565b600082116200012d5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600083116200018f5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000124565b8451620001a49060059060208801906200022f565b508351620001ba9060069060208701906200022f565b5060049290925560025560035550506001600c55600d555062000349915050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200023d906200030c565b90600052602060002090601f016020900481019282620002615760008555620002ac565b82601f106200027c57805160ff1916838001178555620002ac565b82800160010185558215620002ac579182015b82811115620002ac5782518255916020019190600101906200028f565b50620002ba929150620002be565b5090565b5b80821115620002ba5760008155600101620002bf565b60008060008060808587031215620002ec57600080fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c908216806200032157607f821691505b602082108114156200034357634e487b7160e01b600052602260045260246000fd5b50919050565b6128c180620003596000396000f3fe6080604052600436106102305760003560e01c806380e28ea51161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e68114610699578063e985e9c5146106b9578063f2fde38b14610702578063fbe1aa5114610722578063ff7888291461073857600080fd5b8063b88d4fde14610603578063c87b56dd14610623578063d0d9990714610643578063d49f0fa514610663578063d7224ba01461068357600080fd5b80639f8afbcc116100f25780639f8afbcc14610578578063a035b1fe14610598578063a0712d68146105ae578063a22cb465146105ce578063ac446002146105ee57600080fd5b806380e28ea51461049d5780638da5cb5b146104bd57806390aa0b0f146104db5780639231ab2a1461051557806395d89b411461056357600080fd5b806327e410f1116101bc57806355f804b31161018057806355f804b3146104125780635a2bcc18146104325780636352211e1461044857806370a0823114610468578063715018a61461048857600080fd5b806327e410f1146103725780632d20fb60146103925780632f745c59146103b257806342842e0e146103d25780634f6ccce7146103f257600080fd5b8063095ea7b311610203578063095ea7b3146102d9578063130db2bb146102f957806318160ddd1461031d57806321b2a6cb1461033257806323b872dd1461035257600080fd5b806301ffc9a71461023557806306fdde031461026a578063078837031461028c578063081812fc146102a1575b600080fd5b34801561024157600080fd5b506102556102503660046122fa565b61074b565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6107b8565b604051610261919061236f565b61029f61029a366004612382565b61084a565b005b3480156102ad57600080fd5b506102c16102bc366004612382565b6109db565b6040516001600160a01b039091168152602001610261565b3480156102e557600080fd5b5061029f6102f43660046123b7565b610a66565b34801561030557600080fd5b5061030f600f5481565b604051908152602001610261565b34801561032957600080fd5b5060015461030f565b34801561033e57600080fd5b5061029f61034d366004612382565b610b7e565b34801561035e57600080fd5b5061029f61036d3660046123e1565b610bad565b34801561037e57600080fd5b5061029f61038d366004612382565b610bb8565b34801561039e57600080fd5b5061029f6103ad366004612382565b610be7565b3480156103be57600080fd5b5061030f6103cd3660046123b7565b610c7a565b3480156103de57600080fd5b5061029f6103ed3660046123e1565b610df3565b3480156103fe57600080fd5b5061030f61040d366004612382565b610e0e565b34801561041e57600080fd5b5061029f61042d36600461241d565b610e77565b34801561043e57600080fd5b5061030f60105481565b34801561045457600080fd5b506102c1610463366004612382565b610ead565b34801561047457600080fd5b5061030f61048336600461248f565b610ebf565b34801561049457600080fd5b5061029f610f50565b3480156104a957600080fd5b5061029f6104b8366004612382565b610f86565b3480156104c957600080fd5b506000546001600160a01b03166102c1565b3480156104e757600080fd5b506011546104fc9067ffffffffffffffff1681565b60405167ffffffffffffffff9091168152602001610261565b34801561052157600080fd5b50610535610530366004612382565b610fb5565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610261565b34801561056f57600080fd5b5061027f610fd2565b34801561058457600080fd5b5061029f610593366004612382565b610fe1565b3480156105a457600080fd5b5061030f600e5481565b3480156105ba57600080fd5b5061029f6105c9366004612382565b611010565b3480156105da57600080fd5b5061029f6105e93660046124aa565b6110a1565b3480156105fa57600080fd5b5061029f611166565b34801561060f57600080fd5b5061029f61061e3660046124fc565b611273565b34801561062f57600080fd5b5061027f61063e366004612382565b6112ac565b34801561064f57600080fd5b5061029f61065e366004612382565b611379565b34801561066f57600080fd5b5061029f61067e366004612382565b6113a8565b34801561068f57600080fd5b5061030f600b5481565b3480156106a557600080fd5b5061030f6106b436600461248f565b6113d7565b3480156106c557600080fd5b506102556106d43660046125d8565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b34801561070e57600080fd5b5061029f61071d36600461248f565b6113e2565b34801561072e57600080fd5b5061030f600d5481565b61029f610746366004612382565b61147a565b60006001600160e01b031982166380ac58cd60e01b148061077c57506001600160e01b03198216635b5e139f60e01b145b8061079757506001600160e01b0319821663780e9d6360e01b145b806107b257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600580546107c79061260b565b80601f01602080910402602001604051908101604052809291908181526020018280546107f39061260b565b80156108405780601f1061081557610100808354040283529160200191610840565b820191906000526020600020905b81548152906001019060200180831161082357829003601f168201915b5050505050905090565b338161088a5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064015b60405180910390fd5b326001600160a01b038216146108d15760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610881565b6001546003541061092c5781600f5410156109275760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610881565b6109cd565b8160105410156109775760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610881565b81600e54610985919061265c565b3410156109cd5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610881565b6109d7338361157e565b5050565b60006109e8826001541190565b610a4a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610881565b506000908152600960205260409020546001600160a01b031690565b6000610a7182610ead565b9050806001600160a01b0316836001600160a01b03161415610ae05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610881565b336001600160a01b0382161480610afc5750610afc81336106d4565b610b6e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610881565b610b79838383611598565b505050565b6000546001600160a01b03163314610ba85760405162461bcd60e51b81526004016108819061267b565b600d55565b610b798383836115f4565b6000546001600160a01b03163314610be25760405162461bcd60e51b81526004016108819061267b565b600f55565b6000546001600160a01b03163314610c115760405162461bcd60e51b81526004016108819061267b565b6002600c541415610c645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610881565b6002600c55610c728161197c565b506001600c55565b6000610c8583610ebf565b8210610cde5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610881565b6000610ce960015490565b905060008060005b83811015610d93576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d4457805192505b876001600160a01b0316836001600160a01b03161415610d805786841415610d72575093506107b292505050565b83610d7c816126b0565b9450505b5080610d8b816126b0565b915050610cf1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610881565b610b7983838360405180602001604052806000815250611273565b6000610e1960015490565b8210610e735760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610881565b5090565b6000546001600160a01b03163314610ea15760405162461bcd60e51b81526004016108819061267b565b610b7960128383612254565b6000610eb882611b2e565b5192915050565b60006001600160a01b038216610f2b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610881565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b03163314610f7a5760405162461bcd60e51b81526004016108819061267b565b610f846000611c9d565b565b6000546001600160a01b03163314610fb05760405162461bcd60e51b81526004016108819061267b565b600355565b60408051808201909152600080825260208201526107b282611b2e565b6060600680546107c79061260b565b6000546001600160a01b0316331461100b5760405162461bcd60e51b81526004016108819061267b565b600255565b6000546001600160a01b0316331461103a5760405162461bcd60e51b81526004016108819061267b565b600d548161104760015490565b61105191906126cb565b11156110945760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610881565b61109e338261157e565b50565b6001600160a01b0382163314156110fa5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610881565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111905760405162461bcd60e51b81526004016108819061267b565b6002600c5414156111e35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610881565b6002600c55604051600090339047908381818185875af1925050503d806000811461122a576040519150601f19603f3d011682016040523d82523d6000602084013e61122f565b606091505b5050905080610c725760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610881565b61127e8484846115f4565b61128a84848484611ced565b6112a65760405162461bcd60e51b8152600401610881906126e3565b50505050565b60606112b9826001541190565b61131d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610881565b6000611327611dec565b905060008151116113475760405180602001604052806000815250611372565b8061135184611dfb565b604051602001611362929190612736565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146113a35760405162461bcd60e51b81526004016108819061267b565b601055565b6000546001600160a01b031633146113d25760405162461bcd60e51b81526004016108819061267b565b600e55565b60006107b282611ef9565b6000546001600160a01b0316331461140c5760405162461bcd60e51b81526004016108819061267b565b6001600160a01b0381166114715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610881565b61109e81611c9d565b3233146114c95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610881565b60105481111561151b5760405162461bcd60e51b815260206004820152601760248201527f546f6f206d616e79206d696e746564206174206f6e63650000000000000000006044820152606401610881565b80600e54611529919061265c565b3410156115715760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610881565b6002548161104760015490565b6109d7828260405180602001604052806000815250611f97565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ff82611b2e565b80519091506000906001600160a01b0316336001600160a01b0316148061163657503361162b846109db565b6001600160a01b0316145b806116485750815161164890336106d4565b9050806116b25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610881565b846001600160a01b031682600001516001600160a01b0316146117265760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610881565b6001600160a01b03841661178a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610881565b61179a6000848460000151611598565b6001600160a01b03851660009081526008602052604081208054600192906117cc9084906001600160801b0316612765565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260086020526040812080546001945090926118189185911661278d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118a08460016126cb565b6000818152600760205260409020549091506001600160a01b0316611932576118ca816001541190565b156119325760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b54816119cc5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610881565b600060016119da84846126cb565b6119e491906127af565b905060016002546119f591906127af565b811115611a0e576001600254611a0b91906127af565b90505b611a19816001541190565b611a745760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610881565b815b818111611b1a576000818152600760205260409020546001600160a01b0316611b08576000611aa482611b2e565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611b12816126b0565b915050611a76565b50611b268160016126cb565b600b55505050565b6040805180820190915260008082526020820152611b4d826001541190565b611bac5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610881565b60006004548310611bd257600454611bc490846127af565b611bcf9060016126cb565b90505b825b818110611c3c576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c2957949350505050565b5080611c34816127c6565b915050611bd4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610881565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611de057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d319033908990889088906004016127dd565b6020604051808303816000875af1925050508015611d6c575060408051601f3d908101601f19168201909252611d699181019061281a565b60015b611dc6573d808015611d9a576040519150601f19603f3d011682016040523d82523d6000602084013e611d9f565b606091505b508051611dbe5760405162461bcd60e51b8152600401610881906126e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611de4565b5060015b949350505050565b6060601280546107c79061260b565b606081611e1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e495780611e33816126b0565b9150611e429050600a8361284d565b9150611e23565b60008167ffffffffffffffff811115611e6457611e646124e6565b6040519080825280601f01601f191660200182016040528015611e8e576020820181803683370190505b5090505b8415611de457611ea36001836127af565b9150611eb0600a86612861565b611ebb9060306126cb565b60f81b818381518110611ed057611ed0612875565b60200101906001600160f81b031916908160001a905350611ef2600a8661284d565b9450611e92565b60006001600160a01b038216611f6b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610881565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611ffa5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610881565b612005816001541190565b156120525760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610881565b6004548311156120af5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610881565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061210b90879061278d565b6001600160801b03168152602001858360200151612129919061278d565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122495760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461220d6000888488611ced565b6122295760405162461bcd60e51b8152600401610881906126e3565b81612233816126b0565b9250508080612241906126b0565b9150506121c0565b506001819055611974565b8280546122609061260b565b90600052602060002090601f01602090048101928261228257600085556122c8565b82601f1061229b5782800160ff198235161785556122c8565b828001600101855582156122c8579182015b828111156122c85782358255916020019190600101906122ad565b50610e739291505b80821115610e7357600081556001016122d0565b6001600160e01b03198116811461109e57600080fd5b60006020828403121561230c57600080fd5b8135611372816122e4565b60005b8381101561233257818101518382015260200161231a565b838111156112a65750506000910152565b6000815180845261235b816020860160208601612317565b601f01601f19169290920160200192915050565b6020815260006113726020830184612343565b60006020828403121561239457600080fd5b5035919050565b80356001600160a01b03811681146123b257600080fd5b919050565b600080604083850312156123ca57600080fd5b6123d38361239b565b946020939093013593505050565b6000806000606084860312156123f657600080fd5b6123ff8461239b565b925061240d6020850161239b565b9150604084013590509250925092565b6000806020838503121561243057600080fd5b823567ffffffffffffffff8082111561244857600080fd5b818501915085601f83011261245c57600080fd5b81358181111561246b57600080fd5b86602082850101111561247d57600080fd5b60209290920196919550909350505050565b6000602082840312156124a157600080fd5b6113728261239b565b600080604083850312156124bd57600080fd5b6124c68361239b565b9150602083013580151581146124db57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561251257600080fd5b61251b8561239b565b93506125296020860161239b565b925060408501359150606085013567ffffffffffffffff8082111561254d57600080fd5b818701915087601f83011261256157600080fd5b813581811115612573576125736124e6565b604051601f8201601f19908116603f0116810190838211818310171561259b5761259b6124e6565b816040528281528a60208487010111156125b457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156125eb57600080fd5b6125f48361239b565b91506126026020840161239b565b90509250929050565b600181811c9082168061261f57607f821691505b6020821081141561264057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561267657612676612646565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006000198214156126c4576126c4612646565b5060010190565b600082198211156126de576126de612646565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612748818460208801612317565b83519083019061275c818360208801612317565b01949350505050565b60006001600160801b038381169083168181101561278557612785612646565b039392505050565b60006001600160801b0380831681851680830382111561275c5761275c612646565b6000828210156127c1576127c1612646565b500390565b6000816127d5576127d5612646565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061281090830184612343565b9695505050505050565b60006020828403121561282c57600080fd5b8151611372816122e4565b634e487b7160e01b600052601260045260246000fd5b60008261285c5761285c612837565b500490565b60008261287057612870612837565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209c84de2823815dbab85923c61a4dc11c3a1a8ea91d03d6cb9a8bea36aa7e7dad64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000d0500000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000d05

Deployed Bytecode

0x6080604052600436106102305760003560e01c806380e28ea51161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e68114610699578063e985e9c5146106b9578063f2fde38b14610702578063fbe1aa5114610722578063ff7888291461073857600080fd5b8063b88d4fde14610603578063c87b56dd14610623578063d0d9990714610643578063d49f0fa514610663578063d7224ba01461068357600080fd5b80639f8afbcc116100f25780639f8afbcc14610578578063a035b1fe14610598578063a0712d68146105ae578063a22cb465146105ce578063ac446002146105ee57600080fd5b806380e28ea51461049d5780638da5cb5b146104bd57806390aa0b0f146104db5780639231ab2a1461051557806395d89b411461056357600080fd5b806327e410f1116101bc57806355f804b31161018057806355f804b3146104125780635a2bcc18146104325780636352211e1461044857806370a0823114610468578063715018a61461048857600080fd5b806327e410f1146103725780632d20fb60146103925780632f745c59146103b257806342842e0e146103d25780634f6ccce7146103f257600080fd5b8063095ea7b311610203578063095ea7b3146102d9578063130db2bb146102f957806318160ddd1461031d57806321b2a6cb1461033257806323b872dd1461035257600080fd5b806301ffc9a71461023557806306fdde031461026a578063078837031461028c578063081812fc146102a1575b600080fd5b34801561024157600080fd5b506102556102503660046122fa565b61074b565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f6107b8565b604051610261919061236f565b61029f61029a366004612382565b61084a565b005b3480156102ad57600080fd5b506102c16102bc366004612382565b6109db565b6040516001600160a01b039091168152602001610261565b3480156102e557600080fd5b5061029f6102f43660046123b7565b610a66565b34801561030557600080fd5b5061030f600f5481565b604051908152602001610261565b34801561032957600080fd5b5060015461030f565b34801561033e57600080fd5b5061029f61034d366004612382565b610b7e565b34801561035e57600080fd5b5061029f61036d3660046123e1565b610bad565b34801561037e57600080fd5b5061029f61038d366004612382565b610bb8565b34801561039e57600080fd5b5061029f6103ad366004612382565b610be7565b3480156103be57600080fd5b5061030f6103cd3660046123b7565b610c7a565b3480156103de57600080fd5b5061029f6103ed3660046123e1565b610df3565b3480156103fe57600080fd5b5061030f61040d366004612382565b610e0e565b34801561041e57600080fd5b5061029f61042d36600461241d565b610e77565b34801561043e57600080fd5b5061030f60105481565b34801561045457600080fd5b506102c1610463366004612382565b610ead565b34801561047457600080fd5b5061030f61048336600461248f565b610ebf565b34801561049457600080fd5b5061029f610f50565b3480156104a957600080fd5b5061029f6104b8366004612382565b610f86565b3480156104c957600080fd5b506000546001600160a01b03166102c1565b3480156104e757600080fd5b506011546104fc9067ffffffffffffffff1681565b60405167ffffffffffffffff9091168152602001610261565b34801561052157600080fd5b50610535610530366004612382565b610fb5565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610261565b34801561056f57600080fd5b5061027f610fd2565b34801561058457600080fd5b5061029f610593366004612382565b610fe1565b3480156105a457600080fd5b5061030f600e5481565b3480156105ba57600080fd5b5061029f6105c9366004612382565b611010565b3480156105da57600080fd5b5061029f6105e93660046124aa565b6110a1565b3480156105fa57600080fd5b5061029f611166565b34801561060f57600080fd5b5061029f61061e3660046124fc565b611273565b34801561062f57600080fd5b5061027f61063e366004612382565b6112ac565b34801561064f57600080fd5b5061029f61065e366004612382565b611379565b34801561066f57600080fd5b5061029f61067e366004612382565b6113a8565b34801561068f57600080fd5b5061030f600b5481565b3480156106a557600080fd5b5061030f6106b436600461248f565b6113d7565b3480156106c557600080fd5b506102556106d43660046125d8565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b34801561070e57600080fd5b5061029f61071d36600461248f565b6113e2565b34801561072e57600080fd5b5061030f600d5481565b61029f610746366004612382565b61147a565b60006001600160e01b031982166380ac58cd60e01b148061077c57506001600160e01b03198216635b5e139f60e01b145b8061079757506001600160e01b0319821663780e9d6360e01b145b806107b257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600580546107c79061260b565b80601f01602080910402602001604051908101604052809291908181526020018280546107f39061260b565b80156108405780601f1061081557610100808354040283529160200191610840565b820191906000526020600020905b81548152906001019060200180831161082357829003601f168201915b5050505050905090565b338161088a5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064015b60405180910390fd5b326001600160a01b038216146108d15760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610881565b6001546003541061092c5781600f5410156109275760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610881565b6109cd565b8160105410156109775760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610881565b81600e54610985919061265c565b3410156109cd5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610881565b6109d7338361157e565b5050565b60006109e8826001541190565b610a4a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610881565b506000908152600960205260409020546001600160a01b031690565b6000610a7182610ead565b9050806001600160a01b0316836001600160a01b03161415610ae05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610881565b336001600160a01b0382161480610afc5750610afc81336106d4565b610b6e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610881565b610b79838383611598565b505050565b6000546001600160a01b03163314610ba85760405162461bcd60e51b81526004016108819061267b565b600d55565b610b798383836115f4565b6000546001600160a01b03163314610be25760405162461bcd60e51b81526004016108819061267b565b600f55565b6000546001600160a01b03163314610c115760405162461bcd60e51b81526004016108819061267b565b6002600c541415610c645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610881565b6002600c55610c728161197c565b506001600c55565b6000610c8583610ebf565b8210610cde5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610881565b6000610ce960015490565b905060008060005b83811015610d93576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d4457805192505b876001600160a01b0316836001600160a01b03161415610d805786841415610d72575093506107b292505050565b83610d7c816126b0565b9450505b5080610d8b816126b0565b915050610cf1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610881565b610b7983838360405180602001604052806000815250611273565b6000610e1960015490565b8210610e735760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610881565b5090565b6000546001600160a01b03163314610ea15760405162461bcd60e51b81526004016108819061267b565b610b7960128383612254565b6000610eb882611b2e565b5192915050565b60006001600160a01b038216610f2b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610881565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b03163314610f7a5760405162461bcd60e51b81526004016108819061267b565b610f846000611c9d565b565b6000546001600160a01b03163314610fb05760405162461bcd60e51b81526004016108819061267b565b600355565b60408051808201909152600080825260208201526107b282611b2e565b6060600680546107c79061260b565b6000546001600160a01b0316331461100b5760405162461bcd60e51b81526004016108819061267b565b600255565b6000546001600160a01b0316331461103a5760405162461bcd60e51b81526004016108819061267b565b600d548161104760015490565b61105191906126cb565b11156110945760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610881565b61109e338261157e565b50565b6001600160a01b0382163314156110fa5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610881565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111905760405162461bcd60e51b81526004016108819061267b565b6002600c5414156111e35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610881565b6002600c55604051600090339047908381818185875af1925050503d806000811461122a576040519150601f19603f3d011682016040523d82523d6000602084013e61122f565b606091505b5050905080610c725760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610881565b61127e8484846115f4565b61128a84848484611ced565b6112a65760405162461bcd60e51b8152600401610881906126e3565b50505050565b60606112b9826001541190565b61131d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610881565b6000611327611dec565b905060008151116113475760405180602001604052806000815250611372565b8061135184611dfb565b604051602001611362929190612736565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146113a35760405162461bcd60e51b81526004016108819061267b565b601055565b6000546001600160a01b031633146113d25760405162461bcd60e51b81526004016108819061267b565b600e55565b60006107b282611ef9565b6000546001600160a01b0316331461140c5760405162461bcd60e51b81526004016108819061267b565b6001600160a01b0381166114715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610881565b61109e81611c9d565b3233146114c95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610881565b60105481111561151b5760405162461bcd60e51b815260206004820152601760248201527f546f6f206d616e79206d696e746564206174206f6e63650000000000000000006044820152606401610881565b80600e54611529919061265c565b3410156115715760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610881565b6002548161104760015490565b6109d7828260405180602001604052806000815250611f97565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ff82611b2e565b80519091506000906001600160a01b0316336001600160a01b0316148061163657503361162b846109db565b6001600160a01b0316145b806116485750815161164890336106d4565b9050806116b25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610881565b846001600160a01b031682600001516001600160a01b0316146117265760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610881565b6001600160a01b03841661178a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610881565b61179a6000848460000151611598565b6001600160a01b03851660009081526008602052604081208054600192906117cc9084906001600160801b0316612765565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260086020526040812080546001945090926118189185911661278d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118a08460016126cb565b6000818152600760205260409020549091506001600160a01b0316611932576118ca816001541190565b156119325760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b54816119cc5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610881565b600060016119da84846126cb565b6119e491906127af565b905060016002546119f591906127af565b811115611a0e576001600254611a0b91906127af565b90505b611a19816001541190565b611a745760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610881565b815b818111611b1a576000818152600760205260409020546001600160a01b0316611b08576000611aa482611b2e565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611b12816126b0565b915050611a76565b50611b268160016126cb565b600b55505050565b6040805180820190915260008082526020820152611b4d826001541190565b611bac5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610881565b60006004548310611bd257600454611bc490846127af565b611bcf9060016126cb565b90505b825b818110611c3c576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c2957949350505050565b5080611c34816127c6565b915050611bd4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610881565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611de057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d319033908990889088906004016127dd565b6020604051808303816000875af1925050508015611d6c575060408051601f3d908101601f19168201909252611d699181019061281a565b60015b611dc6573d808015611d9a576040519150601f19603f3d011682016040523d82523d6000602084013e611d9f565b606091505b508051611dbe5760405162461bcd60e51b8152600401610881906126e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611de4565b5060015b949350505050565b6060601280546107c79061260b565b606081611e1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e495780611e33816126b0565b9150611e429050600a8361284d565b9150611e23565b60008167ffffffffffffffff811115611e6457611e646124e6565b6040519080825280601f01601f191660200182016040528015611e8e576020820181803683370190505b5090505b8415611de457611ea36001836127af565b9150611eb0600a86612861565b611ebb9060306126cb565b60f81b818381518110611ed057611ed0612875565b60200101906001600160f81b031916908160001a905350611ef2600a8661284d565b9450611e92565b60006001600160a01b038216611f6b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610881565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611ffa5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610881565b612005816001541190565b156120525760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610881565b6004548311156120af5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610881565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061210b90879061278d565b6001600160801b03168152602001858360200151612129919061278d565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122495760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461220d6000888488611ced565b6122295760405162461bcd60e51b8152600401610881906126e3565b81612233816126b0565b9250508080612241906126b0565b9150506121c0565b506001819055611974565b8280546122609061260b565b90600052602060002090601f01602090048101928261228257600085556122c8565b82601f1061229b5782800160ff198235161785556122c8565b828001600101855582156122c8579182015b828111156122c85782358255916020019190600101906122ad565b50610e739291505b80821115610e7357600081556001016122d0565b6001600160e01b03198116811461109e57600080fd5b60006020828403121561230c57600080fd5b8135611372816122e4565b60005b8381101561233257818101518382015260200161231a565b838111156112a65750506000910152565b6000815180845261235b816020860160208601612317565b601f01601f19169290920160200192915050565b6020815260006113726020830184612343565b60006020828403121561239457600080fd5b5035919050565b80356001600160a01b03811681146123b257600080fd5b919050565b600080604083850312156123ca57600080fd5b6123d38361239b565b946020939093013593505050565b6000806000606084860312156123f657600080fd5b6123ff8461239b565b925061240d6020850161239b565b9150604084013590509250925092565b6000806020838503121561243057600080fd5b823567ffffffffffffffff8082111561244857600080fd5b818501915085601f83011261245c57600080fd5b81358181111561246b57600080fd5b86602082850101111561247d57600080fd5b60209290920196919550909350505050565b6000602082840312156124a157600080fd5b6113728261239b565b600080604083850312156124bd57600080fd5b6124c68361239b565b9150602083013580151581146124db57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561251257600080fd5b61251b8561239b565b93506125296020860161239b565b925060408501359150606085013567ffffffffffffffff8082111561254d57600080fd5b818701915087601f83011261256157600080fd5b813581811115612573576125736124e6565b604051601f8201601f19908116603f0116810190838211818310171561259b5761259b6124e6565b816040528281528a60208487010111156125b457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156125eb57600080fd5b6125f48361239b565b91506126026020840161239b565b90509250929050565b600181811c9082168061261f57607f821691505b6020821081141561264057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561267657612676612646565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006000198214156126c4576126c4612646565b5060010190565b600082198211156126de576126de612646565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612748818460208801612317565b83519083019061275c818360208801612317565b01949350505050565b60006001600160801b038381169083168181101561278557612785612646565b039392505050565b60006001600160801b0380831681851680830382111561275c5761275c612646565b6000828210156127c1576127c1612646565b500390565b6000816127d5576127d5612646565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061281090830184612343565b9695505050505050565b60006020828403121561282c57600080fd5b8151611372816122e4565b634e487b7160e01b600052601260045260246000fd5b60008261285c5761285c612837565b500490565b60008261287057612870612837565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209c84de2823815dbab85923c61a4dc11c3a1a8ea91d03d6cb9a8bea36aa7e7dad64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000d0500000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000d05

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 200
Arg [1] : collectionSize_ (uint256): 3333
Arg [2] : collectionSizeFree_ (uint256): 1000
Arg [3] : amountForDevs_ (uint256): 3333

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000d05


Deployed Bytecode Sourcemap

40516:3422:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23335:370;;;;;;;;;;-1:-1:-1;23335:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23335:370:0;;;;;;;;25061:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41597:557::-;;;;;;:::i;:::-;;:::i;:::-;;26586:204;;;;;;;;;;-1:-1:-1;26586:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26586:204:0;1528:203:1;26149:379:0;;;;;;;;;;-1:-1:-1;26149:379:0;;;;;:::i;:::-;;:::i;40656:33::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;40656:33:0;2173:177:1;21896:94:0;;;;;;;;;;-1:-1:-1;21972:12:0;;21896:94;;43575:116;;;;;;;;;;-1:-1:-1;43575:116:0;;;;;:::i;:::-;;:::i;27436:142::-;;;;;;;;;;-1:-1:-1;27436:142:0;;;;;:::i;:::-;;:::i;43699:120::-;;;;;;;;;;-1:-1:-1;43699:120:0;;;;;:::i;:::-;;:::i;42852:118::-;;;;;;;;;;-1:-1:-1;42852:118:0;;;;;:::i;:::-;;:::i;22527:744::-;;;;;;;;;;-1:-1:-1;22527:744:0;;;;;:::i;:::-;;:::i;27641:157::-;;;;;;;;;;-1:-1:-1;27641:157:0;;;;;:::i;:::-;;:::i;22059:177::-;;;;;;;;;;-1:-1:-1;22059:177:0;;;;;:::i;:::-;;:::i;42559:100::-;;;;;;;;;;-1:-1:-1;42559:100:0;;;;;:::i;:::-;;:::i;40694:30::-;;;;;;;;;;;;;;;;24884:118;;;;;;;;;;-1:-1:-1;24884:118:0;;;;;:::i;:::-;;:::i;23761:211::-;;;;;;;;;;-1:-1:-1;23761:211:0;;;;;:::i;:::-;;:::i;39856:94::-;;;;;;;;;;;;;:::i;43330:109::-;;;;;;;;;;-1:-1:-1;43330:109:0;;;;;:::i;:::-;;:::i;39205:87::-;;;;;;;;;;-1:-1:-1;39251:7:0;39278:6;-1:-1:-1;;;;;39278:6:0;39205:87;;40786:28;;;;;;;;;;-1:-1:-1;40786:28:0;;;;;;;;;;;3650:18:1;3638:31;;;3620:50;;3608:2;3593:18;40786:28:0;3476:200:1;43089:147:0;;;;;;;;;;-1:-1:-1;43089:147:0;;;;;:::i;:::-;;:::i;:::-;;;;3911:13:1;;-1:-1:-1;;;;;3907:39:1;3889:58;;4007:4;3995:17;;;3989:24;4015:18;3985:49;3963:20;;;3956:79;;;;3862:18;43089:147:0;3681:360:1;25216:98:0;;;;;;;;;;;;;:::i;43447:120::-;;;;;;;;;;-1:-1:-1;43447:120:0;;;;;:::i;:::-;;:::i;40616:35::-;;;;;;;;;;;;;;;;42195:181;;;;;;;;;;-1:-1:-1;42195:181:0;;;;;:::i;:::-;;:::i;26854:274::-;;;;;;;;;;-1:-1:-1;26854:274:0;;;;;:::i;:::-;;:::i;42665:181::-;;;;;;;;;;;;;:::i;27861:311::-;;;;;;;;;;-1:-1:-1;27861:311:0;;;;;:::i;:::-;;:::i;25377:394::-;;;;;;;;;;-1:-1:-1;25377:394:0;;;;;:::i;:::-;;:::i;43827:104::-;;;;;;;;;;-1:-1:-1;43827:104:0;;;;;:::i;:::-;;:::i;43240:84::-;;;;;;;;;;-1:-1:-1;43240:84:0;;;;;:::i;:::-;;:::i;32276:43::-;;;;;;;;;;;;;;;;42976:107;;;;;;;;;;-1:-1:-1;42976:107:0;;;;;:::i;:::-;;:::i;27191:186::-;;;;;;;;;;-1:-1:-1;27191:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;27336:25:0;;;27313:4;27336:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27191:186;40105:192;;;;;;;;;;-1:-1:-1;40105:192:0;;;;;:::i;:::-;;:::i;40583:28::-;;;;;;;;;;;;;;;;41238:351;;;;;;:::i;:::-;;:::i;23335:370::-;23462:4;-1:-1:-1;;;;;;23492:40:0;;-1:-1:-1;;;23492:40:0;;:99;;-1:-1:-1;;;;;;;23543:48:0;;-1:-1:-1;;;23543:48:0;23492:99;:160;;;-1:-1:-1;;;;;;;23602:50:0;;-1:-1:-1;;;23602:50:0;23492:160;:207;;;-1:-1:-1;;;;;;;;;;1650:40:0;;;23663:36;23478:221;23335:370;-1:-1:-1;;23335:370:0:o;25061:94::-;25115:13;25144:5;25137:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25061:94;:::o;41597:557::-;17378:10;41703:12;41695:35;;;;-1:-1:-1;;;41695:35:0;;6525:2:1;41695:35:0;;;6507:21:1;6564:2;6544:18;;;6537:30;-1:-1:-1;;;6583:18:1;;;6576:40;6633:18;;41695:35:0;;;;;;;;;41749:9;-1:-1:-1;;;;;41749:20:0;;;41741:45;;;;-1:-1:-1;;;41741:45:0;;6864:2:1;41741:45:0;;;6846:21:1;6903:2;6883:18;;;6876:30;-1:-1:-1;;;6922:18:1;;;6915:42;6974:18;;41741:45:0;6662:336:1;41741:45:0;21972:12;;41803:18;;:35;41800:300;;41878:8;41860:14;;:26;;41852:62;;;;-1:-1:-1;;;41852:62:0;;7205:2:1;41852:62:0;;;7187:21:1;7244:2;7224:18;;;7217:30;-1:-1:-1;;;7263:18:1;;;7256:52;7325:18;;41852:62:0;7003:346:1;41852:62:0;41800:300;;;41969:8;41955:10;;:22;;41947:58;;;;-1:-1:-1;;;41947:58:0;;7556:2:1;41947:58:0;;;7538:21:1;7595:2;7575:18;;;7568:30;-1:-1:-1;;;7614:18:1;;;7607:52;7676:18;;41947:58:0;7354:346:1;41947:58:0;42049:8;42041:5;;:16;;;;:::i;:::-;42028:9;:29;;42020:64;;;;-1:-1:-1;;;42020:64:0;;8212:2:1;42020:64:0;;;8194:21:1;8251:2;8231:18;;;8224:30;-1:-1:-1;;;8270:18:1;;;8263:52;8332:18;;42020:64:0;8010:346:1;42020:64:0;42112:31;42122:10;42134:8;42112:9;:31::i;:::-;41646:508;41597:557;:::o;26586:204::-;26654:7;26678:16;26686:7;28498:12;;-1:-1:-1;28488:22:0;28411:105;26678:16;26670:74;;;;-1:-1:-1;;;26670:74:0;;8563:2:1;26670:74:0;;;8545:21:1;8602:2;8582:18;;;8575:30;8641:34;8621:18;;;8614:62;-1:-1:-1;;;8692:18:1;;;8685:43;8745:19;;26670:74:0;8361:409:1;26670:74:0;-1:-1:-1;26760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26760:24:0;;26586:204::o;26149:379::-;26218:13;26234:24;26250:7;26234:15;:24::i;:::-;26218:40;;26279:5;-1:-1:-1;;;;;26273:11:0;:2;-1:-1:-1;;;;;26273:11:0;;;26265:58;;;;-1:-1:-1;;;26265:58:0;;8977:2:1;26265:58:0;;;8959:21:1;9016:2;8996:18;;;8989:30;9055:34;9035:18;;;9028:62;-1:-1:-1;;;9106:18:1;;;9099:32;9148:19;;26265:58:0;8775:398:1;26265:58:0;17378:10;-1:-1:-1;;;;;26348:21:0;;;;:62;;-1:-1:-1;26373:37:0;26390:5;17378:10;27191:186;:::i;26373:37::-;26332:153;;;;-1:-1:-1;;;26332:153:0;;9380:2:1;26332:153:0;;;9362:21:1;9419:2;9399:18;;;9392:30;9458:34;9438:18;;;9431:62;9529:27;9509:18;;;9502:55;9574:19;;26332:153:0;9178:421:1;26332:153:0;26494:28;26503:2;26507:7;26516:5;26494:8;:28::i;:::-;26211:317;26149:379;;:::o;43575:116::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43653:13:::1;:33:::0;43575:116::o;27436:142::-;27544:28;27554:4;27560:2;27564:7;27544:9;:28::i;43699:120::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43779:14:::1;:35:::0;43699:120::o;42852:118::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;37319:1:::1;37915:7;;:19;;37907:63;;;::::0;-1:-1:-1;;;37907:63:0;;10167:2:1;37907:63:0::1;::::0;::::1;10149:21:1::0;10206:2;10186:18;;;10179:30;10245:33;10225:18;;;10218:61;10296:18;;37907:63:0::1;9965:355:1::0;37907:63:0::1;37319:1;38048:7;:18:::0;42936:28:::2;42955:8:::0;42936:18:::2;:28::i;:::-;-1:-1:-1::0;37275:1:0::1;38227:7;:22:::0;42852:118::o;22527:744::-;22636:7;22671:16;22681:5;22671:9;:16::i;:::-;22663:5;:24;22655:71;;;;-1:-1:-1;;;22655:71:0;;10527:2:1;22655:71:0;;;10509:21:1;10566:2;10546:18;;;10539:30;10605:34;10585:18;;;10578:62;-1:-1:-1;;;10656:18:1;;;10649:32;10698:19;;22655:71:0;10325:398:1;22655:71:0;22733:22;22758:13;21972:12;;;21896:94;22758:13;22733:38;;22778:19;22808:25;22858:9;22853:350;22877:14;22873:1;:18;22853:350;;;22907:31;22941:14;;;:11;:14;;;;;;;;;22907:48;;;;;;;;;-1:-1:-1;;;;;22907:48:0;;;;;-1:-1:-1;;;22907:48:0;;;;;;;;;;;;22968:28;22964:89;;23029:14;;;-1:-1:-1;22964:89:0;23086:5;-1:-1:-1;;;;;23065:26:0;:17;-1:-1:-1;;;;;23065:26:0;;23061:135;;;23123:5;23108:11;:20;23104:59;;;-1:-1:-1;23150:1:0;-1:-1:-1;23143:8:0;;-1:-1:-1;;;23143:8:0;23104:59;23173:13;;;;:::i;:::-;;;;23061:135;-1:-1:-1;22893:3:0;;;;:::i;:::-;;;;22853:350;;;-1:-1:-1;23209:56:0;;-1:-1:-1;;;23209:56:0;;11070:2:1;23209:56:0;;;11052:21:1;11109:2;11089:18;;;11082:30;11148:34;11128:18;;;11121:62;-1:-1:-1;;;11199:18:1;;;11192:44;11253:19;;23209:56:0;10868:410:1;27641:157:0;27753:39;27770:4;27776:2;27780:7;27753:39;;;;;;;;;;;;:16;:39::i;22059:177::-;22126:7;22158:13;21972:12;;;21896:94;22158:13;22150:5;:21;22142:69;;;;-1:-1:-1;;;22142:69:0;;11485:2:1;22142:69:0;;;11467:21:1;11524:2;11504:18;;;11497:30;11563:34;11543:18;;;11536:62;-1:-1:-1;;;11614:18:1;;;11607:33;11657:19;;22142:69:0;11283:399:1;22142:69:0;-1:-1:-1;22225:5:0;22059:177::o;42559:100::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;42630:23:::1;:13;42646:7:::0;;42630:23:::1;:::i;24884:118::-:0;24948:7;24971:20;24983:7;24971:11;:20::i;:::-;:25;;24884:118;-1:-1:-1;;24884:118:0:o;23761:211::-;23825:7;-1:-1:-1;;;;;23849:19:0;;23841:75;;;;-1:-1:-1;;;23841:75:0;;11889:2:1;23841:75:0;;;11871:21:1;11928:2;11908:18;;;11901:30;11967:34;11947:18;;;11940:62;-1:-1:-1;;;12018:18:1;;;12011:41;12069:19;;23841:75:0;11687:407:1;23841:75:0;-1:-1:-1;;;;;;23938:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23938:27:0;;23761:211::o;39856:94::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;39921:21:::1;39939:1;39921:9;:21::i;:::-;39856:94::o:0;43330:109::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43400:18:::1;:34:::0;43330:109::o;43089:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;43210:20:0;43222:7;43210:11;:20::i;25216:98::-;25272:13;25301:7;25294:14;;;;;:::i;43447:120::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43527:14:::1;:35:::0;43447:120::o;42195:181::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;42296:13:::1;;42284:8;42268:13;21972:12:::0;;;21896:94;42268:13:::1;:24;;;;:::i;:::-;:41;;42260:72;;;::::0;-1:-1:-1;;;42260:72:0;;12434:2:1;42260:72:0::1;::::0;::::1;12416:21:1::0;12473:2;12453:18;;;12446:30;-1:-1:-1;;;12492:18:1;;;12485:48;12550:18;;42260:72:0::1;12232:342:1::0;42260:72:0::1;42339:31;42349:10;42361:8;42339:9;:31::i;:::-;42195:181:::0;:::o;26854:274::-;-1:-1:-1;;;;;26945:24:0;;17378:10;26945:24;;26937:63;;;;-1:-1:-1;;;26937:63:0;;12781:2:1;26937:63:0;;;12763:21:1;12820:2;12800:18;;;12793:30;12859:28;12839:18;;;12832:56;12905:18;;26937:63:0;12579:350:1;26937:63:0;17378:10;27009:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27009:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27009:53:0;;;;;;;;;;27074:48;;540:41:1;;;27009:42:0;;17378:10;27074:48;;513:18:1;27074:48:0;;;;;;;26854:274;;:::o;42665:181::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;37319:1:::1;37915:7;;:19;;37907:63;;;::::0;-1:-1:-1;;;37907:63:0;;10167:2:1;37907:63:0::1;::::0;::::1;10149:21:1::0;10206:2;10186:18;;;10179:30;10245:33;10225:18;;;10218:61;10296:18;;37907:63:0::1;9965:355:1::0;37907:63:0::1;37319:1;38048:7;:18:::0;42748:49:::2;::::0;42730:12:::2;::::0;42748:10:::2;::::0;42771:21:::2;::::0;42730:12;42748:49;42730:12;42748:49;42771:21;42748:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42729:68;;;42812:7;42804:36;;;::::0;-1:-1:-1;;;42804:36:0;;13346:2:1;42804:36:0::2;::::0;::::2;13328:21:1::0;13385:2;13365:18;;;13358:30;-1:-1:-1;;;13404:18:1;;;13397:46;13460:18;;42804:36:0::2;13144:340:1::0;27861:311:0;27998:28;28008:4;28014:2;28018:7;27998:9;:28::i;:::-;28049:48;28072:4;28078:2;28082:7;28091:5;28049:22;:48::i;:::-;28033:133;;;;-1:-1:-1;;;28033:133:0;;;;;;;:::i;:::-;27861:311;;;;:::o;25377:394::-;25475:13;25516:16;25524:7;28498:12;;-1:-1:-1;28488:22:0;28411:105;25516:16;25500:97;;;;-1:-1:-1;;;25500:97:0;;14111:2:1;25500:97:0;;;14093:21:1;14150:2;14130:18;;;14123:30;14189:34;14169:18;;;14162:62;-1:-1:-1;;;14240:18:1;;;14233:45;14295:19;;25500:97:0;13909:411:1;25500:97:0;25606:21;25630:10;:8;:10::i;:::-;25606:34;;25685:1;25667:7;25661:21;:25;:104;;;;;;;;;;;;;;;;;25722:7;25731:18;:7;:16;:18::i;:::-;25705:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25661:104;25647:118;25377:394;-1:-1:-1;;;25377:394:0:o;43827:104::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43899:10:::1;:27:::0;43827:104::o;43240:84::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43302:5:::1;:17:::0;43240:84::o;42976:107::-;43034:7;43057:20;43071:5;43057:13;:20::i;40105:192::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40194:22:0;::::1;40186:73;;;::::0;-1:-1:-1;;;40186:73:0;;15002:2:1;40186:73:0::1;::::0;::::1;14984:21:1::0;15041:2;15021:18;;;15014:30;15080:34;15060:18;;;15053:62;-1:-1:-1;;;15131:18:1;;;15124:36;15177:19;;40186:73:0::1;14800:402:1::0;40186:73:0::1;40270:19;40280:8;40270:9;:19::i;41238:351::-:0;41160:9;41173:10;41160:23;41152:66;;;;-1:-1:-1;;;41152:66:0;;15409:2:1;41152:66:0;;;15391:21:1;15448:2;15428:18;;;15421:30;15487:32;15467:18;;;15460:60;15537:18;;41152:66:0;15207:354:1;41152:66:0;41348:10:::1;;41336:8;:22;;41328:58;;;::::0;-1:-1:-1;;;41328:58:0;;15768:2:1;41328:58:0::1;::::0;::::1;15750:21:1::0;15807:2;15787:18;;;15780:30;15846:25;15826:18;;;15819:53;15889:18;;41328:58:0::1;15566:347:1::0;41328:58:0::1;41424:8;41416:5;;:16;;;;:::i;:::-;41403:9;:29;;41395:64;;;::::0;-1:-1:-1;;;41395:64:0;;8212:2:1;41395:64:0::1;::::0;::::1;8194:21:1::0;8251:2;8231:18;;;8224:30;-1:-1:-1;;;8270:18:1;;;8263:52;8332:18;;41395:64:0::1;8010:346:1::0;41395:64:0::1;41502:14;;41490:8;41474:13;21972:12:::0;;;21896:94;28522:98;28587:27;28597:2;28601:8;28587:27;;;;;;;;;;;;:9;:27::i;32098:172::-;32195:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32195:29:0;-1:-1:-1;;;;;32195:29:0;;;;;;;;;32236:28;;32195:24;;32236:28;;;;;;;32098:172;;;:::o;30463:1529::-;30560:35;30598:20;30610:7;30598:11;:20::i;:::-;30669:18;;30560:58;;-1:-1:-1;30627:22:0;;-1:-1:-1;;;;;30653:34:0;17378:10;-1:-1:-1;;;;;30653:34:0;;:81;;;-1:-1:-1;17378:10:0;30698:20;30710:7;30698:11;:20::i;:::-;-1:-1:-1;;;;;30698:36:0;;30653:81;:142;;;-1:-1:-1;30762:18:0;;30745:50;;17378:10;27191:186;:::i;30745:50::-;30627:169;;30821:17;30805:101;;;;-1:-1:-1;;;30805:101:0;;16120:2:1;30805:101:0;;;16102:21:1;16159:2;16139:18;;;16132:30;16198:34;16178:18;;;16171:62;-1:-1:-1;;;16249:18:1;;;16242:48;16307:19;;30805:101:0;15918:414:1;30805:101:0;30953:4;-1:-1:-1;;;;;30931:26:0;:13;:18;;;-1:-1:-1;;;;;30931:26:0;;30915:98;;;;-1:-1:-1;;;30915:98:0;;16539:2:1;30915:98:0;;;16521:21:1;16578:2;16558:18;;;16551:30;16617:34;16597:18;;;16590:62;-1:-1:-1;;;16668:18:1;;;16661:36;16714:19;;30915:98:0;16337:402:1;30915:98:0;-1:-1:-1;;;;;31028:16:0;;31020:66;;;;-1:-1:-1;;;31020:66:0;;16946:2:1;31020:66:0;;;16928:21:1;16985:2;16965:18;;;16958:30;17024:34;17004:18;;;16997:62;-1:-1:-1;;;17075:18:1;;;17068:35;17120:19;;31020:66:0;16744:401:1;31020:66:0;31195:49;31212:1;31216:7;31225:13;:18;;;31195:8;:49::i;:::-;-1:-1:-1;;;;;31253:18:0;;;;;;:12;:18;;;;;:31;;31283:1;;31253:18;:31;;31283:1;;-1:-1:-1;;;;;31253:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;31253:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31291:16:0;;-1:-1:-1;31291:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;31291:16:0;;:29;;-1:-1:-1;;31291:29:0;;:::i;:::-;;;-1:-1:-1;;;;;31291:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31350:43:0;;;;;;;;-1:-1:-1;;;;;31350:43:0;;;;;;31376:15;31350:43;;;;;;;;;-1:-1:-1;31327:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;31327:66:0;-1:-1:-1;;;;;;31327:66:0;;;;;;;;;;;31643:11;31339:7;-1:-1:-1;31643:11:0;:::i;:::-;31706:1;31665:24;;;:11;:24;;;;;:29;31621:33;;-1:-1:-1;;;;;;31665:29:0;31661:236;;31723:20;31731:11;28498:12;;-1:-1:-1;28488:22:0;28411:105;31723:20;31719:171;;;31783:97;;;;;;;;31810:18;;-1:-1:-1;;;;;31783:97:0;;;;;;31841:28;;;;31783:97;;;;;;;;;;-1:-1:-1;31756:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;31756:124:0;-1:-1:-1;;;;;;31756:124:0;;;;;;;;;;;;31719:171;31929:7;31925:2;-1:-1:-1;;;;;31910:27:0;31919:4;-1:-1:-1;;;;;31910:27:0;;;;;;;;;;;31944:42;30553:1439;;;30463:1529;;;:::o;32424:846::-;32514:24;;32553:12;32545:49;;;;-1:-1:-1;;;32545:49:0;;17861:2:1;32545:49:0;;;17843:21:1;17900:2;17880:18;;;17873:30;17939:26;17919:18;;;17912:54;17983:18;;32545:49:0;17659:348:1;32545:49:0;32601:16;32651:1;32620:28;32640:8;32620:17;:28;:::i;:::-;:32;;;;:::i;:::-;32601:51;;32691:1;32674:14;;:18;;;;:::i;:::-;32663:8;:29;32659:81;;;32731:1;32714:14;;:18;;;;:::i;:::-;32703:29;;32659:81;32855:17;32863:8;28498:12;;-1:-1:-1;28488:22:0;28411:105;32855:17;32847:68;;;;-1:-1:-1;;;32847:68:0;;18344:2:1;32847:68:0;;;18326:21:1;18383:2;18363:18;;;18356:30;18422:34;18402:18;;;18395:62;-1:-1:-1;;;18473:18:1;;;18466:36;18519:19;;32847:68:0;18142:402:1;32847:68:0;32939:17;32922:297;32963:8;32958:1;:13;32922:297;;33022:1;32991:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;32991:19:0;32987:225;;33037:31;33071:14;33083:1;33071:11;:14::i;:::-;33113:89;;;;;;;;33140:14;;-1:-1:-1;;;;;33113:89:0;;;;;;33167:24;;;;33113:89;;;;;;;;;;-1:-1:-1;33096:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;33096:106:0;-1:-1:-1;;;;;;33096:106:0;;;;;;;;;;;;-1:-1:-1;32987:225:0;32973:3;;;;:::i;:::-;;;;32922:297;;;-1:-1:-1;33252:12:0;:8;33263:1;33252:12;:::i;:::-;33225:24;:39;-1:-1:-1;;;32424:846:0:o;24224:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;24341:16:0;24349:7;28498:12;;-1:-1:-1;28488:22:0;28411:105;24341:16;24333:71;;;;-1:-1:-1;;;24333:71:0;;18751:2:1;24333:71:0;;;18733:21:1;18790:2;18770:18;;;18763:30;18829:34;18809:18;;;18802:62;-1:-1:-1;;;18880:18:1;;;18873:40;18930:19;;24333:71:0;18549:406:1;24333:71:0;24413:26;24461:12;;24450:7;:23;24446:93;;24515:12;;24505:22;;:7;:22;:::i;:::-;:26;;24530:1;24505:26;:::i;:::-;24484:47;;24446:93;24567:7;24547:212;24584:18;24576:4;:26;24547:212;;24621:31;24655:17;;;:11;:17;;;;;;;;;24621:51;;;;;;;;;-1:-1:-1;;;;;24621:51:0;;;;;-1:-1:-1;;;24621:51:0;;;;;;;;;;;;24685:28;24681:71;;24733:9;24224:606;-1:-1:-1;;;;24224:606:0:o;24681:71::-;-1:-1:-1;24604:6:0;;;;:::i;:::-;;;;24547:212;;;-1:-1:-1;24767:57:0;;-1:-1:-1;;;24767:57:0;;19303:2:1;24767:57:0;;;19285:21:1;19342:2;19322:18;;;19315:30;19381:34;19361:18;;;19354:62;-1:-1:-1;;;19432:18:1;;;19425:45;19487:19;;24767:57:0;19101:411:1;40305:173:0;40361:16;40380:6;;-1:-1:-1;;;;;40397:17:0;;;-1:-1:-1;;;;;;40397:17:0;;;;;;40430:40;;40380:6;;;;;;;40430:40;;40361:16;40430:40;40350:128;40305:173;:::o;33813:690::-;33950:4;-1:-1:-1;;;;;33967:13:0;;2738:20;2786:8;33963:535;;34006:72;;-1:-1:-1;;;34006:72:0;;-1:-1:-1;;;;;34006:36:0;;;;;:72;;17378:10;;34057:4;;34063:7;;34072:5;;34006:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34006:72:0;;;;;;;;-1:-1:-1;;34006:72:0;;;;;;;;;;;;:::i;:::-;;;33993:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34237:13:0;;34233:215;;34270:61;;-1:-1:-1;;;34270:61:0;;;;;;;:::i;34233:215::-;34416:6;34410:13;34401:6;34397:2;34393:15;34386:38;33993:464;-1:-1:-1;;;;;;34128:55:0;-1:-1:-1;;;34128:55:0;;-1:-1:-1;34121:62:0;;33963:535;-1:-1:-1;34486:4:0;33963:535;33813:690;;;;;;:::o;42445:108::-;42505:13;42534;42527:20;;;;;:::i;17767:723::-;17823:13;18044:10;18040:53;;-1:-1:-1;;18071:10:0;;;;;;;;;;;;-1:-1:-1;;;18071:10:0;;;;;17767:723::o;18040:53::-;18118:5;18103:12;18159:78;18166:9;;18159:78;;18192:8;;;;:::i;:::-;;-1:-1:-1;18215:10:0;;-1:-1:-1;18223:2:0;18215:10;;:::i;:::-;;;18159:78;;;18247:19;18279:6;18269:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18269:17:0;;18247:39;;18297:154;18304:10;;18297:154;;18331:11;18341:1;18331:11;;:::i;:::-;;-1:-1:-1;18400:10:0;18408:2;18400:5;:10;:::i;:::-;18387:24;;:2;:24;:::i;:::-;18374:39;;18357:6;18364;18357:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18357:56:0;;;;;;;;-1:-1:-1;18428:11:0;18437:2;18428:11;;:::i;:::-;;;18297:154;;23978:240;24039:7;-1:-1:-1;;;;;24071:19:0;;24055:102;;;;-1:-1:-1;;;24055:102:0;;20973:2:1;24055:102:0;;;20955:21:1;21012:2;20992:18;;;20985:30;21051:34;21031:18;;;21024:62;-1:-1:-1;;;21102:18:1;;;21095:47;21159:19;;24055:102:0;20771:413:1;24055:102:0;-1:-1:-1;;;;;;24179:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24179:32:0;;-1:-1:-1;;;;;24179:32:0;;23978:240::o;28959:1272::-;29087:12;;-1:-1:-1;;;;;29114:16:0;;29106:62;;;;-1:-1:-1;;;29106:62:0;;21391:2:1;29106:62:0;;;21373:21:1;21430:2;21410:18;;;21403:30;21469:34;21449:18;;;21442:62;-1:-1:-1;;;21520:18:1;;;21513:31;21561:19;;29106:62:0;21189:397:1;29106:62:0;29305:21;29313:12;28498;;-1:-1:-1;28488:22:0;28411:105;29305:21;29304:22;29296:64;;;;-1:-1:-1;;;29296:64:0;;21793:2:1;29296:64:0;;;21775:21:1;21832:2;21812:18;;;21805:30;21871:31;21851:18;;;21844:59;21920:18;;29296:64:0;21591:353:1;29296:64:0;29387:12;;29375:8;:24;;29367:71;;;;-1:-1:-1;;;29367:71:0;;22151:2:1;29367:71:0;;;22133:21:1;22190:2;22170:18;;;22163:30;22229:34;22209:18;;;22202:62;-1:-1:-1;;;22280:18:1;;;22273:32;22322:19;;29367:71:0;21949:398:1;29367:71:0;-1:-1:-1;;;;;29550:16:0;;29517:30;29550:16;;;:12;:16;;;;;;;;;29517:49;;;;;;;;;-1:-1:-1;;;;;29517:49:0;;;;;-1:-1:-1;;;29517:49:0;;;;;;;;;;;29592:119;;;;;;;;29612:19;;29517:49;;29592:119;;;29612:39;;29642:8;;29612:39;:::i;:::-;-1:-1:-1;;;;;29592:119:0;;;;;29695:8;29660:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;29592:119:0;;;;;;-1:-1:-1;;;;;29573:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;29573:138:0;;;;;;;;;;;;29746:43;;;;;;;;;;;29772:15;29746:43;;;;;;;;29718:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;29718:71:0;-1:-1:-1;;;;;;29718:71:0;;;;;;;;;;;;;;;;;;29730:12;;29842:281;29866:8;29862:1;:12;29842:281;;;29895:38;;29920:12;;-1:-1:-1;;;;;29895:38:0;;;29912:1;;29895:38;;29912:1;;29895:38;29960:59;29991:1;29995:2;29999:12;30013:5;29960:22;:59::i;:::-;29942:150;;;;-1:-1:-1;;;29942:150:0;;;;;;;:::i;:::-;30101:14;;;;:::i;:::-;;;;29876:3;;;;;:::i;:::-;;;;29842:281;;;-1:-1:-1;30131:12:0;:27;;;30165:60;27861:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;4046:347::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4211:29;4230:9;4211:29;:::i;:::-;4201:39;;4290:2;4279:9;4275:18;4262:32;4337:5;4330:13;4323:21;4316:5;4313:32;4303:60;;4359:1;4356;4349:12;4303:60;4382:5;4372:15;;;4046:347;;;;;:::o;4398:127::-;4459:10;4454:3;4450:20;4447:1;4440:31;4490:4;4487:1;4480:15;4514:4;4511:1;4504:15;4530:1138;4625:6;4633;4641;4649;4702:3;4690:9;4681:7;4677:23;4673:33;4670:53;;;4719:1;4716;4709:12;4670:53;4742:29;4761:9;4742:29;:::i;:::-;4732:39;;4790:38;4824:2;4813:9;4809:18;4790:38;:::i;:::-;4780:48;;4875:2;4864:9;4860:18;4847:32;4837:42;;4930:2;4919:9;4915:18;4902:32;4953:18;4994:2;4986:6;4983:14;4980:34;;;5010:1;5007;5000:12;4980:34;5048:6;5037:9;5033:22;5023:32;;5093:7;5086:4;5082:2;5078:13;5074:27;5064:55;;5115:1;5112;5105:12;5064:55;5151:2;5138:16;5173:2;5169;5166:10;5163:36;;;5179:18;;:::i;:::-;5254:2;5248:9;5222:2;5308:13;;-1:-1:-1;;5304:22:1;;;5328:2;5300:31;5296:40;5284:53;;;5352:18;;;5372:22;;;5349:46;5346:72;;;5398:18;;:::i;:::-;5438:10;5434:2;5427:22;5473:2;5465:6;5458:18;5513:7;5508:2;5503;5499;5495:11;5491:20;5488:33;5485:53;;;5534:1;5531;5524:12;5485:53;5590:2;5585;5581;5577:11;5572:2;5564:6;5560:15;5547:46;5635:1;5630:2;5625;5617:6;5613:15;5609:24;5602:35;5656:6;5646:16;;;;;;;4530:1138;;;;;;;:::o;5673:260::-;5741:6;5749;5802:2;5790:9;5781:7;5777:23;5773:32;5770:52;;;5818:1;5815;5808:12;5770:52;5841:29;5860:9;5841:29;:::i;:::-;5831:39;;5889:38;5923:2;5912:9;5908:18;5889:38;:::i;:::-;5879:48;;5673:260;;;;;:::o;5938:380::-;6017:1;6013:12;;;;6060;;;6081:61;;6135:4;6127:6;6123:17;6113:27;;6081:61;6188:2;6180:6;6177:14;6157:18;6154:38;6151:161;;;6234:10;6229:3;6225:20;6222:1;6215:31;6269:4;6266:1;6259:15;6297:4;6294:1;6287:15;6151:161;;5938:380;;;:::o;7705:127::-;7766:10;7761:3;7757:20;7754:1;7747:31;7797:4;7794:1;7787:15;7821:4;7818:1;7811:15;7837:168;7877:7;7943:1;7939;7935:6;7931:14;7928:1;7925:21;7920:1;7913:9;7906:17;7902:45;7899:71;;;7950:18;;:::i;:::-;-1:-1:-1;7990:9:1;;7837:168::o;9604:356::-;9806:2;9788:21;;;9825:18;;;9818:30;9884:34;9879:2;9864:18;;9857:62;9951:2;9936:18;;9604:356::o;10728:135::-;10767:3;-1:-1:-1;;10788:17:1;;10785:43;;;10808:18;;:::i;:::-;-1:-1:-1;10855:1:1;10844:13;;10728:135::o;12099:128::-;12139:3;12170:1;12166:6;12163:1;12160:13;12157:39;;;12176:18;;:::i;:::-;-1:-1:-1;12212:9:1;;12099:128::o;13489:415::-;13691:2;13673:21;;;13730:2;13710:18;;;13703:30;13769:34;13764:2;13749:18;;13742:62;-1:-1:-1;;;13835:2:1;13820:18;;13813:49;13894:3;13879:19;;13489:415::o;14325:470::-;14504:3;14542:6;14536:13;14558:53;14604:6;14599:3;14592:4;14584:6;14580:17;14558:53;:::i;:::-;14674:13;;14633:16;;;;14696:57;14674:13;14633:16;14730:4;14718:17;;14696:57;:::i;:::-;14769:20;;14325:470;-1:-1:-1;;;;14325:470:1:o;17150:246::-;17190:4;-1:-1:-1;;;;;17303:10:1;;;;17273;;17325:12;;;17322:38;;;17340:18;;:::i;:::-;17377:13;;17150:246;-1:-1:-1;;;17150:246:1:o;17401:253::-;17441:3;-1:-1:-1;;;;;17530:2:1;17527:1;17523:10;17560:2;17557:1;17553:10;17591:3;17587:2;17583:12;17578:3;17575:21;17572:47;;;17599:18;;:::i;18012:125::-;18052:4;18080:1;18077;18074:8;18071:34;;;18085:18;;:::i;:::-;-1:-1:-1;18122:9:1;;18012:125::o;18960:136::-;18999:3;19027:5;19017:39;;19036:18;;:::i;:::-;-1:-1:-1;;;19072:18:1;;18960:136::o;19517:489::-;-1:-1:-1;;;;;19786:15:1;;;19768:34;;19838:15;;19833:2;19818:18;;19811:43;19885:2;19870:18;;19863:34;;;19933:3;19928:2;19913:18;;19906:31;;;19711:4;;19954:46;;19980:19;;19972:6;19954:46;:::i;:::-;19946:54;19517:489;-1:-1:-1;;;;;;19517:489:1:o;20011:249::-;20080:6;20133:2;20121:9;20112:7;20108:23;20104:32;20101:52;;;20149:1;20146;20139:12;20101:52;20181:9;20175:16;20200:30;20224:5;20200:30;:::i;20265:127::-;20326:10;20321:3;20317:20;20314:1;20307:31;20357:4;20354:1;20347:15;20381:4;20378:1;20371:15;20397:120;20437:1;20463;20453:35;;20468:18;;:::i;:::-;-1:-1:-1;20502:9:1;;20397:120::o;20522:112::-;20554:1;20580;20570:35;;20585:18;;:::i;:::-;-1:-1:-1;20619:9:1;;20522:112::o;20639:127::-;20700:10;20695:3;20691:20;20688:1;20681:31;20731:4;20728:1;20721:15;20755:4;20752:1;20745:15

Swarm Source

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