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

Token

Haroburu (HAROBURU)
 

Overview

Max Total Supply

1,950 HAROBURU

Holders

331

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
unclekev.eth
Balance
2 HAROBURU
0xEbE5E6BB9dD6Cc1A4fEF88B727926B09Cbb78Ec2
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:
Haroburu

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-06
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/utils/ERC721Holder.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: Haroburu/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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


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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: Haroburu/Haroburu.sol


/*
*/
pragma solidity ^0.8.0;





contract Haroburu is ERC721Holder,ERC721A, Ownable {
    IERC721 public nft;
    uint256 public immutable maxPerAddressDuringMint;

    string public PROVENANCE;
    bool public saleIsActive = false;
    string private _baseURIextended;

    bool public isAllowListActive = false;
    uint256 public constant MAX_PUBLIC_MINT = 2;
    uint256 public constant PRICE_PER_TOKEN = 0.048 ether;
    uint256 public constant PUBLIC_PRICE_PER_TOKEN = 0.058 ether;

    mapping(address => uint8) private _allowList;
    mapping(address => uint8) private _allowList2;
    mapping(address => uint8) private _allowList3;
    mapping(address => uint8) private _allowList4;

    constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
    ) ERC721A("Haroburu", "HAROBURU", maxBatchSize_, collectionSize_) {
        maxPerAddressDuringMint = maxBatchSize_;
        nft = IERC721(this);
    
    }

    function setIsAllowListActive(bool _isAllowListActive) external onlyOwner {
        isAllowListActive = _isAllowListActive;
    }

    function setAllowList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList[addresses[i]] = numAllowedToMint;
        }
    }

    function setAllowList2(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList2[addresses[i]] = numAllowedToMint;
        }
    }

    function setAllowList3(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList3[addresses[i]] = numAllowedToMint;
        }
    }

    function setAllowList4(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList4[addresses[i]] = numAllowedToMint;
        }
    }

    function numAvailableToMintPool(address addr) external view returns (uint8) {
        return _allowList[addr];
    }

    function numAvailableToMintPool2(address addr) external view returns (uint8) {
        return _allowList2[addr];
    }
    
    function numAvailableToMintPool3(address addr) external view returns (uint8) {
        return _allowList3[addr];
    }
    function numAvailableToMintPool4(address addr) external view returns (uint8) {
        return _allowList4[addr];
    }

    function mintAllowList(uint8 numberOfTokens) external payable {
        require(isAllowListActive, "Allow list is not active");
        require(numberOfTokens <= _allowList[msg.sender], "Exceeded max available to purchase");
        require(totalSupply() + numberOfTokens <= collectionSize, "Purchase would exceed max tokens");
        require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _allowList[msg.sender] -= numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);
    }

    function mintAllowList2(uint8 numberOfTokens) external payable {
        require(isAllowListActive, "Allow list is not active");
        require(numberOfTokens <= _allowList2[msg.sender], "Exceeded max available to purchase");
        require(totalSupply() + numberOfTokens <= collectionSize, "Purchase would exceed max tokens");
        require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _allowList2[msg.sender] -= numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);
    }

    function mintAllowList3(uint8 numberOfTokens) external payable {
        require(isAllowListActive, "Allow list is not active");
        require(numberOfTokens <= _allowList3[msg.sender], "Exceeded max available to purchase");
        require(totalSupply() + numberOfTokens <= collectionSize, "Purchase would exceed max tokens");
        require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _allowList3[msg.sender] -= numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);
    }

    function mintAllowList4(uint8 numberOfTokens) external payable {
        require(isAllowListActive, "Allow list is not active");
        require(numberOfTokens <= _allowList4[msg.sender], "Exceeded max available to purchase");
        require(totalSupply() + numberOfTokens <= collectionSize, "Purchase would exceed max tokens");
        require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _allowList4[msg.sender] -= numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }

    function reserve(uint256 numberOfTokens, address to) public onlyOwner {
      _safeMint(to, numberOfTokens);
    }

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function mint(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint tokens");
        require(numberOfTokens <= MAX_PUBLIC_MINT, "Exceeded max token purchase");
        require(totalSupply() + numberOfTokens <= collectionSize, "Purchase would exceed max tokens");
        require(PUBLIC_PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _safeMint(msg.sender, numberOfTokens);
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

        /**
    @dev tokenId to staking start time (0 = not staking).
     */
    mapping(uint256 => uint256) private stakingStarted;

    /**
    @dev Cumulative per-token staking, excluding the current period.
     */
    mapping(uint256 => uint256) private stakingTotal;


    function stakingPeriod(uint256 tokenId)
        external
        view
        returns (
            bool staking,
            uint256 current,
            uint256 total
        )
    {
        uint256 start = stakingStarted[tokenId];
        if (start != 0) {
            staking = true;
            current = block.timestamp - start;
        }
        total = current + stakingTotal[tokenId];
    }

    /**
    @dev MUST only be modified by safeTransferWhileStaking(); if set to 2 then
    the _beforeTokenTransfer() block while staking is disabled.
     */
    uint256 private stakingTransfer = 1;

    /**
    @notice Transfer a token between addresses while the Moonbird is minting,
    thus not resetting the staking period.
     */
    function safeTransferWhileStaking(
        address from,
        address to,
        uint256 tokenId
    ) external {
        require(ownerOf(tokenId) == _msgSender(), "Haroburu: Only owner");
        stakingTransfer = 2;
        safeTransferFrom(from, to, tokenId);
        stakingTransfer = 1;
    }

    /**
    @dev Block transfers while staking.
     */
    function _beforeTokenTransfers(
        address,
        address,
        uint256 startTokenId,
        uint256 quantity
    ) internal view override {
        uint256 tokenId = startTokenId;
        for (uint256 end = tokenId + quantity; tokenId < end; ++tokenId) {
            require(
                stakingStarted[tokenId] == 0 || stakingTransfer == 2,
                "Haroburus: staking"
            );
        }
    }

    /**
    @dev Emitted when a Haroburu begins staking.
     */
    event Staked(uint256 indexed tokenId);

    /**
    @dev Emitted when a Haroburu stops staking; either through standard means or
    by expulsion.
     */
    event Unstaked(uint256 indexed tokenId);

    /**
    @dev Emitted when a Haroburu is expelled from the staked.
     */
    event Expelled(uint256 indexed tokenId);

    /**
    @notice Whether staking is currently allowed.
    @dev If false then staking is blocked, but staking is always allowed.
     */
    bool public stakingOpen = false;

    /**
    @notice Turn the `stakingOpen` flag.
     */
    function setStakingOpen(bool open) external onlyOwner {
        stakingOpen = open;
    }

    /**
    @notice Changes the Haroburu's staking status.
    */
    function staking(uint256 tokenId) public
    {
        uint256 start = stakingStarted[tokenId];
        if (start == 0) {
            require(stakingOpen, "Haroburus: staking closed");
            stakingStarted[tokenId] = block.timestamp;
            emit Staked(tokenId);
        } else {
            stakingTotal[tokenId] += block.timestamp - start;
            stakingStarted[tokenId] = 0;
            emit Unstaked(tokenId);
        }
    }

    /**
    @notice Changes the Haroburus' staking statuss (what's the plural of status?
    statii? statuses? status? The plural of sheep is sheep; maybe it's also the
    plural of status).
    @dev Changes the Haroburus' staking sheep (see @notice).
     */
    function staking(uint256[] calldata tokenIds) external {
        uint256 n = tokenIds.length;
        for (uint256 i = 0; i < n; ++i) {
            staking(tokenIds[i]);
        }
    }

    function expelFromStake(uint256 tokenId) external {
        require(ownerOf(tokenId) == _msgSender(), "Haroburu: Only owner");
        require(stakingStarted[tokenId] != 0, "Haroburus: not staked");
        stakingTotal[tokenId] += block.timestamp - stakingStarted[tokenId];
        stakingStarted[tokenId] = 0;
        emit Unstaked(tokenId);
        emit Expelled(tokenId);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Expelled","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":"uint256","name":"tokenId","type":"uint256"}],"name":"Staked","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unstaked","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"expelFromStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAllowList2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAllowList3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAllowList4","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nft","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMintPool","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMintPool2","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMintPool3","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMintPool4","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferWhileStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"open","type":"bool"}],"name":"setStakingOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"staking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"staking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"stakingPeriod","outputs":[{"internalType":"bool","name":"staking","type":"bool"},{"internalType":"uint256","name":"current","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526000808055600755600b805460ff19908116909155600d80548216905560016014556015805490911690553480156200003c57600080fd5b50604051620038d9380380620038d98339810160408190526200005f9162000215565b604051806040016040528060088152602001674861726f6275727560c01b815250604051806040016040528060088152602001674841524f4255525560c01b815250838360008111620001105760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001725760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000107565b6001620001808582620002df565b5060026200018f8482620002df565b5060a09190915260805250620001a7905033620001c3565b5060c052600980546001600160a01b03191630179055620003ab565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080604083850312156200022957600080fd5b505080516020909101519092909150565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026557607f821691505b6020821081036200028657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002da57600081815260208120601f850160051c81016020861015620002b55750805b601f850160051c820191505b81811015620002d657828155600101620002c1565b5050505b505050565b81516001600160401b03811115620002fb57620002fb6200023a565b62000313816200030c845462000250565b846200028c565b602080601f8311600181146200034b5760008415620003325750858301515b600019600386901b1c1916600185901b178555620002d6565b600085815260208120601f198616915b828110156200037c578886015182559484019460019091019084016200035b565b50858210156200039b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c0516134d462000405600039600061083e0152600081816124b0015281816124da01526128f3015260008181610dea015281816118d801528181611a8101528181611dab0152611f4601526134d46000f3fe6080604052600436106103505760003560e01c80636aa2372c116101c6578063a22cb465116100f7578063d896eedf11610095578063eb8d24441161006f578063eb8d244414610a41578063f2fde38b14610a5b578063fc96babf14610a7b578063ffe630b514610a8e57600080fd5b8063d896eedf146109c5578063ddff5b1c146109e5578063e985e9c5146109f857600080fd5b8063c1027c98116100d1578063c1027c9814610932578063c4e370951461096f578063c87b56dd1461098f578063d7224ba0146109af57600080fd5b8063a22cb465146108df578063b76c53e9146108ff578063b88d4fde1461091257600080fd5b80638295784d116101645780638d22441f1161013e5780638d22441f146108605780638da5cb5b1461089957806395d89b41146108b7578063a0712d68146108cc57600080fd5b80638295784d146107f1578063833b9499146108115780638bc35c2f1461082c57600080fd5b8063715018a6116101a0578063715018a61461077c578063718bc4af14610791578063759b5c3c146107b157806379aef52d146107d157600080fd5b80636aa2372c1461071c5780636b6e6b4e1461073c57806370a082311461075c57600080fd5b806329fc6bae116102a05780634f6ccce71161023e5780636352211e116102185780636352211e146106995780636373a6b1146106b957806365f13097146106ce578063661e2cdb146106e357600080fd5b80634f6ccce71461063957806355f804b314610659578063564892dc1461067957600080fd5b8063387602981161027a57806338760298146105ca5780633ccfd60b146105e457806342842e0e146105f957806347ccca021461061957600080fd5b806329fc6bae146105755780632c67d82f1461058f5780632f745c59146105aa57600080fd5b8063097e57f21161030d578063150b7a02116102e7578063150b7a02146104dd57806318160ddd146105165780631dbb2a221461053557806323b872dd1461055557600080fd5b8063097e57f2146104715780630cac07b5146104aa57806314b6e5e0146104bd57600080fd5b806301ffc9a71461035557806303339bcb1461038a57806306fdde03146103ac57806307d0f0aa146103ce578063081812fc14610419578063095ea7b314610451575b600080fd5b34801561036157600080fd5b50610375610370366004612bb9565b610aae565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004612bf2565b610b1b565b005b3480156103b857600080fd5b506103c1610b5c565b6040516103819190612c76565b3480156103da57600080fd5b506104076103e9366004612c89565b6001600160a01b03166000908152600e602052604090205460ff1690565b60405160ff9091168152602001610381565b34801561042557600080fd5b50610439610434366004612ca4565b610bee565b6040516001600160a01b039091168152602001610381565b34801561045d57600080fd5b506103aa61046c366004612cbd565b610c79565b34801561047d57600080fd5b5061040761048c366004612c89565b6001600160a01b031660009081526010602052604090205460ff1690565b6103aa6104b8366004612cf8565b610d90565b3480156104c957600080fd5b506103aa6104d8366004612d5e565b610ebb565b3480156104e957600080fd5b506104fd6104f8366004612e2a565b610efe565b6040516001600160e01b03199091168152602001610381565b34801561052257600080fd5b506000545b604051908152602001610381565b34801561054157600080fd5b506103aa610550366004612ca4565b610f0f565b34801561056157600080fd5b506103aa610570366004612ea5565b61101d565b34801561058157600080fd5b50600d546103759060ff1681565b34801561059b57600080fd5b5061052766ce0eb154f9000081565b3480156105b657600080fd5b506105276105c5366004612cbd565b611028565b3480156105d657600080fd5b506015546103759060ff1681565b3480156105f057600080fd5b506103aa611193565b34801561060557600080fd5b506103aa610614366004612ea5565b6111ec565b34801561062557600080fd5b50600954610439906001600160a01b031681565b34801561064557600080fd5b50610527610654366004612ca4565b611207565b34801561066557600080fd5b506103aa610674366004612ee1565b611269565b34801561068557600080fd5b506103aa610694366004612f39565b61129f565b3480156106a557600080fd5b506104396106b4366004612ca4565b6112dc565b3480156106c557600080fd5b506103c16112ee565b3480156106da57600080fd5b50610527600281565b3480156106ef57600080fd5b506104076106fe366004612c89565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561072857600080fd5b506103aa610737366004612f54565b61137c565b34801561074857600080fd5b506103aa610757366004612ca4565b61141a565b34801561076857600080fd5b50610527610777366004612c89565b611568565b34801561078857600080fd5b506103aa6115f9565b34801561079d57600080fd5b506103aa6107ac366004612f39565b61162f565b3480156107bd57600080fd5b506103aa6107cc366004612f54565b61166c565b3480156107dd57600080fd5b506103aa6107ec366004612ea5565b61170a565b3480156107fd57600080fd5b506103aa61080c366004612f54565b61177b565b34801561081d57600080fd5b5061052766aa87bee538000081565b34801561083857600080fd5b506105277f000000000000000000000000000000000000000000000000000000000000000081565b34801561086c57600080fd5b5061040761087b366004612c89565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156108a557600080fd5b506008546001600160a01b0316610439565b3480156108c357600080fd5b506103c1611819565b6103aa6108da366004612ca4565b611828565b3480156108eb57600080fd5b506103aa6108fa366004612fa7565b611963565b6103aa61090d366004612cf8565b611a27565b34801561091e57600080fd5b506103aa61092d366004612e2a565b611b2a565b34801561093e57600080fd5b5061095261094d366004612ca4565b611b5d565b604080519315158452602084019290925290820152606001610381565b34801561097b57600080fd5b506103aa61098a366004612f39565b611ba9565b34801561099b57600080fd5b506103c16109aa366004612ca4565b611be6565b3480156109bb57600080fd5b5061052760075481565b3480156109d157600080fd5b506103aa6109e0366004612f54565b611cb3565b6103aa6109f3366004612cf8565b611d51565b348015610a0457600080fd5b50610375610a13366004612fd1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a4d57600080fd5b50600b546103759060ff1681565b348015610a6757600080fd5b506103aa610a76366004612c89565b611e54565b6103aa610a89366004612cf8565b611eec565b348015610a9a57600080fd5b506103aa610aa9366004612ee1565b611fef565b60006001600160e01b031982166380ac58cd60e01b1480610adf57506001600160e01b03198216635b5e139f60e01b145b80610afa57506001600160e01b0319821663780e9d6360e01b145b80610b1557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b4e5760405162461bcd60e51b8152600401610b4590612ffb565b60405180910390fd5b610b588183612025565b5050565b606060018054610b6b90613030565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9790613030565b8015610be45780601f10610bb957610100808354040283529160200191610be4565b820191906000526020600020905b815481529060010190602001808311610bc757829003601f168201915b5050505050905090565b6000610bfb826000541190565b610c5d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b45565b506000908152600560205260409020546001600160a01b031690565b6000610c84826112dc565b9050806001600160a01b0316836001600160a01b031603610cf25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b45565b336001600160a01b0382161480610d0e5750610d0e8133610a13565b610d805760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b45565b610d8b83838361203f565b505050565b600d5460ff16610db25760405162461bcd60e51b8152600401610b459061306a565b336000908152600f602052604090205460ff9081169082161115610de85760405162461bcd60e51b8152600401610b45906130a1565b7f00000000000000000000000000000000000000000000000000000000000000008160ff16610e1660005490565b610e2091906130f9565b1115610e3e5760405162461bcd60e51b8152600401610b4590613111565b34610e5360ff831666aa87bee5380000613146565b1115610e715760405162461bcd60e51b8152600401610b4590613165565b336000908152600f602052604081208054839290610e9390849060ff1661319c565b92506101000a81548160ff021916908360ff160217905550610eb8338260ff16612025565b50565b8060005b81811015610ef857610ee8848483818110610edc57610edc6131bf565b90506020020135610f0f565b610ef1816131d5565b9050610ebf565b50505050565b630a85bd0160e11b5b949350505050565b60008181526012602052604081205490819003610fb45760155460ff16610f785760405162461bcd60e51b815260206004820152601960248201527f4861726f62757275733a207374616b696e6720636c6f736564000000000000006044820152606401610b45565b6000828152601260205260408082204290555183917feebbaa86c348cb664e392b180fd0ff2e1998af9fa833ef69a778cb0b42d3ca2791a25050565b610fbe81426131ee565b60008381526013602052604081208054909190610fdc9084906130f9565b90915550506000828152601260205260408082208290555183917f11725367022c3ff288940f4b5473aa61c2da6a24af7363a1128ee2401e8983b291a25050565b610d8b83838361209b565b600061103383611568565b821061108c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b45565b600080549080805b83811015611133576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156110e657805192505b876001600160a01b0316836001600160a01b0316036111205786840361111257509350610b1592505050565b8361111c816131d5565b9450505b508061112b816131d5565b915050611094565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b45565b6008546001600160a01b031633146111bd5760405162461bcd60e51b8152600401610b4590612ffb565b6040514790339082156108fc029083906000818181858888f19350505050158015610b58573d6000803e3d6000fd5b610d8b83838360405180602001604052806000815250611b2a565b6000805482106112655760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b45565b5090565b6008546001600160a01b031633146112935760405162461bcd60e51b8152600401610b4590612ffb565b600c610b58828261324b565b6008546001600160a01b031633146112c95760405162461bcd60e51b8152600401610b4590612ffb565b6015805460ff1916911515919091179055565b60006112e78261242e565b5192915050565b600a80546112fb90613030565b80601f016020809104026020016040519081016040528092919081815260200182805461132790613030565b80156113745780601f1061134957610100808354040283529160200191611374565b820191906000526020600020905b81548152906001019060200180831161135757829003601f168201915b505050505081565b6008546001600160a01b031633146113a65760405162461bcd60e51b8152600401610b4590612ffb565b60005b82811015610ef85781601060008686858181106113c8576113c86131bf565b90506020020160208101906113dd9190612c89565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580611412816131d5565b9150506113a9565b33611424826112dc565b6001600160a01b0316146114715760405162461bcd60e51b81526020600482015260146024820152732430b937b13ab93a9d1027b7363c9037bbb732b960611b6044820152606401610b45565b60008181526012602052604081205490036114c65760405162461bcd60e51b815260206004820152601560248201527412185c9bd89d5c9d5cce881b9bdd081cdd185ad959605a1b6044820152606401610b45565b6000818152601260205260409020546114df90426131ee565b600082815260136020526040812080549091906114fd9084906130f9565b90915550506000818152601260205260408082208290555182917f11725367022c3ff288940f4b5473aa61c2da6a24af7363a1128ee2401e8983b291a260405181907f3ebee94e74ea24f711b5876dca724062e18b7b37b6883e686a92f093248a4fcf90600090a250565b60006001600160a01b0382166115d45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b45565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146116235760405162461bcd60e51b8152600401610b4590612ffb565b61162d60006125d7565b565b6008546001600160a01b031633146116595760405162461bcd60e51b8152600401610b4590612ffb565b600d805460ff1916911515919091179055565b6008546001600160a01b031633146116965760405162461bcd60e51b8152600401610b4590612ffb565b60005b82811015610ef85781601160008686858181106116b8576116b86131bf565b90506020020160208101906116cd9190612c89565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580611702816131d5565b915050611699565b33611714826112dc565b6001600160a01b0316146117615760405162461bcd60e51b81526020600482015260146024820152732430b937b13ab93a9d1027b7363c9037bbb732b960611b6044820152606401610b45565b60026014556117718383836111ec565b5050600160145550565b6008546001600160a01b031633146117a55760405162461bcd60e51b8152600401610b4590612ffb565b60005b82811015610ef85781600e60008686858181106117c7576117c76131bf565b90506020020160208101906117dc9190612c89565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580611811816131d5565b9150506117a8565b606060028054610b6b90613030565b600b5460ff166118855760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b6064820152608401610b45565b60028111156118d65760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e20707572636861736500000000006044820152606401610b45565b7f00000000000000000000000000000000000000000000000000000000000000008161190160005490565b61190b91906130f9565b11156119295760405162461bcd60e51b8152600401610b4590613111565b3461193b8266ce0eb154f90000613146565b11156119595760405162461bcd60e51b8152600401610b4590613165565b610eb83382612025565b336001600160a01b038316036119bb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b45565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d5460ff16611a495760405162461bcd60e51b8152600401610b459061306a565b3360009081526010602052604090205460ff9081169082161115611a7f5760405162461bcd60e51b8152600401610b45906130a1565b7f00000000000000000000000000000000000000000000000000000000000000008160ff16611aad60005490565b611ab791906130f9565b1115611ad55760405162461bcd60e51b8152600401610b4590613111565b34611aea60ff831666aa87bee5380000613146565b1115611b085760405162461bcd60e51b8152600401610b4590613165565b3360009081526010602052604081208054839290610e9390849060ff1661319c565b611b3584848461209b565b611b4184848484612629565b610ef85760405162461bcd60e51b8152600401610b459061330a565b600081815260126020526040812054819081908015611b875760019350611b8481426131ee565b92505b600085815260136020526040902054611ba090846130f9565b93959294505050565b6008546001600160a01b03163314611bd35760405162461bcd60e51b8152600401610b4590612ffb565b600b805460ff1916911515919091179055565b6060611bf3826000541190565b611c575760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b45565b6000611c61612727565b90506000815111611c815760405180602001604052806000815250611cac565b80611c8b84612736565b604051602001611c9c92919061335d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611cdd5760405162461bcd60e51b8152600401610b4590612ffb565b60005b82811015610ef85781600f6000868685818110611cff57611cff6131bf565b9050602002016020810190611d149190612c89565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580611d49816131d5565b915050611ce0565b600d5460ff16611d735760405162461bcd60e51b8152600401610b459061306a565b336000908152600e602052604090205460ff9081169082161115611da95760405162461bcd60e51b8152600401610b45906130a1565b7f00000000000000000000000000000000000000000000000000000000000000008160ff16611dd760005490565b611de191906130f9565b1115611dff5760405162461bcd60e51b8152600401610b4590613111565b34611e1460ff831666aa87bee5380000613146565b1115611e325760405162461bcd60e51b8152600401610b4590613165565b336000908152600e602052604081208054839290610e9390849060ff1661319c565b6008546001600160a01b03163314611e7e5760405162461bcd60e51b8152600401610b4590612ffb565b6001600160a01b038116611ee35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b45565b610eb8816125d7565b600d5460ff16611f0e5760405162461bcd60e51b8152600401610b459061306a565b3360009081526011602052604090205460ff9081169082161115611f445760405162461bcd60e51b8152600401610b45906130a1565b7f00000000000000000000000000000000000000000000000000000000000000008160ff16611f7260005490565b611f7c91906130f9565b1115611f9a5760405162461bcd60e51b8152600401610b4590613111565b34611faf60ff831666aa87bee5380000613146565b1115611fcd5760405162461bcd60e51b8152600401610b4590613165565b3360009081526011602052604081208054839290610e9390849060ff1661319c565b6008546001600160a01b031633146120195760405162461bcd60e51b8152600401610b4590612ffb565b600a610b58828261324b565b610b58828260405180602001604052806000815250612836565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006120a68261242e565b80519091506000906001600160a01b0316336001600160a01b031614806120dd5750336120d284610bee565b6001600160a01b0316145b806120ef575081516120ef9033610a13565b9050806121595760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b45565b846001600160a01b031682600001516001600160a01b0316146121cd5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b45565b6001600160a01b0384166122315760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b45565b61223e8585856001612b1d565b61224e600084846000015161203f565b6001600160a01b03851660009081526004602052604081208054600192906122809084906001600160801b031661339c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926122cc918591166133c4565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556123538460016130f9565b6000818152600360205260409020549091506001600160a01b03166123e45761237d816000541190565b156123e45760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261244d826000541190565b6124ac5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b45565b60007f0000000000000000000000000000000000000000000000000000000000000000831061250d576124ff7f0000000000000000000000000000000000000000000000000000000000000000846131ee565b61250a9060016130f9565b90505b825b818110612576576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561256357949350505050565b508061256e816133ef565b91505061250f565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b45565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561271f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061266d903390899088908890600401613406565b6020604051808303816000875af19250505080156126a8575060408051601f3d908101601f191682019092526126a591810190613443565b60015b612705573d8080156126d6576040519150601f19603f3d011682016040523d82523d6000602084013e6126db565b606091505b5080516000036126fd5760405162461bcd60e51b8152600401610b459061330a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f07565b506001610f07565b6060600c8054610b6b90613030565b60608160000361275d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156127875780612771816131d5565b91506127809050600a83613476565b9150612761565b6000816001600160401b038111156127a1576127a1612d9f565b6040519080825280601f01601f1916602001820160405280156127cb576020820181803683370190505b5090505b8415610f07576127e06001836131ee565b91506127ed600a8661348a565b6127f89060306130f9565b60f81b81838151811061280d5761280d6131bf565b60200101906001600160f81b031916908160001a90535061282f600a86613476565b94506127cf565b6000546001600160a01b0384166128995760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b45565b6128a4816000541190565b156128f15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b45565b7f000000000000000000000000000000000000000000000000000000000000000083111561296c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b45565b6129796000858386612b1d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906129d59087906133c4565b6001600160801b031681526020018583602001516129f391906133c4565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612b125760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612ad66000888488612629565b612af25760405162461bcd60e51b8152600401610b459061330a565b81612afc816131d5565b9250508080612b0a906131d5565b915050612a89565b506000819055612426565b816000612b2a83836130f9565b90505b80821015612426576000828152601260205260409020541580612b5257506014546002145b612b935760405162461bcd60e51b81526020600482015260126024820152714861726f62757275733a207374616b696e6760701b6044820152606401610b45565b612b9c826131d5565b9150612b2d565b6001600160e01b031981168114610eb857600080fd5b600060208284031215612bcb57600080fd5b8135611cac81612ba3565b80356001600160a01b0381168114612bed57600080fd5b919050565b60008060408385031215612c0557600080fd5b82359150612c1560208401612bd6565b90509250929050565b60005b83811015612c39578181015183820152602001612c21565b83811115610ef85750506000910152565b60008151808452612c62816020860160208601612c1e565b601f01601f19169290920160200192915050565b602081526000611cac6020830184612c4a565b600060208284031215612c9b57600080fd5b611cac82612bd6565b600060208284031215612cb657600080fd5b5035919050565b60008060408385031215612cd057600080fd5b612cd983612bd6565b946020939093013593505050565b803560ff81168114612bed57600080fd5b600060208284031215612d0a57600080fd5b611cac82612ce7565b60008083601f840112612d2557600080fd5b5081356001600160401b03811115612d3c57600080fd5b6020830191508360208260051b8501011115612d5757600080fd5b9250929050565b60008060208385031215612d7157600080fd5b82356001600160401b03811115612d8757600080fd5b612d9385828601612d13565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612dcf57612dcf612d9f565b604051601f8501601f19908116603f01168101908282118183101715612df757612df7612d9f565b81604052809350858152868686011115612e1057600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612e4057600080fd5b612e4985612bd6565b9350612e5760208601612bd6565b92506040850135915060608501356001600160401b03811115612e7957600080fd5b8501601f81018713612e8a57600080fd5b612e9987823560208401612db5565b91505092959194509250565b600080600060608486031215612eba57600080fd5b612ec384612bd6565b9250612ed160208501612bd6565b9150604084013590509250925092565b600060208284031215612ef357600080fd5b81356001600160401b03811115612f0957600080fd5b8201601f81018413612f1a57600080fd5b610f0784823560208401612db5565b80358015158114612bed57600080fd5b600060208284031215612f4b57600080fd5b611cac82612f29565b600080600060408486031215612f6957600080fd5b83356001600160401b03811115612f7f57600080fd5b612f8b86828701612d13565b9094509250612f9e905060208501612ce7565b90509250925092565b60008060408385031215612fba57600080fd5b612fc383612bd6565b9150612c1560208401612f29565b60008060408385031215612fe457600080fd5b612fed83612bd6565b9150612c1560208401612bd6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061304457607f821691505b60208210810361306457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f416c6c6f77206c697374206973206e6f74206163746976650000000000000000604082015260600190565b60208082526022908201527f4578636565646564206d617820617661696c61626c6520746f20707572636861604082015261736560f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561310c5761310c6130e3565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604082015260600190565b6000816000190483118215151615613160576131606130e3565b500290565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b600060ff821660ff8416808210156131b6576131b66130e3565b90039392505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016131e7576131e76130e3565b5060010190565b600082821015613200576132006130e3565b500390565b601f821115610d8b57600081815260208120601f850160051c8101602086101561322c5750805b601f850160051c820191505b8181101561242657828155600101613238565b81516001600160401b0381111561326457613264612d9f565b613278816132728454613030565b84613205565b602080601f8311600181146132ad57600084156132955750858301515b600019600386901b1c1916600185901b178555612426565b600085815260208120601f198616915b828110156132dc578886015182559484019460019091019084016132bd565b50858210156132fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161336f818460208801612c1e565b835190830190613383818360208801612c1e565b64173539b7b760d91b9101908152600501949350505050565b60006001600160801b03838116908316818110156133bc576133bc6130e3565b039392505050565b60006001600160801b038083168185168083038211156133e6576133e66130e3565b01949350505050565b6000816133fe576133fe6130e3565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061343990830184612c4a565b9695505050505050565b60006020828403121561345557600080fd5b8151611cac81612ba3565b634e487b7160e01b600052601260045260246000fd5b60008261348557613485613460565b500490565b60008261349957613499613460565b50069056fea26469706673582212201208963a53e4bab11d7f091809804e4ceefa9db661e083bd78f8e74c0be4977364736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000001a0a

Deployed Bytecode

0x6080604052600436106103505760003560e01c80636aa2372c116101c6578063a22cb465116100f7578063d896eedf11610095578063eb8d24441161006f578063eb8d244414610a41578063f2fde38b14610a5b578063fc96babf14610a7b578063ffe630b514610a8e57600080fd5b8063d896eedf146109c5578063ddff5b1c146109e5578063e985e9c5146109f857600080fd5b8063c1027c98116100d1578063c1027c9814610932578063c4e370951461096f578063c87b56dd1461098f578063d7224ba0146109af57600080fd5b8063a22cb465146108df578063b76c53e9146108ff578063b88d4fde1461091257600080fd5b80638295784d116101645780638d22441f1161013e5780638d22441f146108605780638da5cb5b1461089957806395d89b41146108b7578063a0712d68146108cc57600080fd5b80638295784d146107f1578063833b9499146108115780638bc35c2f1461082c57600080fd5b8063715018a6116101a0578063715018a61461077c578063718bc4af14610791578063759b5c3c146107b157806379aef52d146107d157600080fd5b80636aa2372c1461071c5780636b6e6b4e1461073c57806370a082311461075c57600080fd5b806329fc6bae116102a05780634f6ccce71161023e5780636352211e116102185780636352211e146106995780636373a6b1146106b957806365f13097146106ce578063661e2cdb146106e357600080fd5b80634f6ccce71461063957806355f804b314610659578063564892dc1461067957600080fd5b8063387602981161027a57806338760298146105ca5780633ccfd60b146105e457806342842e0e146105f957806347ccca021461061957600080fd5b806329fc6bae146105755780632c67d82f1461058f5780632f745c59146105aa57600080fd5b8063097e57f21161030d578063150b7a02116102e7578063150b7a02146104dd57806318160ddd146105165780631dbb2a221461053557806323b872dd1461055557600080fd5b8063097e57f2146104715780630cac07b5146104aa57806314b6e5e0146104bd57600080fd5b806301ffc9a71461035557806303339bcb1461038a57806306fdde03146103ac57806307d0f0aa146103ce578063081812fc14610419578063095ea7b314610451575b600080fd5b34801561036157600080fd5b50610375610370366004612bb9565b610aae565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004612bf2565b610b1b565b005b3480156103b857600080fd5b506103c1610b5c565b6040516103819190612c76565b3480156103da57600080fd5b506104076103e9366004612c89565b6001600160a01b03166000908152600e602052604090205460ff1690565b60405160ff9091168152602001610381565b34801561042557600080fd5b50610439610434366004612ca4565b610bee565b6040516001600160a01b039091168152602001610381565b34801561045d57600080fd5b506103aa61046c366004612cbd565b610c79565b34801561047d57600080fd5b5061040761048c366004612c89565b6001600160a01b031660009081526010602052604090205460ff1690565b6103aa6104b8366004612cf8565b610d90565b3480156104c957600080fd5b506103aa6104d8366004612d5e565b610ebb565b3480156104e957600080fd5b506104fd6104f8366004612e2a565b610efe565b6040516001600160e01b03199091168152602001610381565b34801561052257600080fd5b506000545b604051908152602001610381565b34801561054157600080fd5b506103aa610550366004612ca4565b610f0f565b34801561056157600080fd5b506103aa610570366004612ea5565b61101d565b34801561058157600080fd5b50600d546103759060ff1681565b34801561059b57600080fd5b5061052766ce0eb154f9000081565b3480156105b657600080fd5b506105276105c5366004612cbd565b611028565b3480156105d657600080fd5b506015546103759060ff1681565b3480156105f057600080fd5b506103aa611193565b34801561060557600080fd5b506103aa610614366004612ea5565b6111ec565b34801561062557600080fd5b50600954610439906001600160a01b031681565b34801561064557600080fd5b50610527610654366004612ca4565b611207565b34801561066557600080fd5b506103aa610674366004612ee1565b611269565b34801561068557600080fd5b506103aa610694366004612f39565b61129f565b3480156106a557600080fd5b506104396106b4366004612ca4565b6112dc565b3480156106c557600080fd5b506103c16112ee565b3480156106da57600080fd5b50610527600281565b3480156106ef57600080fd5b506104076106fe366004612c89565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561072857600080fd5b506103aa610737366004612f54565b61137c565b34801561074857600080fd5b506103aa610757366004612ca4565b61141a565b34801561076857600080fd5b50610527610777366004612c89565b611568565b34801561078857600080fd5b506103aa6115f9565b34801561079d57600080fd5b506103aa6107ac366004612f39565b61162f565b3480156107bd57600080fd5b506103aa6107cc366004612f54565b61166c565b3480156107dd57600080fd5b506103aa6107ec366004612ea5565b61170a565b3480156107fd57600080fd5b506103aa61080c366004612f54565b61177b565b34801561081d57600080fd5b5061052766aa87bee538000081565b34801561083857600080fd5b506105277f00000000000000000000000000000000000000000000000000000000000000c881565b34801561086c57600080fd5b5061040761087b366004612c89565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156108a557600080fd5b506008546001600160a01b0316610439565b3480156108c357600080fd5b506103c1611819565b6103aa6108da366004612ca4565b611828565b3480156108eb57600080fd5b506103aa6108fa366004612fa7565b611963565b6103aa61090d366004612cf8565b611a27565b34801561091e57600080fd5b506103aa61092d366004612e2a565b611b2a565b34801561093e57600080fd5b5061095261094d366004612ca4565b611b5d565b604080519315158452602084019290925290820152606001610381565b34801561097b57600080fd5b506103aa61098a366004612f39565b611ba9565b34801561099b57600080fd5b506103c16109aa366004612ca4565b611be6565b3480156109bb57600080fd5b5061052760075481565b3480156109d157600080fd5b506103aa6109e0366004612f54565b611cb3565b6103aa6109f3366004612cf8565b611d51565b348015610a0457600080fd5b50610375610a13366004612fd1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a4d57600080fd5b50600b546103759060ff1681565b348015610a6757600080fd5b506103aa610a76366004612c89565b611e54565b6103aa610a89366004612cf8565b611eec565b348015610a9a57600080fd5b506103aa610aa9366004612ee1565b611fef565b60006001600160e01b031982166380ac58cd60e01b1480610adf57506001600160e01b03198216635b5e139f60e01b145b80610afa57506001600160e01b0319821663780e9d6360e01b145b80610b1557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b4e5760405162461bcd60e51b8152600401610b4590612ffb565b60405180910390fd5b610b588183612025565b5050565b606060018054610b6b90613030565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9790613030565b8015610be45780601f10610bb957610100808354040283529160200191610be4565b820191906000526020600020905b815481529060010190602001808311610bc757829003601f168201915b5050505050905090565b6000610bfb826000541190565b610c5d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b45565b506000908152600560205260409020546001600160a01b031690565b6000610c84826112dc565b9050806001600160a01b0316836001600160a01b031603610cf25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b45565b336001600160a01b0382161480610d0e5750610d0e8133610a13565b610d805760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b45565b610d8b83838361203f565b505050565b600d5460ff16610db25760405162461bcd60e51b8152600401610b459061306a565b336000908152600f602052604090205460ff9081169082161115610de85760405162461bcd60e51b8152600401610b45906130a1565b7f0000000000000000000000000000000000000000000000000000000000001a0a8160ff16610e1660005490565b610e2091906130f9565b1115610e3e5760405162461bcd60e51b8152600401610b4590613111565b34610e5360ff831666aa87bee5380000613146565b1115610e715760405162461bcd60e51b8152600401610b4590613165565b336000908152600f602052604081208054839290610e9390849060ff1661319c565b92506101000a81548160ff021916908360ff160217905550610eb8338260ff16612025565b50565b8060005b81811015610ef857610ee8848483818110610edc57610edc6131bf565b90506020020135610f0f565b610ef1816131d5565b9050610ebf565b50505050565b630a85bd0160e11b5b949350505050565b60008181526012602052604081205490819003610fb45760155460ff16610f785760405162461bcd60e51b815260206004820152601960248201527f4861726f62757275733a207374616b696e6720636c6f736564000000000000006044820152606401610b45565b6000828152601260205260408082204290555183917feebbaa86c348cb664e392b180fd0ff2e1998af9fa833ef69a778cb0b42d3ca2791a25050565b610fbe81426131ee565b60008381526013602052604081208054909190610fdc9084906130f9565b90915550506000828152601260205260408082208290555183917f11725367022c3ff288940f4b5473aa61c2da6a24af7363a1128ee2401e8983b291a25050565b610d8b83838361209b565b600061103383611568565b821061108c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b45565b600080549080805b83811015611133576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156110e657805192505b876001600160a01b0316836001600160a01b0316036111205786840361111257509350610b1592505050565b8361111c816131d5565b9450505b508061112b816131d5565b915050611094565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b45565b6008546001600160a01b031633146111bd5760405162461bcd60e51b8152600401610b4590612ffb565b6040514790339082156108fc029083906000818181858888f19350505050158015610b58573d6000803e3d6000fd5b610d8b83838360405180602001604052806000815250611b2a565b6000805482106112655760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b45565b5090565b6008546001600160a01b031633146112935760405162461bcd60e51b8152600401610b4590612ffb565b600c610b58828261324b565b6008546001600160a01b031633146112c95760405162461bcd60e51b8152600401610b4590612ffb565b6015805460ff1916911515919091179055565b60006112e78261242e565b5192915050565b600a80546112fb90613030565b80601f016020809104026020016040519081016040528092919081815260200182805461132790613030565b80156113745780601f1061134957610100808354040283529160200191611374565b820191906000526020600020905b81548152906001019060200180831161135757829003601f168201915b505050505081565b6008546001600160a01b031633146113a65760405162461bcd60e51b8152600401610b4590612ffb565b60005b82811015610ef85781601060008686858181106113c8576113c86131bf565b90506020020160208101906113dd9190612c89565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580611412816131d5565b9150506113a9565b33611424826112dc565b6001600160a01b0316146114715760405162461bcd60e51b81526020600482015260146024820152732430b937b13ab93a9d1027b7363c9037bbb732b960611b6044820152606401610b45565b60008181526012602052604081205490036114c65760405162461bcd60e51b815260206004820152601560248201527412185c9bd89d5c9d5cce881b9bdd081cdd185ad959605a1b6044820152606401610b45565b6000818152601260205260409020546114df90426131ee565b600082815260136020526040812080549091906114fd9084906130f9565b90915550506000818152601260205260408082208290555182917f11725367022c3ff288940f4b5473aa61c2da6a24af7363a1128ee2401e8983b291a260405181907f3ebee94e74ea24f711b5876dca724062e18b7b37b6883e686a92f093248a4fcf90600090a250565b60006001600160a01b0382166115d45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b45565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146116235760405162461bcd60e51b8152600401610b4590612ffb565b61162d60006125d7565b565b6008546001600160a01b031633146116595760405162461bcd60e51b8152600401610b4590612ffb565b600d805460ff1916911515919091179055565b6008546001600160a01b031633146116965760405162461bcd60e51b8152600401610b4590612ffb565b60005b82811015610ef85781601160008686858181106116b8576116b86131bf565b90506020020160208101906116cd9190612c89565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580611702816131d5565b915050611699565b33611714826112dc565b6001600160a01b0316146117615760405162461bcd60e51b81526020600482015260146024820152732430b937b13ab93a9d1027b7363c9037bbb732b960611b6044820152606401610b45565b60026014556117718383836111ec565b5050600160145550565b6008546001600160a01b031633146117a55760405162461bcd60e51b8152600401610b4590612ffb565b60005b82811015610ef85781600e60008686858181106117c7576117c76131bf565b90506020020160208101906117dc9190612c89565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580611811816131d5565b9150506117a8565b606060028054610b6b90613030565b600b5460ff166118855760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b6064820152608401610b45565b60028111156118d65760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e20707572636861736500000000006044820152606401610b45565b7f0000000000000000000000000000000000000000000000000000000000001a0a8161190160005490565b61190b91906130f9565b11156119295760405162461bcd60e51b8152600401610b4590613111565b3461193b8266ce0eb154f90000613146565b11156119595760405162461bcd60e51b8152600401610b4590613165565b610eb83382612025565b336001600160a01b038316036119bb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b45565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d5460ff16611a495760405162461bcd60e51b8152600401610b459061306a565b3360009081526010602052604090205460ff9081169082161115611a7f5760405162461bcd60e51b8152600401610b45906130a1565b7f0000000000000000000000000000000000000000000000000000000000001a0a8160ff16611aad60005490565b611ab791906130f9565b1115611ad55760405162461bcd60e51b8152600401610b4590613111565b34611aea60ff831666aa87bee5380000613146565b1115611b085760405162461bcd60e51b8152600401610b4590613165565b3360009081526010602052604081208054839290610e9390849060ff1661319c565b611b3584848461209b565b611b4184848484612629565b610ef85760405162461bcd60e51b8152600401610b459061330a565b600081815260126020526040812054819081908015611b875760019350611b8481426131ee565b92505b600085815260136020526040902054611ba090846130f9565b93959294505050565b6008546001600160a01b03163314611bd35760405162461bcd60e51b8152600401610b4590612ffb565b600b805460ff1916911515919091179055565b6060611bf3826000541190565b611c575760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b45565b6000611c61612727565b90506000815111611c815760405180602001604052806000815250611cac565b80611c8b84612736565b604051602001611c9c92919061335d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611cdd5760405162461bcd60e51b8152600401610b4590612ffb565b60005b82811015610ef85781600f6000868685818110611cff57611cff6131bf565b9050602002016020810190611d149190612c89565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580611d49816131d5565b915050611ce0565b600d5460ff16611d735760405162461bcd60e51b8152600401610b459061306a565b336000908152600e602052604090205460ff9081169082161115611da95760405162461bcd60e51b8152600401610b45906130a1565b7f0000000000000000000000000000000000000000000000000000000000001a0a8160ff16611dd760005490565b611de191906130f9565b1115611dff5760405162461bcd60e51b8152600401610b4590613111565b34611e1460ff831666aa87bee5380000613146565b1115611e325760405162461bcd60e51b8152600401610b4590613165565b336000908152600e602052604081208054839290610e9390849060ff1661319c565b6008546001600160a01b03163314611e7e5760405162461bcd60e51b8152600401610b4590612ffb565b6001600160a01b038116611ee35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b45565b610eb8816125d7565b600d5460ff16611f0e5760405162461bcd60e51b8152600401610b459061306a565b3360009081526011602052604090205460ff9081169082161115611f445760405162461bcd60e51b8152600401610b45906130a1565b7f0000000000000000000000000000000000000000000000000000000000001a0a8160ff16611f7260005490565b611f7c91906130f9565b1115611f9a5760405162461bcd60e51b8152600401610b4590613111565b34611faf60ff831666aa87bee5380000613146565b1115611fcd5760405162461bcd60e51b8152600401610b4590613165565b3360009081526011602052604081208054839290610e9390849060ff1661319c565b6008546001600160a01b031633146120195760405162461bcd60e51b8152600401610b4590612ffb565b600a610b58828261324b565b610b58828260405180602001604052806000815250612836565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006120a68261242e565b80519091506000906001600160a01b0316336001600160a01b031614806120dd5750336120d284610bee565b6001600160a01b0316145b806120ef575081516120ef9033610a13565b9050806121595760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b45565b846001600160a01b031682600001516001600160a01b0316146121cd5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b45565b6001600160a01b0384166122315760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b45565b61223e8585856001612b1d565b61224e600084846000015161203f565b6001600160a01b03851660009081526004602052604081208054600192906122809084906001600160801b031661339c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926122cc918591166133c4565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556123538460016130f9565b6000818152600360205260409020549091506001600160a01b03166123e45761237d816000541190565b156123e45760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261244d826000541190565b6124ac5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b45565b60007f00000000000000000000000000000000000000000000000000000000000000c8831061250d576124ff7f00000000000000000000000000000000000000000000000000000000000000c8846131ee565b61250a9060016130f9565b90505b825b818110612576576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561256357949350505050565b508061256e816133ef565b91505061250f565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b45565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561271f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061266d903390899088908890600401613406565b6020604051808303816000875af19250505080156126a8575060408051601f3d908101601f191682019092526126a591810190613443565b60015b612705573d8080156126d6576040519150601f19603f3d011682016040523d82523d6000602084013e6126db565b606091505b5080516000036126fd5760405162461bcd60e51b8152600401610b459061330a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f07565b506001610f07565b6060600c8054610b6b90613030565b60608160000361275d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156127875780612771816131d5565b91506127809050600a83613476565b9150612761565b6000816001600160401b038111156127a1576127a1612d9f565b6040519080825280601f01601f1916602001820160405280156127cb576020820181803683370190505b5090505b8415610f07576127e06001836131ee565b91506127ed600a8661348a565b6127f89060306130f9565b60f81b81838151811061280d5761280d6131bf565b60200101906001600160f81b031916908160001a90535061282f600a86613476565b94506127cf565b6000546001600160a01b0384166128995760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b45565b6128a4816000541190565b156128f15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b45565b7f00000000000000000000000000000000000000000000000000000000000000c883111561296c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b45565b6129796000858386612b1d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906129d59087906133c4565b6001600160801b031681526020018583602001516129f391906133c4565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612b125760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612ad66000888488612629565b612af25760405162461bcd60e51b8152600401610b459061330a565b81612afc816131d5565b9250508080612b0a906131d5565b915050612a89565b506000819055612426565b816000612b2a83836130f9565b90505b80821015612426576000828152601260205260409020541580612b5257506014546002145b612b935760405162461bcd60e51b81526020600482015260126024820152714861726f62757275733a207374616b696e6760701b6044820152606401610b45565b612b9c826131d5565b9150612b2d565b6001600160e01b031981168114610eb857600080fd5b600060208284031215612bcb57600080fd5b8135611cac81612ba3565b80356001600160a01b0381168114612bed57600080fd5b919050565b60008060408385031215612c0557600080fd5b82359150612c1560208401612bd6565b90509250929050565b60005b83811015612c39578181015183820152602001612c21565b83811115610ef85750506000910152565b60008151808452612c62816020860160208601612c1e565b601f01601f19169290920160200192915050565b602081526000611cac6020830184612c4a565b600060208284031215612c9b57600080fd5b611cac82612bd6565b600060208284031215612cb657600080fd5b5035919050565b60008060408385031215612cd057600080fd5b612cd983612bd6565b946020939093013593505050565b803560ff81168114612bed57600080fd5b600060208284031215612d0a57600080fd5b611cac82612ce7565b60008083601f840112612d2557600080fd5b5081356001600160401b03811115612d3c57600080fd5b6020830191508360208260051b8501011115612d5757600080fd5b9250929050565b60008060208385031215612d7157600080fd5b82356001600160401b03811115612d8757600080fd5b612d9385828601612d13565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612dcf57612dcf612d9f565b604051601f8501601f19908116603f01168101908282118183101715612df757612df7612d9f565b81604052809350858152868686011115612e1057600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612e4057600080fd5b612e4985612bd6565b9350612e5760208601612bd6565b92506040850135915060608501356001600160401b03811115612e7957600080fd5b8501601f81018713612e8a57600080fd5b612e9987823560208401612db5565b91505092959194509250565b600080600060608486031215612eba57600080fd5b612ec384612bd6565b9250612ed160208501612bd6565b9150604084013590509250925092565b600060208284031215612ef357600080fd5b81356001600160401b03811115612f0957600080fd5b8201601f81018413612f1a57600080fd5b610f0784823560208401612db5565b80358015158114612bed57600080fd5b600060208284031215612f4b57600080fd5b611cac82612f29565b600080600060408486031215612f6957600080fd5b83356001600160401b03811115612f7f57600080fd5b612f8b86828701612d13565b9094509250612f9e905060208501612ce7565b90509250925092565b60008060408385031215612fba57600080fd5b612fc383612bd6565b9150612c1560208401612f29565b60008060408385031215612fe457600080fd5b612fed83612bd6565b9150612c1560208401612bd6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061304457607f821691505b60208210810361306457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f416c6c6f77206c697374206973206e6f74206163746976650000000000000000604082015260600190565b60208082526022908201527f4578636565646564206d617820617661696c61626c6520746f20707572636861604082015261736560f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561310c5761310c6130e3565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604082015260600190565b6000816000190483118215151615613160576131606130e3565b500290565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b600060ff821660ff8416808210156131b6576131b66130e3565b90039392505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016131e7576131e76130e3565b5060010190565b600082821015613200576132006130e3565b500390565b601f821115610d8b57600081815260208120601f850160051c8101602086101561322c5750805b601f850160051c820191505b8181101561242657828155600101613238565b81516001600160401b0381111561326457613264612d9f565b613278816132728454613030565b84613205565b602080601f8311600181146132ad57600084156132955750858301515b600019600386901b1c1916600185901b178555612426565b600085815260208120601f198616915b828110156132dc578886015182559484019460019091019084016132bd565b50858210156132fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161336f818460208801612c1e565b835190830190613383818360208801612c1e565b64173539b7b760d91b9101908152600501949350505050565b60006001600160801b03838116908316818110156133bc576133bc6130e3565b039392505050565b60006001600160801b038083168185168083038211156133e6576133e66130e3565b01949350505050565b6000816133fe576133fe6130e3565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061343990830184612c4a565b9695505050505050565b60006020828403121561345557600080fd5b8151611cac81612ba3565b634e487b7160e01b600052601260045260246000fd5b60008261348557613485613460565b500490565b60008261349957613499613460565b50069056fea26469706673582212201208963a53e4bab11d7f091809804e4ceefa9db661e083bd78f8e74c0be4977364736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000001a0a

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001a0a


Deployed Bytecode Sourcemap

40397:9971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25475:370;;;;;;;;;;-1:-1:-1;25475:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25475:370:0;;;;;;;;45484:116;;;;;;;;;;-1:-1:-1;45484:116:0;;;;;:::i;:::-;;:::i;:::-;;27201:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42419:118::-;;;;;;;;;;-1:-1:-1;42419:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;42513:16:0;42488:5;42513:16;;;:10;:16;;;;;;;;;42419:118;;;;2143:4:1;2131:17;;;2113:36;;2101:2;2086:18;42419:118:0;1971:184:1;28735:204:0;;;;;;;;;;-1:-1:-1;28735:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2509:32:1;;;2491:51;;2479:2;2464:18;28735:204:0;2345:203:1;28298:379:0;;;;;;;;;;-1:-1:-1;28298:379:0;;;;;:::i;:::-;;:::i;42677:120::-;;;;;;;;;;-1:-1:-1;42677:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;42772:17:0;42747:5;42772:17;;;:11;:17;;;;;;;;;42677:120;43477:541;;;;;;:::i;:::-;;:::i;49775:190::-;;;;;;;;;;-1:-1:-1;49775:190:0;;;;;:::i;:::-;;:::i;20614:207::-;;;;;;;;;;-1:-1:-1;20614:207:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;5575:33:1;;;5557:52;;5545:2;5530:18;20614:207:0;5413:202:1;24036:94:0;;;;;;;;;;-1:-1:-1;24089:7:0;24112:12;24036:94;;;5766:25:1;;;5754:2;5739:18;24036:94:0;5620:177:1;49043:457:0;;;;;;;;;;-1:-1:-1;49043:457:0;;;;;:::i;:::-;;:::i;29587:142::-;;;;;;;;;;-1:-1:-1;29587:142:0;;;;;:::i;:::-;;:::i;40647:37::-;;;;;;;;;;-1:-1:-1;40647:37:0;;;;;;;;40801:60;;;;;;;;;;;;40850:11;40801:60;;24667:744;;;;;;;;;;-1:-1:-1;24667:744:0;;;;;:::i;:::-;;:::i;48775:31::-;;;;;;;;;;-1:-1:-1;48775:31:0;;;;;;;;46193:140;;;;;;;;;;;;;:::i;29792:157::-;;;;;;;;;;-1:-1:-1;29792:157:0;;;;;:::i;:::-;;:::i;40455:18::-;;;;;;;;;;-1:-1:-1;40455:18:0;;;;-1:-1:-1;;;;;40455:18:0;;;24199:177;;;;;;;;;;-1:-1:-1;24199:177:0;;;;;:::i;:::-;;:::i;45124:111::-;;;;;;;;;;-1:-1:-1;45124:111:0;;;;;:::i;:::-;;:::i;48875:91::-;;;;;;;;;;-1:-1:-1;48875:91:0;;;;;:::i;:::-;;:::i;27024:118::-;;;;;;;;;;-1:-1:-1;27024:118:0;;;;;:::i;:::-;;:::i;40537:24::-;;;;;;;;;;;;;:::i;40691:43::-;;;;;;;;;;;;40733:1;40691:43;;42545:120;;;;;;;;;;-1:-1:-1;42545:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;42640:17:0;42615:5;42640:17;;;:11;:17;;;;;;;;;42545:120;41939:232;;;;;;;;;;-1:-1:-1;41939:232:0;;;;;:::i;:::-;;:::i;49973:388::-;;;;;;;;;;-1:-1:-1;49973:388:0;;;;;:::i;:::-;;:::i;25901:211::-;;;;;;;;;;-1:-1:-1;25901:211:0;;;;;:::i;:::-;;:::i;39501:103::-;;;;;;;;;;;;;:::i;41322:131::-;;;;;;;;;;-1:-1:-1;41322:131:0;;;;;:::i;:::-;;:::i;42179:232::-;;;;;;;;;;-1:-1:-1;42179:232:0;;;;;:::i;:::-;;:::i;47398:310::-;;;;;;;;;;-1:-1:-1;47398:310:0;;;;;:::i;:::-;;:::i;41461:230::-;;;;;;;;;;-1:-1:-1;41461:230:0;;;;;:::i;:::-;;:::i;40741:53::-;;;;;;;;;;;;40783:11;40741:53;;40480:48;;;;;;;;;;;;;;;42803:120;;;;;;;;;;-1:-1:-1;42803:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;42898:17:0;42873:5;42898:17;;;:11;:17;;;;;;;;;42803:120;38850:87;;;;;;;;;;-1:-1:-1;38923:6:0;;-1:-1:-1;;;;;38923:6:0;38850:87;;27356:98;;;;;;;;;;;;;:::i;45712:473::-;;;;;;:::i;:::-;;:::i;29003:276::-;;;;;;;;;;-1:-1:-1;29003:276:0;;;;;:::i;:::-;;:::i;44026:541::-;;;;;;:::i;:::-;;:::i;30012:311::-;;;;;;;;;;-1:-1:-1;30012:311:0;;;;;:::i;:::-;;:::i;46628:414::-;;;;;;;;;;-1:-1:-1;46628:414:0;;;;;:::i;:::-;;:::i;:::-;;;;8155:14:1;;8148:22;8130:41;;8202:2;8187:18;;8180:34;;;;8230:18;;;8223:34;8118:2;8103:18;46628:414:0;7934:329:1;45608:96:0;;;;;;;;;;-1:-1:-1;45608:96:0;;;;;:::i;:::-;;:::i;27517:403::-;;;;;;;;;;-1:-1:-1;27517:403:0;;;;;:::i;:::-;;:::i;34427:43::-;;;;;;;;;;;;;;;;41699:232;;;;;;;;;;-1:-1:-1;41699:232:0;;;;;:::i;:::-;;:::i;42931:538::-;;;;;;:::i;:::-;;:::i;29342:186::-;;;;;;;;;;-1:-1:-1;29342:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;29487:25:0;;;29464:4;29487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29342:186;40568:32;;;;;;;;;;-1:-1:-1;40568:32:0;;;;;;;;39759:201;;;;;;;;;;-1:-1:-1;39759:201:0;;;;;:::i;:::-;;:::i;44575:541::-;;;;;;:::i;:::-;;:::i;45368:108::-;;;;;;;;;;-1:-1:-1;45368:108:0;;;;;:::i;:::-;;:::i;25475:370::-;25602:4;-1:-1:-1;;;;;;25632:40:0;;-1:-1:-1;;;25632:40:0;;:99;;-1:-1:-1;;;;;;;25683:48:0;;-1:-1:-1;;;25683:48:0;25632:99;:160;;;-1:-1:-1;;;;;;;25742:50:0;;-1:-1:-1;;;25742:50:0;25632:160;:207;;;-1:-1:-1;;;;;;;;;;12166:40:0;;;25803:36;25618:221;25475:370;-1:-1:-1;;25475:370:0:o;45484:116::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;;;;;;;;;45563:29:::1;45573:2;45577:14;45563:9;:29::i;:::-;45484:116:::0;;:::o;27201:94::-;27255:13;27284:5;27277:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27201:94;:::o;28735:204::-;28803:7;28827:16;28835:7;30619:4;30649:12;-1:-1:-1;30639:22:0;30562:105;28827:16;28819:74;;;;-1:-1:-1;;;28819:74:0;;9481:2:1;28819:74:0;;;9463:21:1;9520:2;9500:18;;;9493:30;9559:34;9539:18;;;9532:62;-1:-1:-1;;;9610:18:1;;;9603:43;9663:19;;28819:74:0;9279:409:1;28819:74:0;-1:-1:-1;28909:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28909:24:0;;28735:204::o;28298:379::-;28367:13;28383:24;28399:7;28383:15;:24::i;:::-;28367:40;;28428:5;-1:-1:-1;;;;;28422:11:0;:2;-1:-1:-1;;;;;28422:11:0;;28414:58;;;;-1:-1:-1;;;28414:58:0;;9895:2:1;28414:58:0;;;9877:21:1;9934:2;9914:18;;;9907:30;9973:34;9953:18;;;9946:62;-1:-1:-1;;;10024:18:1;;;10017:32;10066:19;;28414:58:0;9693:398:1;28414:58:0;21587:10;-1:-1:-1;;;;;28497:21:0;;;;:62;;-1:-1:-1;28522:37:0;28539:5;21587:10;29342:186;:::i;28522:37::-;28481:153;;;;-1:-1:-1;;;28481:153:0;;10298:2:1;28481:153:0;;;10280:21:1;10337:2;10317:18;;;10310:30;10376:34;10356:18;;;10349:62;10447:27;10427:18;;;10420:55;10492:19;;28481:153:0;10096:421:1;28481:153:0;28643:28;28652:2;28656:7;28665:5;28643:8;:28::i;:::-;28360:317;28298:379;;:::o;43477:541::-;43559:17;;;;43551:54;;;;-1:-1:-1;;;43551:54:0;;;;;;;:::i;:::-;43654:10;43642:23;;;;:11;:23;;;;;;;;;;43624:41;;;;;43616:88;;;;-1:-1:-1;;;43616:88:0;;;;;;;:::i;:::-;43757:14;43739;43723:30;;:13;24089:7;24112:12;;24036:94;43723:13;:30;;;;:::i;:::-;:48;;43715:93;;;;-1:-1:-1;;;43715:93:0;;;;;;;:::i;:::-;43863:9;43827:32;;;;40783:11;43827:32;:::i;:::-;:45;;43819:89;;;;-1:-1:-1;;;43819:89:0;;;;;;;:::i;:::-;43933:10;43921:23;;;;:11;:23;;;;;:41;;43948:14;;43921:23;:41;;43948:14;;43921:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43973:37;43983:10;43995:14;43973:37;;:9;:37::i;:::-;43477:541;:::o;49775:190::-;49853:8;49841:9;49879:79;49903:1;49899;:5;49879:79;;;49926:20;49934:8;;49943:1;49934:11;;;;;;;:::i;:::-;;;;;;;49926:7;:20::i;:::-;49906:3;;;:::i;:::-;;;49879:79;;;;49830:135;49775:190;;:::o;20614:207::-;-1:-1:-1;;;20614:207:0;;;;;;;:::o;49043:457::-;49100:13;49116:23;;;:14;:23;;;;;;;49154:10;;;49150:343;;49189:11;;;;49181:49;;;;-1:-1:-1;;;49181:49:0;;13111:2:1;49181:49:0;;;13093:21:1;13150:2;13130:18;;;13123:30;13189:27;13169:18;;;13162:55;13234:18;;49181:49:0;12909:349:1;49181:49:0;49245:23;;;;:14;:23;;;;;;49271:15;49245:41;;49306:15;49260:7;;49306:15;;;45484:116;;:::o;49150:343::-;49379:23;49397:5;49379:15;:23;:::i;:::-;49354:21;;;;:12;:21;;;;;:48;;:21;;;:48;;;;;:::i;:::-;;;;-1:-1:-1;;49443:1:0;49417:23;;;:14;:23;;;;;;:27;;;49464:17;49432:7;;49464:17;;;49089:411;49043:457;:::o;29587:142::-;29695:28;29705:4;29711:2;29715:7;29695:9;:28::i;24667:744::-;24776:7;24811:16;24821:5;24811:9;:16::i;:::-;24803:5;:24;24795:71;;;;-1:-1:-1;;;24795:71:0;;13595:2:1;24795:71:0;;;13577:21:1;13634:2;13614:18;;;13607:30;13673:34;13653:18;;;13646:62;-1:-1:-1;;;13724:18:1;;;13717:32;13766:19;;24795:71:0;13393:398:1;24795:71:0;24873:22;24112:12;;;24873:22;;24993:350;25017:14;25013:1;:18;24993:350;;;25047:31;25081:14;;;:11;:14;;;;;;;;;25047:48;;;;;;;;;-1:-1:-1;;;;;25047:48:0;;;;;-1:-1:-1;;;25047:48:0;;;-1:-1:-1;;;;;25047:48:0;;;;;;;;25108:28;25104:89;;25169:14;;;-1:-1:-1;25104:89:0;25226:5;-1:-1:-1;;;;;25205:26:0;:17;-1:-1:-1;;;;;25205:26:0;;25201:135;;25263:5;25248:11;:20;25244:59;;-1:-1:-1;25290:1:0;-1:-1:-1;25283:8:0;;-1:-1:-1;;;25283:8:0;25244:59;25313:13;;;;:::i;:::-;;;;25201:135;-1:-1:-1;25033:3:0;;;;:::i;:::-;;;;24993:350;;;-1:-1:-1;25349:56:0;;-1:-1:-1;;;25349:56:0;;13998:2:1;25349:56:0;;;13980:21:1;14037:2;14017:18;;;14010:30;14076:34;14056:18;;;14049:62;-1:-1:-1;;;14127:18:1;;;14120:44;14181:19;;25349:56:0;13796:410:1;46193:140:0;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;46288:37:::1;::::0;46256:21:::1;::::0;46296:10:::1;::::0;46288:37;::::1;;;::::0;46256:21;;46241:12:::1;46288:37:::0;46241:12;46288:37;46256:21;46296:10;46288:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;29792:157:::0;29904:39;29921:4;29927:2;29931:7;29904:39;;;;;;;;;;;;:16;:39::i;24199:177::-;24266:7;24112:12;;24290:5;:21;24282:69;;;;-1:-1:-1;;;24282:69:0;;14413:2:1;24282:69:0;;;14395:21:1;14452:2;14432:18;;;14425:30;14491:34;14471:18;;;14464:62;-1:-1:-1;;;14542:18:1;;;14535:33;14585:19;;24282:69:0;14211:399:1;24282:69:0;-1:-1:-1;24365:5:0;24199:177::o;45124:111::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;45200:16:::1;:27;45219:8:::0;45200:16;:27:::1;:::i;48875:91::-:0;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;48940:11:::1;:18:::0;;-1:-1:-1;;48940:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48875:91::o;27024:118::-;27088:7;27111:20;27123:7;27111:11;:20::i;:::-;:25;;27024:118;-1:-1:-1;;27024:118:0:o;40537:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41939:232::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;42051:9:::1;42046:118;42066:20:::0;;::::1;42046:118;;;42136:16;42108:11;:25;42120:9;;42130:1;42120:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42108:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42108:25:0;:44;;-1:-1:-1;;42108:44:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;42088:3;::::1;::::0;::::1;:::i;:::-;;;;42046:118;;49973:388:::0;21587:10;50042:16;50050:7;50042;:16::i;:::-;-1:-1:-1;;;;;50042:32:0;;50034:65;;;;-1:-1:-1;;;50034:65:0;;17021:2:1;50034:65:0;;;17003:21:1;17060:2;17040:18;;;17033:30;-1:-1:-1;;;17079:18:1;;;17072:50;17139:18;;50034:65:0;16819:344:1;50034:65:0;50118:23;;;;:14;:23;;;;;;:28;;50110:62;;;;-1:-1:-1;;;50110:62:0;;17370:2:1;50110:62:0;;;17352:21:1;17409:2;17389:18;;;17382:30;-1:-1:-1;;;17428:18:1;;;17421:51;17489:18;;50110:62:0;17168:345:1;50110:62:0;50226:23;;;;:14;:23;;;;;;50208:41;;:15;:41;:::i;:::-;50183:21;;;;:12;:21;;;;;:66;;:21;;;:66;;;;;:::i;:::-;;;;-1:-1:-1;;50286:1:0;50260:23;;;:14;:23;;;;;;:27;;;50303:17;50275:7;;50303:17;;;50336;;50345:7;;50336:17;;;;;49973:388;:::o;25901:211::-;25965:7;-1:-1:-1;;;;;25989:19:0;;25981:75;;;;-1:-1:-1;;;25981:75:0;;17720:2:1;25981:75:0;;;17702:21:1;17759:2;17739:18;;;17732:30;17798:34;17778:18;;;17771:62;-1:-1:-1;;;17849:18:1;;;17842:41;17900:19;;25981:75:0;17518:407:1;25981:75:0;-1:-1:-1;;;;;;26078:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26078:27:0;;25901:211::o;39501:103::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;39566:30:::1;39593:1;39566:18;:30::i;:::-;39501:103::o:0;41322:131::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;41407:17:::1;:38:::0;;-1:-1:-1;;41407:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41322:131::o;42179:232::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;42291:9:::1;42286:118;42306:20:::0;;::::1;42286:118;;;42376:16;42348:11;:25;42360:9;;42370:1;42360:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42348:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42348:25:0;:44;;-1:-1:-1;;42348:44:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;42328:3;::::1;::::0;::::1;:::i;:::-;;;;42286:118;;47398:310:::0;21587:10;47537:16;47545:7;47537;:16::i;:::-;-1:-1:-1;;;;;47537:32:0;;47529:65;;;;-1:-1:-1;;;47529:65:0;;17021:2:1;47529:65:0;;;17003:21:1;17060:2;17040:18;;;17033:30;-1:-1:-1;;;17079:18:1;;;17072:50;17139:18;;47529:65:0;16819:344:1;47529:65:0;47623:1;47605:15;:19;47635:35;47652:4;47658:2;47662:7;47635:16;:35::i;:::-;-1:-1:-1;;47699:1:0;47681:15;:19;-1:-1:-1;47398:310:0:o;41461:230::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;41572:9:::1;41567:117;41587:20:::0;;::::1;41567:117;;;41656:16;41629:10;:24;41640:9;;41650:1;41640:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41629:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41629:24:0;:43;;-1:-1:-1;;41629:43:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41609:3;::::1;::::0;::::1;:::i;:::-;;;;41567:117;;27356:98:::0;27412:13;27441:7;27434:14;;;;;:::i;45712:473::-;45781:12;;;;45773:59;;;;-1:-1:-1;;;45773:59:0;;18132:2:1;45773:59:0;;;18114:21:1;18171:2;18151:18;;;18144:30;18210:34;18190:18;;;18183:62;-1:-1:-1;;;18261:18:1;;;18254:32;18303:19;;45773:59:0;17930:398:1;45773:59:0;40733:1;45851:14;:33;;45843:73;;;;-1:-1:-1;;;45843:73:0;;18535:2:1;45843:73:0;;;18517:21:1;18574:2;18554:18;;;18547:30;18613:29;18593:18;;;18586:57;18660:18;;45843:73:0;18333:351:1;45843:73:0;45969:14;45951;45935:13;24089:7;24112:12;;24036:94;45935:13;:30;;;;:::i;:::-;:48;;45927:93;;;;-1:-1:-1;;;45927:93:0;;;;;;;:::i;:::-;46082:9;46039:39;46064:14;40850:11;46039:39;:::i;:::-;:52;;46031:96;;;;-1:-1:-1;;;46031:96:0;;;;;;;:::i;:::-;46140:37;46150:10;46162:14;46140:9;:37::i;29003:276::-;21587:10;-1:-1:-1;;;;;29094:24:0;;;29086:63;;;;-1:-1:-1;;;29086:63:0;;18891:2:1;29086:63:0;;;18873:21:1;18930:2;18910:18;;;18903:30;18969:28;18949:18;;;18942:56;19015:18;;29086:63:0;18689:350:1;29086:63:0;21587:10;29160:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29160:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29160:53:0;;;;;;;;;;29225:48;;540:41:1;;;29160:42:0;;21587:10;29225:48;;513:18:1;29225:48:0;;;;;;;29003:276;;:::o;44026:541::-;44108:17;;;;44100:54;;;;-1:-1:-1;;;44100:54:0;;;;;;;:::i;:::-;44203:10;44191:23;;;;:11;:23;;;;;;;;;;44173:41;;;;;44165:88;;;;-1:-1:-1;;;44165:88:0;;;;;;;:::i;:::-;44306:14;44288;44272:30;;:13;24089:7;24112:12;;24036:94;44272:13;:30;;;;:::i;:::-;:48;;44264:93;;;;-1:-1:-1;;;44264:93:0;;;;;;;:::i;:::-;44412:9;44376:32;;;;40783:11;44376:32;:::i;:::-;:45;;44368:89;;;;-1:-1:-1;;;44368:89:0;;;;;;;:::i;:::-;44482:10;44470:23;;;;:11;:23;;;;;:41;;44497:14;;44470:23;:41;;44497:14;;44470:41;;;:::i;30012:311::-;30149:28;30159:4;30165:2;30169:7;30149:9;:28::i;:::-;30200:48;30223:4;30229:2;30233:7;30242:5;30200:22;:48::i;:::-;30184:133;;;;-1:-1:-1;;;30184:133:0;;;;;;;:::i;46628:414::-;46732:12;46846:23;;;:14;:23;;;;;;46732:12;;;;46884:10;;46880:105;;46921:4;;-1:-1:-1;46950:23:0;46968:5;46950:15;:23;:::i;:::-;46940:33;;46880:105;47013:21;;;;:12;:21;;;;;;47003:31;;:7;:31;:::i;:::-;46628:414;;;;-1:-1:-1;;;46628:414:0:o;45608:96::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;45673:12:::1;:23:::0;;-1:-1:-1;;45673:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45608:96::o;27517:403::-;27615:13;27656:16;27664:7;30619:4;30649:12;-1:-1:-1;30639:22:0;30562:105;27656:16;27640:97;;;;-1:-1:-1;;;27640:97:0;;19666:2:1;27640:97:0;;;19648:21:1;19705:2;19685:18;;;19678:30;19744:34;19724:18;;;19717:62;-1:-1:-1;;;19795:18:1;;;19788:45;19850:19;;27640:97:0;19464:411:1;27640:97:0;27746:21;27770:10;:8;:10::i;:::-;27746:34;;27825:1;27807:7;27801:21;:25;:113;;;;;;;;;;;;;;;;;27862:7;27871:18;:7;:16;:18::i;:::-;27845:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27801:113;27787:127;27517:403;-1:-1:-1;;;27517:403:0:o;41699:232::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;41811:9:::1;41806:118;41826:20:::0;;::::1;41806:118;;;41896:16;41868:11;:25;41880:9;;41890:1;41880:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41868:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41868:25:0;:44;;-1:-1:-1;;41868:44:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41848:3;::::1;::::0;::::1;:::i;:::-;;;;41806:118;;42931:538:::0;43012:17;;;;43004:54;;;;-1:-1:-1;;;43004:54:0;;;;;;;:::i;:::-;43106:10;43095:22;;;;:10;:22;;;;;;;;;;43077:40;;;;;43069:87;;;;-1:-1:-1;;;43069:87:0;;;;;;;:::i;:::-;43209:14;43191;43175:30;;:13;24089:7;24112:12;;24036:94;43175:13;:30;;;;:::i;:::-;:48;;43167:93;;;;-1:-1:-1;;;43167:93:0;;;;;;;:::i;:::-;43315:9;43279:32;;;;40783:11;43279:32;:::i;:::-;:45;;43271:89;;;;-1:-1:-1;;;43271:89:0;;;;;;;:::i;:::-;43384:10;43373:22;;;;:10;:22;;;;;:40;;43399:14;;43373:22;:40;;43399:14;;43373:40;;;:::i;39759:201::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39848:22:0;::::1;39840:73;;;::::0;-1:-1:-1;;;39840:73:0;;20724:2:1;39840:73:0::1;::::0;::::1;20706:21:1::0;20763:2;20743:18;;;20736:30;20802:34;20782:18;;;20775:62;-1:-1:-1;;;20853:18:1;;;20846:36;20899:19;;39840:73:0::1;20522:402:1::0;39840:73:0::1;39924:28;39943:8;39924:18;:28::i;44575:541::-:0;44657:17;;;;44649:54;;;;-1:-1:-1;;;44649:54:0;;;;;;;:::i;:::-;44752:10;44740:23;;;;:11;:23;;;;;;;;;;44722:41;;;;;44714:88;;;;-1:-1:-1;;;44714:88:0;;;;;;;:::i;:::-;44855:14;44837;44821:30;;:13;24089:7;24112:12;;24036:94;44821:13;:30;;;;:::i;:::-;:48;;44813:93;;;;-1:-1:-1;;;44813:93:0;;;;;;;:::i;:::-;44961:9;44925:32;;;;40783:11;44925:32;:::i;:::-;:45;;44917:89;;;;-1:-1:-1;;;44917:89:0;;;;;;;:::i;:::-;45031:10;45019:23;;;;:11;:23;;;;;:41;;45046:14;;45019:23;:41;;45046:14;;45019:41;;;:::i;45368:108::-;38923:6;;-1:-1:-1;;;;;38923:6:0;21587:10;39070:23;39062:68;;;;-1:-1:-1;;;39062:68:0;;;;;;;:::i;:::-;45445:10:::1;:23;45458:10:::0;45445;:23:::1;:::i;30673:98::-:0;30738:27;30748:2;30752:8;30738:27;;;;;;;;;;;;:9;:27::i;34249:172::-;34346:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34346:29:0;-1:-1:-1;;;;;34346:29:0;;;;;;;;;34387:28;;34346:24;;34387:28;;;;;;;34249:172;;;:::o;32614:1529::-;32711:35;32749:20;32761:7;32749:11;:20::i;:::-;32820:18;;32711:58;;-1:-1:-1;32778:22:0;;-1:-1:-1;;;;;32804:34:0;21587:10;-1:-1:-1;;;;;32804:34:0;;:81;;;-1:-1:-1;21587:10:0;32849:20;32861:7;32849:11;:20::i;:::-;-1:-1:-1;;;;;32849:36:0;;32804:81;:142;;;-1:-1:-1;32913:18:0;;32896:50;;21587:10;29342:186;:::i;32896:50::-;32778:169;;32972:17;32956:101;;;;-1:-1:-1;;;32956:101:0;;21131:2:1;32956:101:0;;;21113:21:1;21170:2;21150:18;;;21143:30;21209:34;21189:18;;;21182:62;-1:-1:-1;;;21260:18:1;;;21253:48;21318:19;;32956:101:0;20929:414:1;32956:101:0;33104:4;-1:-1:-1;;;;;33082:26:0;:13;:18;;;-1:-1:-1;;;;;33082:26:0;;33066:98;;;;-1:-1:-1;;;33066:98:0;;21550:2:1;33066:98:0;;;21532:21:1;21589:2;21569:18;;;21562:30;21628:34;21608:18;;;21601:62;-1:-1:-1;;;21679:18:1;;;21672:36;21725:19;;33066:98:0;21348:402:1;33066:98:0;-1:-1:-1;;;;;33179:16:0;;33171:66;;;;-1:-1:-1;;;33171:66:0;;21957:2:1;33171:66:0;;;21939:21:1;21996:2;21976:18;;;21969:30;22035:34;22015:18;;;22008:62;-1:-1:-1;;;22086:18:1;;;22079:35;22131:19;;33171:66:0;21755:401:1;33171:66:0;33246:43;33268:4;33274:2;33278:7;33287:1;33246:21;:43::i;:::-;33346:49;33363:1;33367:7;33376:13;:18;;;33346:8;:49::i;:::-;-1:-1:-1;;;;;33404:18:0;;;;;;:12;:18;;;;;:31;;33434:1;;33404:18;:31;;33434:1;;-1:-1:-1;;;;;33404:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33404:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33442:16:0;;-1:-1:-1;33442:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;33442:16:0;;:29;;-1:-1:-1;;33442:29:0;;:::i;:::-;;;-1:-1:-1;;;;;33442:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33501:43:0;;;;;;;;-1:-1:-1;;;;;33501:43:0;;;;;-1:-1:-1;;;;;33527:15:0;33501:43;;;;;;;;;-1:-1:-1;33478:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;33478:66:0;-1:-1:-1;;;;;;33478:66:0;;;;;;;;;;;33794:11;33490:7;-1:-1:-1;33794:11:0;:::i;:::-;33857:1;33816:24;;;:11;:24;;;;;:29;33772:33;;-1:-1:-1;;;;;;33816:29:0;33812:236;;33874:20;33882:11;30619:4;30649:12;-1:-1:-1;30639:22:0;30562:105;33874:20;33870:171;;;33934:97;;;;;;;;33961:18;;-1:-1:-1;;;;;33934:97:0;;;;;;33992:28;;;;-1:-1:-1;;;;;33934:97:0;;;;;;;;;-1:-1:-1;33907:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33907:124:0;-1:-1:-1;;;;;;33907:124:0;;;;;;;;;;;;33870:171;34080:7;34076:2;-1:-1:-1;;;;;34061:27:0;34070:4;-1:-1:-1;;;;;34061:27:0;;;;;;;;;;;34095:42;32704:1439;;;32614:1529;;;:::o;26364:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;26481:16:0;26489:7;30619:4;30649:12;-1:-1:-1;30639:22:0;30562:105;26481:16;26473:71;;;;-1:-1:-1;;;26473:71:0;;22872:2:1;26473:71:0;;;22854:21:1;22911:2;22891:18;;;22884:30;22950:34;22930:18;;;22923:62;-1:-1:-1;;;23001:18:1;;;22994:40;23051:19;;26473:71:0;22670:406:1;26473:71:0;26553:26;26601:12;26590:7;:23;26586:93;;26645:22;26655:12;26645:7;:22;:::i;:::-;:26;;26670:1;26645:26;:::i;:::-;26624:47;;26586:93;26707:7;26687:212;26724:18;26716:4;:26;26687:212;;26761:31;26795:17;;;:11;:17;;;;;;;;;26761:51;;;;;;;;;-1:-1:-1;;;;;26761:51:0;;;;;-1:-1:-1;;;26761:51:0;;;-1:-1:-1;;;;;26761:51:0;;;;;;;;26825:28;26821:71;;26873:9;26364:606;-1:-1:-1;;;;26364:606:0:o;26821:71::-;-1:-1:-1;26744:6:0;;;;:::i;:::-;;;;26687:212;;;-1:-1:-1;26907:57:0;;-1:-1:-1;;;26907:57:0;;23424:2:1;26907:57:0;;;23406:21:1;23463:2;23443:18;;;23436:30;23502:34;23482:18;;;23475:62;-1:-1:-1;;;23553:18:1;;;23546:45;23608:19;;26907:57:0;23222:411:1;40120:191:0;40213:6;;;-1:-1:-1;;;;;40230:17:0;;;-1:-1:-1;;;;;;40230:17:0;;;;;;;40263:40;;40213:6;;;40230:17;40213:6;;40263:40;;40194:16;;40263:40;40183:128;40120:191;:::o;35964:690::-;36101:4;-1:-1:-1;;;;;36118:13:0;;3267:20;3315:8;36114:535;;36157:72;;-1:-1:-1;;;36157:72:0;;-1:-1:-1;;;;;36157:36:0;;;;;:72;;21587:10;;36208:4;;36214:7;;36223:5;;36157:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36157:72:0;;;;;;;;-1:-1:-1;;36157:72:0;;;;;;;;;;;;:::i;:::-;;;36144:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36388:6;:13;36405:1;36388:18;36384:215;;36421:61;;-1:-1:-1;;;36421:61:0;;;;;;;:::i;36384:215::-;36567:6;36561:13;36552:6;36548:2;36544:15;36537:38;36144:464;-1:-1:-1;;;;;;36279:55:0;-1:-1:-1;;;36279:55:0;;-1:-1:-1;36272:62:0;;36114:535;-1:-1:-1;36637:4:0;36630:11;;45243:117;45303:13;45336:16;45329:23;;;;;:::i;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;31110:1272;31215:20;31238:12;-1:-1:-1;;;;;31265:16:0;;31257:62;;;;-1:-1:-1;;;31257:62:0;;24962:2:1;31257:62:0;;;24944:21:1;25001:2;24981:18;;;24974:30;25040:34;25020:18;;;25013:62;-1:-1:-1;;;25091:18:1;;;25084:31;25132:19;;31257:62:0;24760:397:1;31257:62:0;31456:21;31464:12;30619:4;30649:12;-1:-1:-1;30639:22:0;30562:105;31456:21;31455:22;31447:64;;;;-1:-1:-1;;;31447:64:0;;25364:2:1;31447:64:0;;;25346:21:1;25403:2;25383:18;;;25376:30;25442:31;25422:18;;;25415:59;25491:18;;31447:64:0;25162:353:1;31447:64:0;31538:12;31526:8;:24;;31518:71;;;;-1:-1:-1;;;31518:71:0;;25722:2:1;31518:71:0;;;25704:21:1;25761:2;25741:18;;;25734:30;25800:34;25780:18;;;25773:62;-1:-1:-1;;;25851:18:1;;;25844:32;25893:19;;31518:71:0;25520:398:1;31518:71:0;31598:61;31628:1;31632:2;31636:12;31650:8;31598:21;:61::i;:::-;-1:-1:-1;;;;;31701:16:0;;31668:30;31701:16;;;:12;:16;;;;;;;;;31668:49;;;;;;;;;-1:-1:-1;;;;;31668:49:0;;;;;-1:-1:-1;;;31668:49:0;;;;;;;;;;;31743:119;;;;;;;;31763:19;;31668:49;;31743:119;;;31763:39;;31793:8;;31763:39;:::i;:::-;-1:-1:-1;;;;;31743:119:0;;;;;31846:8;31811:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31743:119:0;;;;;;-1:-1:-1;;;;;31724:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;31724:138:0;;;;;;;;;;;;31897:43;;;;;;;;;;-1:-1:-1;;;;;31923:15:0;31897:43;;;;;;;;31869:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31869:71:0;-1:-1:-1;;;;;;31869:71:0;;;;;;;;;;;;;;;;;;31881:12;;31993:281;32017:8;32013:1;:12;31993:281;;;32046:38;;32071:12;;-1:-1:-1;;;;;32046:38:0;;;32063:1;;32046:38;;32063:1;;32046:38;32111:59;32142:1;32146:2;32150:12;32164:5;32111:22;:59::i;:::-;32093:150;;;;-1:-1:-1;;;32093:150:0;;;;;;;:::i;:::-;32252:14;;;;:::i;:::-;;;;32027:3;;;;;:::i;:::-;;;;31993:281;;;-1:-1:-1;32282:12:0;:27;;;32316:60;49775:190;47775:438;47959:12;47941:15;48001:18;48011:8;47959:12;48001:18;:::i;:::-;47987:32;;47982:224;48031:3;48021:7;:13;47982:224;;;48088:23;;;;:14;:23;;;;;;:28;;:52;;;48120:15;;48139:1;48120:20;48088:52;48062:132;;;;-1:-1:-1;;;48062:132:0;;26125:2:1;48062:132:0;;;26107:21:1;26164:2;26144:18;;;26137:30;-1:-1:-1;;;26183:18:1;;;26176:48;26241:18;;48062:132:0;25923:342:1;48062:132:0;48036:9;;;:::i;:::-;;;47982:224;;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:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:254::-;838:6;846;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;951:9;938:23;928:33;;980:38;1014:2;1003:9;999:18;980:38;:::i;:::-;970:48;;770:254;;;;;:::o;1029:258::-;1101:1;1111:113;1125:6;1122:1;1119:13;1111:113;;;1201:11;;;1195:18;1182:11;;;1175:39;1147:2;1140:10;1111:113;;;1242:6;1239:1;1236:13;1233:48;;;-1:-1:-1;;1277:1:1;1259:16;;1252:27;1029:258::o;1292:::-;1334:3;1372:5;1366:12;1399:6;1394:3;1387:19;1415:63;1471:6;1464:4;1459:3;1455:14;1448:4;1441:5;1437:16;1415:63;:::i;:::-;1532:2;1511:15;-1:-1:-1;;1507:29:1;1498:39;;;;1539:4;1494:50;;1292:258;-1:-1:-1;;1292:258:1:o;1555:220::-;1704:2;1693:9;1686:21;1667:4;1724:45;1765:2;1754:9;1750:18;1742:6;1724:45;:::i;1780:186::-;1839:6;1892:2;1880:9;1871:7;1867:23;1863:32;1860:52;;;1908:1;1905;1898:12;1860:52;1931:29;1950:9;1931:29;:::i;2160:180::-;2219:6;2272:2;2260:9;2251:7;2247:23;2243:32;2240:52;;;2288:1;2285;2278:12;2240:52;-1:-1:-1;2311:23:1;;2160:180;-1:-1:-1;2160:180:1:o;2553:254::-;2621:6;2629;2682:2;2670:9;2661:7;2657:23;2653:32;2650:52;;;2698:1;2695;2688:12;2650:52;2721:29;2740:9;2721:29;:::i;:::-;2711:39;2797:2;2782:18;;;;2769:32;;-1:-1:-1;;;2553:254:1:o;2812:156::-;2878:20;;2938:4;2927:16;;2917:27;;2907:55;;2958:1;2955;2948:12;2973:182;3030:6;3083:2;3071:9;3062:7;3058:23;3054:32;3051:52;;;3099:1;3096;3089:12;3051:52;3122:27;3139:9;3122:27;:::i;3160:367::-;3223:8;3233:6;3287:3;3280:4;3272:6;3268:17;3264:27;3254:55;;3305:1;3302;3295:12;3254:55;-1:-1:-1;3328:20:1;;-1:-1:-1;;;;;3360:30:1;;3357:50;;;3403:1;3400;3393:12;3357:50;3440:4;3432:6;3428:17;3416:29;;3500:3;3493:4;3483:6;3480:1;3476:14;3468:6;3464:27;3460:38;3457:47;3454:67;;;3517:1;3514;3507:12;3454:67;3160:367;;;;;:::o;3532:437::-;3618:6;3626;3679:2;3667:9;3658:7;3654:23;3650:32;3647:52;;;3695:1;3692;3685:12;3647:52;3735:9;3722:23;-1:-1:-1;;;;;3760:6:1;3757:30;3754:50;;;3800:1;3797;3790:12;3754:50;3839:70;3901:7;3892:6;3881:9;3877:22;3839:70;:::i;:::-;3928:8;;3813:96;;-1:-1:-1;3532:437:1;-1:-1:-1;;;;3532:437:1:o;3974:127::-;4035:10;4030:3;4026:20;4023:1;4016:31;4066:4;4063:1;4056:15;4090:4;4087:1;4080:15;4106:631;4170:5;-1:-1:-1;;;;;4241:2:1;4233:6;4230:14;4227:40;;;4247:18;;:::i;:::-;4322:2;4316:9;4290:2;4376:15;;-1:-1:-1;;4372:24:1;;;4398:2;4368:33;4364:42;4352:55;;;4422:18;;;4442:22;;;4419:46;4416:72;;;4468:18;;:::i;:::-;4508:10;4504:2;4497:22;4537:6;4528:15;;4567:6;4559;4552:22;4607:3;4598:6;4593:3;4589:16;4586:25;4583:45;;;4624:1;4621;4614:12;4583:45;4674:6;4669:3;4662:4;4654:6;4650:17;4637:44;4729:1;4722:4;4713:6;4705;4701:19;4697:30;4690:41;;;;4106:631;;;;;:::o;4742:666::-;4837:6;4845;4853;4861;4914:3;4902:9;4893:7;4889:23;4885:33;4882:53;;;4931:1;4928;4921:12;4882:53;4954:29;4973:9;4954:29;:::i;:::-;4944:39;;5002:38;5036:2;5025:9;5021:18;5002:38;:::i;:::-;4992:48;;5087:2;5076:9;5072:18;5059:32;5049:42;;5142:2;5131:9;5127:18;5114:32;-1:-1:-1;;;;;5161:6:1;5158:30;5155:50;;;5201:1;5198;5191:12;5155:50;5224:22;;5277:4;5269:13;;5265:27;-1:-1:-1;5255:55:1;;5306:1;5303;5296:12;5255:55;5329:73;5394:7;5389:2;5376:16;5371:2;5367;5363:11;5329:73;:::i;:::-;5319:83;;;4742:666;;;;;;;:::o;5802:328::-;5879:6;5887;5895;5948:2;5936:9;5927:7;5923:23;5919:32;5916:52;;;5964:1;5961;5954:12;5916:52;5987:29;6006:9;5987:29;:::i;:::-;5977:39;;6035:38;6069:2;6058:9;6054:18;6035:38;:::i;:::-;6025:48;;6120:2;6109:9;6105:18;6092:32;6082:42;;5802:328;;;;;:::o;6358:450::-;6427:6;6480:2;6468:9;6459:7;6455:23;6451:32;6448:52;;;6496:1;6493;6486:12;6448:52;6536:9;6523:23;-1:-1:-1;;;;;6561:6:1;6558:30;6555:50;;;6601:1;6598;6591:12;6555:50;6624:22;;6677:4;6669:13;;6665:27;-1:-1:-1;6655:55:1;;6706:1;6703;6696:12;6655:55;6729:73;6794:7;6789:2;6776:16;6771:2;6767;6763:11;6729:73;:::i;6813:160::-;6878:20;;6934:13;;6927:21;6917:32;;6907:60;;6963:1;6960;6953:12;6978:180;7034:6;7087:2;7075:9;7066:7;7062:23;7058:32;7055:52;;;7103:1;7100;7093:12;7055:52;7126:26;7142:9;7126:26;:::i;7163:507::-;7256:6;7264;7272;7325:2;7313:9;7304:7;7300:23;7296:32;7293:52;;;7341:1;7338;7331:12;7293:52;7381:9;7368:23;-1:-1:-1;;;;;7406:6:1;7403:30;7400:50;;;7446:1;7443;7436:12;7400:50;7485:70;7547:7;7538:6;7527:9;7523:22;7485:70;:::i;:::-;7574:8;;-1:-1:-1;7459:96:1;-1:-1:-1;7628:36:1;;-1:-1:-1;7660:2:1;7645:18;;7628:36;:::i;:::-;7618:46;;7163:507;;;;;:::o;7675:254::-;7740:6;7748;7801:2;7789:9;7780:7;7776:23;7772:32;7769:52;;;7817:1;7814;7807:12;7769:52;7840:29;7859:9;7840:29;:::i;:::-;7830:39;;7888:35;7919:2;7908:9;7904:18;7888:35;:::i;8268:260::-;8336:6;8344;8397:2;8385:9;8376:7;8372:23;8368:32;8365:52;;;8413:1;8410;8403:12;8365:52;8436:29;8455:9;8436:29;:::i;:::-;8426:39;;8484:38;8518:2;8507:9;8503:18;8484:38;:::i;8533:356::-;8735:2;8717:21;;;8754:18;;;8747:30;8813:34;8808:2;8793:18;;8786:62;8880:2;8865:18;;8533:356::o;8894:380::-;8973:1;8969:12;;;;9016;;;9037:61;;9091:4;9083:6;9079:17;9069:27;;9037:61;9144:2;9136:6;9133:14;9113:18;9110:38;9107:161;;9190:10;9185:3;9181:20;9178:1;9171:31;9225:4;9222:1;9215:15;9253:4;9250:1;9243:15;9107:161;;8894:380;;;:::o;10522:348::-;10724:2;10706:21;;;10763:2;10743:18;;;10736:30;10802:26;10797:2;10782:18;;10775:54;10861:2;10846:18;;10522:348::o;10875:398::-;11077:2;11059:21;;;11116:2;11096:18;;;11089:30;11155:34;11150:2;11135:18;;11128:62;-1:-1:-1;;;11221:2:1;11206:18;;11199:32;11263:3;11248:19;;10875:398::o;11278:127::-;11339:10;11334:3;11330:20;11327:1;11320:31;11370:4;11367:1;11360:15;11394:4;11391:1;11384:15;11410:128;11450:3;11481:1;11477:6;11474:1;11471:13;11468:39;;;11487:18;;:::i;:::-;-1:-1:-1;11523:9:1;;11410:128::o;11543:356::-;11745:2;11727:21;;;11764:18;;;11757:30;11823:34;11818:2;11803:18;;11796:62;11890:2;11875:18;;11543:356::o;11904:168::-;11944:7;12010:1;12006;12002:6;11998:14;11995:1;11992:21;11987:1;11980:9;11973:17;11969:45;11966:71;;;12017:18;;:::i;:::-;-1:-1:-1;12057:9:1;;11904:168::o;12077:355::-;12279:2;12261:21;;;12318:2;12298:18;;;12291:30;12357:33;12352:2;12337:18;;12330:61;12423:2;12408:18;;12077:355::o;12437:195::-;12475:4;12512;12509:1;12505:12;12544:4;12541:1;12537:12;12569:3;12564;12561:12;12558:38;;;12576:18;;:::i;:::-;12613:13;;;12437:195;-1:-1:-1;;;12437:195:1:o;12637:127::-;12698:10;12693:3;12689:20;12686:1;12679:31;12729:4;12726:1;12719:15;12753:4;12750:1;12743:15;12769:135;12808:3;12829:17;;;12826:43;;12849:18;;:::i;:::-;-1:-1:-1;12896:1:1;12885:13;;12769:135::o;13263:125::-;13303:4;13331:1;13328;13325:8;13322:34;;;13336:18;;:::i;:::-;-1:-1:-1;13373:9:1;;13263:125::o;14741:545::-;14843:2;14838:3;14835:11;14832:448;;;14879:1;14904:5;14900:2;14893:17;14949:4;14945:2;14935:19;15019:2;15007:10;15003:19;15000:1;14996:27;14990:4;14986:38;15055:4;15043:10;15040:20;15037:47;;;-1:-1:-1;15078:4:1;15037:47;15133:2;15128:3;15124:12;15121:1;15117:20;15111:4;15107:31;15097:41;;15188:82;15206:2;15199:5;15196:13;15188:82;;;15251:17;;;15232:1;15221:13;15188:82;;15462:1352;15588:3;15582:10;-1:-1:-1;;;;;15607:6:1;15604:30;15601:56;;;15637:18;;:::i;:::-;15666:97;15756:6;15716:38;15748:4;15742:11;15716:38;:::i;:::-;15710:4;15666:97;:::i;:::-;15818:4;;15882:2;15871:14;;15899:1;15894:663;;;;16601:1;16618:6;16615:89;;;-1:-1:-1;16670:19:1;;;16664:26;16615:89;-1:-1:-1;;15419:1:1;15415:11;;;15411:24;15407:29;15397:40;15443:1;15439:11;;;15394:57;16717:81;;15864:944;;15894:663;14688:1;14681:14;;;14725:4;14712:18;;-1:-1:-1;;15930:20:1;;;16048:236;16062:7;16059:1;16056:14;16048:236;;;16151:19;;;16145:26;16130:42;;16243:27;;;;16211:1;16199:14;;;;16078:19;;16048:236;;;16052:3;16312:6;16303:7;16300:19;16297:201;;;16373:19;;;16367:26;-1:-1:-1;;16456:1:1;16452:14;;;16468:3;16448:24;16444:37;16440:42;16425:58;16410:74;;16297:201;-1:-1:-1;;;;;16544:1:1;16528:14;;;16524:22;16511:36;;-1:-1:-1;15462:1352:1:o;19044:415::-;19246:2;19228:21;;;19285:2;19265:18;;;19258:30;19324:34;19319:2;19304:18;;19297:62;-1:-1:-1;;;19390:2:1;19375:18;;19368:49;19449:3;19434:19;;19044:415::o;19880:637::-;20160:3;20198:6;20192:13;20214:53;20260:6;20255:3;20248:4;20240:6;20236:17;20214:53;:::i;:::-;20330:13;;20289:16;;;;20352:57;20330:13;20289:16;20386:4;20374:17;;20352:57;:::i;:::-;-1:-1:-1;;;20431:20:1;;20460:22;;;20509:1;20498:13;;19880:637;-1:-1:-1;;;;19880:637:1:o;22161:246::-;22201:4;-1:-1:-1;;;;;22314:10:1;;;;22284;;22336:12;;;22333:38;;;22351:18;;:::i;:::-;22388:13;;22161:246;-1:-1:-1;;;22161:246:1:o;22412:253::-;22452:3;-1:-1:-1;;;;;22541:2:1;22538:1;22534:10;22571:2;22568:1;22564:10;22602:3;22598:2;22594:12;22589:3;22586:21;22583:47;;;22610:18;;:::i;:::-;22646:13;;22412:253;-1:-1:-1;;;;22412:253:1:o;23081:136::-;23120:3;23148:5;23138:39;;23157:18;;:::i;:::-;-1:-1:-1;;;23193:18:1;;23081:136::o;23638:489::-;-1:-1:-1;;;;;23907:15:1;;;23889:34;;23959:15;;23954:2;23939:18;;23932:43;24006:2;23991:18;;23984:34;;;24054:3;24049:2;24034:18;;24027:31;;;23832:4;;24075:46;;24101:19;;24093:6;24075:46;:::i;:::-;24067:54;23638:489;-1:-1:-1;;;;;;23638:489:1:o;24132:249::-;24201:6;24254:2;24242:9;24233:7;24229:23;24225:32;24222:52;;;24270:1;24267;24260:12;24222:52;24302:9;24296:16;24321:30;24345:5;24321:30;:::i;24386:127::-;24447:10;24442:3;24438:20;24435:1;24428:31;24478:4;24475:1;24468:15;24502:4;24499:1;24492:15;24518:120;24558:1;24584;24574:35;;24589:18;;:::i;:::-;-1:-1:-1;24623:9:1;;24518:120::o;24643:112::-;24675:1;24701;24691:35;;24706:18;;:::i;:::-;-1:-1:-1;24740:9:1;;24643:112::o

Swarm Source

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