ETH Price: $3,462.79 (+2.21%)
Gas: 12 Gwei

Token

Adofo-Y (ADOFO-Y)
 

Overview

Max Total Supply

1,044 ADOFO-Y

Holders

350

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
9 ADOFO-Y
0x409e5f34ae011e9df40e360ee37387fa8b0980cb
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:
AdofoY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol





pragma solidity ^0.8.0;











/**

 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.

 *

 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).

 *

 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.

 *

 * Does not support burning tokens to address(0).

 */

contract ERC721A is

  Context,

  ERC165,

  IERC721,

  IERC721Metadata,

  IERC721Enumerable

{

  using Address for address;

  using Strings for uint256;



  struct TokenOwnership {

    address addr;

    uint64 startTimestamp;

  }



  struct AddressData {

    uint128 balance;

    uint128 numberMinted;

  }



  uint256 private currentIndex = 0;



  uint256 internal immutable collectionSize;

  uint256 internal immutable maxBatchSize;



  // Token name

  string private _name;



  // Token symbol

  string private _symbol;



  // Mapping from token ID to ownership details

  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.

  mapping(uint256 => TokenOwnership) private _ownerships;



  // Mapping owner address to address data

  mapping(address => AddressData) private _addressData;



  // Mapping from token ID to approved address

  mapping(uint256 => address) private _tokenApprovals;



  // Mapping from owner to operator approvals

  mapping(address => mapping(address => bool)) private _operatorApprovals;



  /**

   * @dev

   * `maxBatchSize` refers to how much a minter can mint at a time.

   * `collectionSize_` refers to how many tokens are in the collection.

   */

  constructor(

    string memory name_,

    string memory symbol_,

    uint256 maxBatchSize_,

    uint256 collectionSize_

  ) {

    require(

      collectionSize_ > 0,

      "ERC721A: collection must have a nonzero supply"

    );

    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");

    _name = name_;

    _symbol = symbol_;

    maxBatchSize = maxBatchSize_;

    collectionSize = collectionSize_;

  }



  /**

   * @dev See {IERC721Enumerable-totalSupply}.

   */

  function totalSupply() public view override returns (uint256) {

    return currentIndex;

  }



  /**

   * @dev See {IERC721Enumerable-tokenByIndex}.

   */

  function tokenByIndex(uint256 index) public view override returns (uint256) {

    require(index < totalSupply(), "ERC721A: global index out of bounds");

    return index;

  }



  /**

   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.

   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.

   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.

   */

  function tokenOfOwnerByIndex(address owner, uint256 index)

    public

    view

    override

    returns (uint256)

  {

    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");

    uint256 numMintedSoFar = totalSupply();

    uint256 tokenIdsIdx = 0;

    address currOwnershipAddr = address(0);

    for (uint256 i = 0; i < numMintedSoFar; i++) {

      TokenOwnership memory ownership = _ownerships[i];

      if (ownership.addr != address(0)) {

        currOwnershipAddr = ownership.addr;

      }

      if (currOwnershipAddr == owner) {

        if (tokenIdsIdx == index) {

          return i;

        }

        tokenIdsIdx++;

      }

    }

    revert("ERC721A: unable to get token of owner by index");

  }



  /**

   * @dev See {IERC165-supportsInterface}.

   */

  function supportsInterface(bytes4 interfaceId)

    public

    view

    virtual

    override(ERC165, IERC165)

    returns (bool)

  {

    return

      interfaceId == type(IERC721).interfaceId ||

      interfaceId == type(IERC721Metadata).interfaceId ||

      interfaceId == type(IERC721Enumerable).interfaceId ||

      super.supportsInterface(interfaceId);

  }



  /**

   * @dev See {IERC721-balanceOf}.

   */

  function balanceOf(address owner) public view override returns (uint256) {

    require(owner != address(0), "ERC721A: balance query for the zero address");

    return uint256(_addressData[owner].balance);

  }



  function _numberMinted(address owner) internal view returns (uint256) {

    require(

      owner != address(0),

      "ERC721A: number minted query for the zero address"

    );

    return uint256(_addressData[owner].numberMinted);

  }



  function ownershipOf(uint256 tokenId)

    internal

    view

    returns (TokenOwnership memory)

  {

    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");



    uint256 lowestTokenToCheck;

    if (tokenId >= maxBatchSize) {

      lowestTokenToCheck = tokenId - maxBatchSize + 1;

    }



    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {

      TokenOwnership memory ownership = _ownerships[curr];

      if (ownership.addr != address(0)) {

        return ownership;

      }

    }



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

  }



  /**

   * @dev See {IERC721-ownerOf}.

   */

  function ownerOf(uint256 tokenId) public view override returns (address) {

    return ownershipOf(tokenId).addr;

  }



  /**

   * @dev See {IERC721Metadata-name}.

   */

  function name() public view virtual override returns (string memory) {

    return _name;

  }



  /**

   * @dev See {IERC721Metadata-symbol}.

   */

  function symbol() public view virtual override returns (string memory) {

    return _symbol;

  }



  /**

   * @dev See {IERC721Metadata-tokenURI}.

   */

  function tokenURI(uint256 tokenId)

    public

    view

    virtual

    override

    returns (string memory)

  {

    require(

      _exists(tokenId),

      "ERC721Metadata: URI query for nonexistent token"

    );



    string memory baseURI = _baseURI();

    return

      bytes(baseURI).length > 0

        ? string(abi.encodePacked(baseURI, tokenId.toString()))

        : "";

  }



  /**

   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each

   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty

   * by default, can be overriden in child contracts.

   */

  function _baseURI() internal view virtual returns (string memory) {

    return "";

  }



  /**

   * @dev See {IERC721-approve}.

   */

  function approve(address to, uint256 tokenId) public override {

    address owner = ERC721A.ownerOf(tokenId);

    require(to != owner, "ERC721A: approval to current owner");



    require(

      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),

      "ERC721A: approve caller is not owner nor approved for all"

    );



    _approve(to, tokenId, owner);

  }



  /**

   * @dev See {IERC721-getApproved}.

   */

  function getApproved(uint256 tokenId) public view override returns (address) {

    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");



    return _tokenApprovals[tokenId];

  }



  /**

   * @dev See {IERC721-setApprovalForAll}.

   */

  function setApprovalForAll(address operator, bool approved) public override {

    require(operator != _msgSender(), "ERC721A: approve to caller");



    _operatorApprovals[_msgSender()][operator] = approved;

    emit ApprovalForAll(_msgSender(), operator, approved);

  }



  /**

   * @dev See {IERC721-isApprovedForAll}.

   */

  function isApprovedForAll(address owner, address operator)

    public

    view

    virtual

    override

    returns (bool)

  {

    return _operatorApprovals[owner][operator];

  }



  /**

   * @dev See {IERC721-transferFrom}.

   */

  function transferFrom(

    address from,

    address to,

    uint256 tokenId

  ) public override {

    _transfer(from, to, tokenId);

  }



  /**

   * @dev See {IERC721-safeTransferFrom}.

   */

  function safeTransferFrom(

    address from,

    address to,

    uint256 tokenId

  ) public override {

    safeTransferFrom(from, to, tokenId, "");

  }



  /**

   * @dev See {IERC721-safeTransferFrom}.

   */

  function safeTransferFrom(

    address from,

    address to,

    uint256 tokenId,

    bytes memory _data

  ) public override {

    _transfer(from, to, tokenId);

    require(

      _checkOnERC721Received(from, to, tokenId, _data),

      "ERC721A: transfer to non ERC721Receiver implementer"

    );

  }



  /**

   * @dev Returns whether `tokenId` exists.

   *

   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.

   *

   * Tokens start existing when they are minted (`_mint`),

   */

  function _exists(uint256 tokenId) internal view returns (bool) {

    return tokenId < currentIndex;

  }



  function _safeMint(address to, uint256 quantity) internal {

    _safeMint(to, quantity, "");

  }



  /**

   * @dev Mints `quantity` tokens and transfers them to `to`.

   *

   * Requirements:

   *

   * - there must be `quantity` tokens remaining unminted in the total collection.

   * - `to` cannot be the zero address.

   * - `quantity` cannot be larger than the max batch size.

   *

   * Emits a {Transfer} event.

   */

  function _safeMint(

    address to,

    uint256 quantity,

    bytes memory _data

  ) internal {

    uint256 startTokenId = currentIndex;

    require(to != address(0), "ERC721A: mint to the zero address");

    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.

    require(!_exists(startTokenId), "ERC721A: token already minted");

    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");



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



    AddressData memory addressData = _addressData[to];

    _addressData[to] = AddressData(

      addressData.balance + uint128(quantity),

      addressData.numberMinted + uint128(quantity)

    );

    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));



    uint256 updatedIndex = startTokenId;



    for (uint256 i = 0; i < quantity; i++) {

      emit Transfer(address(0), to, updatedIndex);

      require(

        _checkOnERC721Received(address(0), to, updatedIndex, _data),

        "ERC721A: transfer to non ERC721Receiver implementer"

      );

      updatedIndex++;

    }



    currentIndex = updatedIndex;

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

  }



  /**

   * @dev Transfers `tokenId` from `from` to `to`.

   *

   * Requirements:

   *

   * - `to` cannot be the zero address.

   * - `tokenId` token must be owned by `from`.

   *

   * Emits a {Transfer} event.

   */

  function _transfer(

    address from,

    address to,

    uint256 tokenId

  ) private {

    TokenOwnership memory prevOwnership = ownershipOf(tokenId);



    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||

      getApproved(tokenId) == _msgSender() ||

      isApprovedForAll(prevOwnership.addr, _msgSender()));



    require(

      isApprovedOrOwner,

      "ERC721A: transfer caller is not owner nor approved"

    );



    require(

      prevOwnership.addr == from,

      "ERC721A: transfer from incorrect owner"

    );

    require(to != address(0), "ERC721A: transfer to the zero address");



    _beforeTokenTransfers(from, to, tokenId, 1);



    // Clear approvals from the previous owner

    _approve(address(0), tokenId, prevOwnership.addr);



    _addressData[from].balance -= 1;

    _addressData[to].balance += 1;

    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));



    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

    uint256 nextTokenId = tokenId + 1;

    if (_ownerships[nextTokenId].addr == address(0)) {

      if (_exists(nextTokenId)) {

        _ownerships[nextTokenId] = TokenOwnership(

          prevOwnership.addr,

          prevOwnership.startTimestamp

        );

      }

    }



    emit Transfer(from, to, tokenId);

    _afterTokenTransfers(from, to, tokenId, 1);

  }



  /**

   * @dev Approve `to` to operate on `tokenId`

   *

   * Emits a {Approval} event.

   */

  function _approve(

    address to,

    uint256 tokenId,

    address owner

  ) private {

    _tokenApprovals[tokenId] = to;

    emit Approval(owner, to, tokenId);

  }



  uint256 public nextOwnerToExplicitlySet = 0;



  /**

   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().

   */

  function _setOwnersExplicit(uint256 quantity) internal {

    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;

    require(quantity > 0, "quantity must be nonzero");

    uint256 endIndex = oldNextOwnerToSet + quantity - 1;

    if (endIndex > collectionSize - 1) {

      endIndex = collectionSize - 1;

    }

    // We know if the last one in the group exists, all in the group exist, due to serial ordering.

    require(_exists(endIndex), "not enough minted yet for this cleanup");

    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {

      if (_ownerships[i].addr == address(0)) {

        TokenOwnership memory ownership = ownershipOf(i);

        _ownerships[i] = TokenOwnership(

          ownership.addr,

          ownership.startTimestamp

        );

      }

    }

    nextOwnerToExplicitlySet = endIndex + 1;

  }



  /**

   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.

   * The call is not executed if the target address is not a contract.

   *

   * @param from address representing the previous owner of the given token ID

   * @param to target address that will receive the tokens

   * @param tokenId uint256 ID of the token to be transferred

   * @param _data bytes optional data to send along with the call

   * @return bool whether the call correctly returned the expected magic value

   */

  function _checkOnERC721Received(

    address from,

    address to,

    uint256 tokenId,

    bytes memory _data

  ) private returns (bool) {

    if (to.isContract()) {

      try

        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)

      returns (bytes4 retval) {

        return retval == IERC721Receiver(to).onERC721Received.selector;

      } catch (bytes memory reason) {

        if (reason.length == 0) {

          revert("ERC721A: transfer to non ERC721Receiver implementer");

        } else {

          assembly {

            revert(add(32, reason), mload(reason))

          }

        }

      }

    } else {

      return true;

    }

  }



  /**

   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.

   *

   * startTokenId - the first token id to be transferred

   * quantity - the amount to be transferred

   *

   * Calling conditions:

   *

   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be

   * transferred to `to`.

   * - When `from` is zero, `tokenId` will be minted for `to`.

   */

  function _beforeTokenTransfers(

    address from,

    address to,

    uint256 startTokenId,

    uint256 quantity

  ) internal virtual {}



  /**

   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes

   * minting.

   *

   * startTokenId - the first token id to be transferred

   * quantity - the amount to be transferred

   *

   * Calling conditions:

   *

   * - when `from` and `to` are both non-zero.

   * - `from` and `to` are never both zero.

   */

  function _afterTokenTransfers(

    address from,

    address to,

    uint256 startTokenId,

    uint256 quantity

  ) internal virtual {}

}
// File: @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: contracts/AdofoYTestnet.sol



// SPDX-License-Identifier: MIT

/*

 █████╗ ██████╗  ██████╗ ███████╗ ██████╗      ██╗   ██╗    
██╔══██╗██╔══██╗██╔═══██╗██╔════╝██╔═══██╗     ╚██╗ ██╔╝    
███████║██║  ██║██║   ██║█████╗  ██║   ██║█████╗╚████╔╝     
██╔══██║██║  ██║██║   ██║██╔══╝  ██║   ██║╚════╝ ╚██╔╝      
██║  ██║██████╔╝╚██████╔╝██║     ╚██████╔╝        ██║       
╚═╝  ╚═╝╚═════╝  ╚═════╝ ╚═╝      ╚═════╝         ╚═╝       

                                        Developer: BR33D
                                        Artist: JC-X     */



pragma solidity ^0.8.0;







interface MintPass {

    function balanceOf(address owner) external view returns (uint256);

}



contract AdofoY is Ownable, ERC721A, ReentrancyGuard {

  uint256 public immutable maxPerAddressDuringMint;

  uint256 public immutable maxPerWhitelistMint;

  uint256 public immutable amountForDevs;

  uint256 public maxPerTxPublic;

  address public mintPassedContract = 0xF92cF4a3776bA3F6a3eD96E1974D38Fcf59307f6;

  address[] public whitelistedAddresses;

  address payable public payments;

  bool public hasDevMinted;

  address private authority;

  uint private key;



  struct SaleConfig {

    uint32 holdersSaleStartTime;

    uint32 whitelistSaleStartTime;

    uint32 publicSaleStartTime;

    uint64 adofoXMintPrice;

    uint64 publicPrice;

  }



  SaleConfig public saleConfig;



  mapping(address => bool) public whitelistMinted;

  mapping(address => bool) public mintPassHolders;

  mapping(address => uint256) public adofoXWhitelist;



  constructor(

    uint256 maxBatchSize_,

    uint256 maxWhitelistBatch_,

    uint256 collectionSize_,

    uint256 amountForDevs_,

    uint256 txMaxPer_,

    address payments_,

    bool devMint_

  ) ERC721A("Adofo-Y", "ADOFO-Y", maxBatchSize_, collectionSize_) {

    payments = payable(payments_);

    maxPerAddressDuringMint = maxBatchSize_;

    amountForDevs = amountForDevs_;

    maxPerWhitelistMint = maxWhitelistBatch_;

    maxPerTxPublic = txMaxPer_;

    hasDevMinted = devMint_;

  }



  modifier callerIsUser() {

    require(tx.origin == msg.sender, "The caller is another contract");

    _;

  }



  /*

    |----------------------------|

    |------ Mint Functions ------|

    |----------------------------|

  */



    // adofo-x holders mint

  function adofoXHoldersMint(uint256 numOfAdofos) external payable callerIsUser {

    uint256 price = uint256(saleConfig.adofoXMintPrice);
    uint256 saleStart = uint256(saleConfig.holdersSaleStartTime);
    uint256 whitelistBalance = adofoXWhitelist[msg.sender];

    require(

      block.timestamp >= saleStart && 

      saleStart > 0, "holders sale has not begun yet");

    require(price != 0, "X holder sale has not begun yet");
    require(whitelistBalance > 0,"Invalid whitelist balance - Public sale not live");
    require(whitelistBalance >= numOfAdofos,"Amount more than your whitelist limit");
    require(totalSupply() + numOfAdofos <= collectionSize, "reached max supply");
    require(numOfAdofos <= maxPerWhitelistMint, "exceeds mint allowance");

    adofoXWhitelist[msg.sender] -= numOfAdofos;

    _safeMint(msg.sender, numOfAdofos);

    refundIfOver(price * numOfAdofos);

  }

    // whitelist mint

  function whiteListMint(bytes32 _hash, uint256 numOfAdofos) external payable callerIsUser {

    uint256 price = uint256(saleConfig.publicPrice);

    uint256 saleStart = uint256(saleConfig.whitelistSaleStartTime);

    require(

      block.timestamp >= saleStart && 

      saleStart > 0, "whitelist sale has not begun yet");

    require(totalSupply() + numOfAdofos <= collectionSize, "reached max supply");

    require(numOfAdofos <= maxPerWhitelistMint, "exceeds mint allowance");

    require(_hash == checkHash(msg.sender), "Not a true warrior");

    require(whitelistMinted[msg.sender] == false, "Already minted");

    whitelistMinted[msg.sender] = true;

    _safeMint(msg.sender, numOfAdofos);

    refundIfOver(price * numOfAdofos);

  }

    // NFT holders mint

  function tokenHoldersMint(uint256 numOfAdofos) external payable callerIsUser {

    uint256 price = uint256(saleConfig.adofoXMintPrice);

    uint256 saleStart = uint256(saleConfig.holdersSaleStartTime);

    require(

      block.timestamp >= saleStart && 

      saleStart > 0, "holders sale has not begun yet");

    bool minted = mintPassHolders[msg.sender];

    require(hasMintPass(msg.sender) == true, "must hold a mint pass");

    require(totalSupply() + numOfAdofos <= collectionSize, "reached max supply");

    require(numOfAdofos <= maxPerWhitelistMint, "exceeds mint allowance");

    require(minted == false, "already minted");



    mintPassHolders[msg.sender] = true;

    _safeMint(msg.sender, numOfAdofos);

    refundIfOver(price * numOfAdofos);

  }

    // public sale

  function publicSaleMint(uint256 quantity)

    external

    payable

    callerIsUser

  {

    SaleConfig memory config = saleConfig;

    uint256 publicPrice = uint256(config.publicPrice);

    uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);

    require(isPublicSaleOn(publicPrice, publicSaleStartTime), "public sale has not begun yet");

    require(totalSupply() + quantity <= collectionSize, "reached max supply");

    require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint, "can not mint this many");

    require(quantity <= maxPerTxPublic, "too many per tx");

    _safeMint(msg.sender, quantity);

    refundIfOver(publicPrice * quantity);

  }



  /*

    |----------------------------|

    |---- Contract Functions ----|

    |----------------------------|

  */



    // returns any extra funds sent by user, protects user from over paying

  function refundIfOver(uint256 price) private {

    require(msg.value >= price, "Need to send more ETH.");

    if (msg.value > price) {

      payable(msg.sender).transfer(msg.value - price);

    }

  }



  /*

    |----------------------------|

    |------ View Functions ------|

    |----------------------------|

  */



    // check if public sale has started

  function isPublicSaleOn(

    uint256 publicPriceWei,

    uint256 publicSaleStartTime

  ) public view returns (bool) {

    return

      publicPriceWei != 0 &&

      block.timestamp >= publicSaleStartTime;

  }



    //Retrieves token ids owned of address provided

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {

        uint256 ownerTokenCount = balanceOf(_owner);

        uint256[] memory tokenIds = new uint256[](ownerTokenCount);

        for (uint256 i; i < ownerTokenCount; i++) {

            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);

            

        }

        return tokenIds;

    }



  // check if an address is whitelisted

  function isWhitelisted(address _user) public view returns (bool) {

    for (uint i = 0; i < whitelistedAddresses.length; i++) {

      if (whitelistedAddresses[i] == _user) {

          return true;

      }

    }

    return false;

  }

    // check if holder has mint passed NFT

  function hasMintPass(address _user) public view returns (bool) {

		uint pass = MintPass(mintPassedContract).balanceOf(_user);

		

		if (pass >= 1){

			return true;

		}

		return false;

	}

    function checkHash(address _minter) internal view returns (bytes32) {

        bytes32 correctHash = bytes32(keccak256(abi.encodePacked(_minter, key, authority)));

        return correctHash;

    }



  function numberMinted(address owner) public view returns (uint256) {

    return _numberMinted(owner);

  }



  function getOwnershipData(uint256 tokenId)

    external

    view

    returns (TokenOwnership memory)

  {

    return ownershipOf(tokenId);

  }



  // metadata URI

  string private _baseTokenURI;



  function _baseURI() internal view virtual override returns (string memory) {

    return _baseTokenURI;

  }



  /*

    |----------------------------|

    |----- Owner  Functions -----|

    |----------------------------|

  */



    // setup minting info

  function setupSaleInfo(

    uint64 adofoXMintPriceWei,

    uint64 publicPriceWei,

    uint32 holdersSaleStartTime,

    uint32 whitelistSaleStartTime,

    uint32 publicSaleStartTime

  ) external onlyOwner {

    saleConfig = SaleConfig(

      holdersSaleStartTime,

      whitelistSaleStartTime,

      publicSaleStartTime,

      adofoXMintPriceWei,

      publicPriceWei

    );

  }



  // create list of adofo-x holders addresses

  function setWhitelist(address[] calldata addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            adofoXWhitelist[addresses[i]] = maxPerWhitelistMint;
        }
    }



  // for OG holders/promotions/giveaways

  function devMint() external onlyOwner {

    require(

      totalSupply() + amountForDevs <= collectionSize,

      "too many already minted before dev mint"

    );

    require(

      hasDevMinted == false, "dev has already claimed"

    );

      _safeMint(msg.sender, amountForDevs);

      hasDevMinted = true;

  }



  function setBaseURI(string calldata baseURI) external onlyOwner {

    _baseTokenURI = baseURI;

  }



  function setMintPassContract(address _contract) public onlyOwner {

		mintPassedContract = _contract;

	}



  function withdraw() external onlyOwner nonReentrant {

    (bool success, ) = payable(payments).call{value: address(this).balance}("");

    require(success);

  }

  function setKey(uint _key) external onlyOwner{

    key = _key;

    }



    function setAuthority(address _address) external onlyOwner{

        authority = _address;

    }



  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {

    _setOwnersExplicit(quantity);

  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"maxWhitelistBatch_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"},{"internalType":"uint256","name":"txMaxPer_","type":"uint256"},{"internalType":"address","name":"payments_","type":"address"},{"internalType":"bool","name":"devMint_","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"numOfAdofos","type":"uint256"}],"name":"adofoXHoldersMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"adofoXWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasDevMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"hasMintPass","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":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintPassHolders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPassedContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"holdersSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"whitelistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"adofoXMintPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_key","type":"uint256"}],"name":"setKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setMintPassContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"adofoXMintPriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"holdersSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"whitelistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setupSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfAdofos","type":"uint256"}],"name":"tokenHoldersMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"uint256","name":"numOfAdofos","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61012060405260006001819055600855600b80546001600160a01b03191673f92cf4a3776ba3f6a3ed96e1974d38fcf59307f61790553480156200004257600080fd5b50604051620041ac380380620041ac833981016040819052620000659162000314565b6040518060400160405280600781526020016641646f666f2d5960c81b8152506040518060400160405280600781526020016641444f464f2d5960c81b8152508887620000c1620000bb6200021a60201b60201c565b6200021e565b600081116200012e5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001905760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000125565b8351620001a59060029060208701906200026e565b508251620001bb9060039060208601906200026e565b5060a09190915260805250506001600955600d805460c0989098526101009490945260e095909552600a91909155921515600160a01b026001600160a81b03199094166001600160a01b039093169290921792909217905550620003d2565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200027c9062000395565b90600052602060002090601f016020900481019282620002a05760008555620002eb565b82601f10620002bb57805160ff1916838001178555620002eb565b82800160010185558215620002eb579182015b82811115620002eb578251825591602001919060010190620002ce565b50620002f9929150620002fd565b5090565b5b80821115620002f95760008155600101620002fe565b600080600080600080600060e0888a0312156200033057600080fd5b8751602089015160408a015160608b015160808c015160a08d0151949b50929950909750955093506001600160a01b03811681146200036e57600080fd5b60c089015190925080151581146200038557600080fd5b8091505092959891949750929550565b600181811c90821680620003aa57607f821691505b60208210811415620003cc57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051613d2c6200048060003960008181610a750152818161153001526116200152600081816105da01528181611833015281816121700152818161239b01526126620152600081816106980152611b6a015260008181612d3301528181612d5d015261334b01526000818161150f015281816117bb01528181611af2015281816120f80152818161232301528181612b380152612b6a0152613d2c6000f3fe6080604052600436106103345760003560e01c80638da5cb5b116101b0578063c6b5243d116100ec578063dbcad76f11610095578063f2fde38b1161006f578063f2fde38b14610a02578063f421764814610a22578063f6a1d05b14610a42578063fbe1aa5114610a6357600080fd5b8063dbcad76f14610979578063dc33e68114610999578063e985e9c5146109b957600080fd5b8063d6528776116100c6578063d652877614610930578063d7224ba014610950578063d743f0b51461096657600080fd5b8063c6b5243d146108dd578063c87b56dd146108fd578063cb9197ee1461091d57600080fd5b80639f1d12a111610159578063a813d23711610133578063a813d2371461086a578063b3ab66b01461088a578063b88d4fde1461089d578063ba4e5c49146108bd57600080fd5b80639f1d12a114610817578063a22cb4651461082a578063a6d23e101461084a57600080fd5b806395d89b411161018a57806395d89b41146107bc57806398a8cffe146107d15780639943770d1461080157600080fd5b80638da5cb5b146106ba57806390aa0b0f146106d85780639231ab2a1461076e57600080fd5b806342842e0e1161027f5780636ddf297b11610228578063735d2a2711610202578063735d2a27146106315780637a9e5e4b146106515780637c69e207146106715780638bc35c2f1461068657600080fd5b80636ddf297b146105c857806370a08231146105fc578063715018a61461061c57600080fd5b80634f6ccce7116102595780634f6ccce71461056857806355f804b3146105885780636352211e146105a857600080fd5b806342842e0e146104fb578063438b63001461051b5780634b2647d21461054857600080fd5b806324e49f8d116102e15780633af32abf116102bb5780633af32abf146104995780633ccfd60b146104b95780633da10e17146104ce57600080fd5b806324e49f8d146104295780632d20fb60146104595780632f745c591461047957600080fd5b8063095ea7b311610312578063095ea7b3146103c857806318160ddd146103ea57806323b872dd1461040957600080fd5b806301ffc9a71461033957806306fdde031461036e578063081812fc14610390575b600080fd5b34801561034557600080fd5b506103596103543660046138f0565b610a97565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b50610383610b04565b6040516103659190613afc565b34801561039c57600080fd5b506103b06103ab36600461398a565b610b96565b6040516001600160a01b039091168152602001610365565b3480156103d457600080fd5b506103e86103e336600461382f565b610c26565b005b3480156103f657600080fd5b506001545b604051908152602001610365565b34801561041557600080fd5b506103e86104243660046136db565b610d3e565b34801561043557600080fd5b5061035961044436600461368d565b60126020526000908152604090205460ff1681565b34801561046557600080fd5b506103e861047436600461398a565b610d49565b34801561048557600080fd5b506103fb61049436600461382f565b610dfa565b3480156104a557600080fd5b506103596104b436600461368d565b610f82565b3480156104c557600080fd5b506103e8610fec565b3480156104da57600080fd5b506103fb6104e936600461368d565b60136020526000908152604090205481565b34801561050757600080fd5b506103e86105163660046136db565b6110ec565b34801561052757600080fd5b5061053b61053636600461368d565b611107565b6040516103659190613ab8565b34801561055457600080fd5b5061035961056336600461368d565b6111a9565b34801561057457600080fd5b506103fb61058336600461398a565b61123d565b34801561059457600080fd5b506103e86105a336600461392a565b6112a6565b3480156105b457600080fd5b506103b06105c336600461398a565b6112fa565b3480156105d457600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561060857600080fd5b506103fb61061736600461368d565b61130c565b34801561062857600080fd5b506103e861139d565b34801561063d57600080fd5b506103e861064c36600461368d565b6113f1565b34801561065d57600080fd5b506103e861066c36600461368d565b61145b565b34801561067d57600080fd5b506103e86114c5565b34801561069257600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106c657600080fd5b506000546001600160a01b03166103b0565b3480156106e457600080fd5b5060105461072c9063ffffffff808216916401000000008104821691680100000000000000008204169067ffffffffffffffff600160601b8204811691600160a01b90041685565b6040805163ffffffff96871681529486166020860152929094169183019190915267ffffffffffffffff9081166060830152909116608082015260a001610365565b34801561077a57600080fd5b5061078e61078936600461398a565b611659565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610365565b3480156107c857600080fd5b50610383611676565b3480156107dd57600080fd5b506103596107ec36600461368d565b60116020526000908152604090205460ff1681565b34801561080d57600080fd5b506103fb600a5481565b6103e861082536600461398a565b611685565b34801561083657600080fd5b506103e86108453660046137f3565b611924565b34801561085657600080fd5b50600d546103b0906001600160a01b031681565b34801561087657600080fd5b50600b546103b0906001600160a01b031681565b6103e861089836600461398a565b6119e9565b3480156108a957600080fd5b506103e86108b8366004613717565b611c54565b3480156108c957600080fd5b506103b06108d836600461398a565b611cd3565b3480156108e957600080fd5b506103e86108f83660046139bc565b611cfd565b34801561090957600080fd5b5061038361091836600461398a565b611e23565b6103e861092b36600461398a565b611efe565b34801561093c57600080fd5b506103e861094b36600461398a565b612206565b34801561095c57600080fd5b506103fb60085481565b6103e86109743660046138ce565b612253565b34801561098557600080fd5b506103596109943660046138ce565b612534565b3480156109a557600080fd5b506103fb6109b436600461368d565b612549565b3480156109c557600080fd5b506103596109d43660046136a8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a0e57600080fd5b506103e8610a1d36600461368d565b612554565b348015610a2e57600080fd5b506103e8610a3d366004613859565b61260d565b348015610a4e57600080fd5b50600d5461035990600160a01b900460ff1681565b348015610a6f57600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b1480610ac857506001600160e01b03198216635b5e139f60e01b145b80610ae357506001600160e01b0319821663780e9d6360e01b145b80610afe57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b1390613bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3f90613bfe565b8015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b5050505050905090565b6000610ba3826001541190565b610c0a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c31826112fa565b9050806001600160a01b0316836001600160a01b03161415610ca05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c01565b336001600160a01b0382161480610cbc5750610cbc81336109d4565b610d2e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c01565b610d398383836126d8565b505050565b610d39838383612734565b6000546001600160a01b03163314610d915760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b60026009541415610de45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c01565b6002600955610df281612ac7565b506001600955565b6000610e058361130c565b8210610e5e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c01565b6000610e6960015490565b905060008060005b83811015610f13576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ec457805192505b876001600160a01b0316836001600160a01b03161415610f005786841415610ef257509350610afe92505050565b83610efc81613c39565b9450505b5080610f0b81613c39565b915050610e71565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610c01565b6000805b600c54811015610fe357826001600160a01b0316600c8281548110610fad57610fad613c94565b6000918252602090912001546001600160a01b03161415610fd15750600192915050565b80610fdb81613c39565b915050610f86565b50600092915050565b6000546001600160a01b031633146110345760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b600260095414156110875760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c01565b6002600955600d546040516000916001600160a01b03169047908381818185875af1925050503d80600081146110d9576040519150601f19603f3d011682016040523d82523d6000602084013e6110de565b606091505b5050905080610df257600080fd5b610d3983838360405180602001604052806000815250611c54565b606060006111148361130c565b905060008167ffffffffffffffff81111561113157611131613caa565b60405190808252806020026020018201604052801561115a578160200160208202803683370190505b50905060005b828110156111a1576111728582610dfa565b82828151811061118457611184613c94565b60209081029190910101528061119981613c39565b915050611160565b509392505050565b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b1580156111f257600080fd5b505afa158015611206573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122a91906139a3565b905060018110610fe35750600192915050565b600061124860015490565b82106112a25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c01565b5090565b6000546001600160a01b031633146112ee5760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b610d39601483836135b5565b600061130582612cb1565b5192915050565b60006001600160a01b0382166113785760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c01565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113e55760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b6113ef6000612e69565b565b6000546001600160a01b031633146114395760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114a35760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461150d5760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061155860015490565b6115629190613b31565b11156115c05760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610c01565b600d54600160a01b900460ff161561161a5760405162461bcd60e51b815260206004820152601760248201527f6465762068617320616c726561647920636c61696d65640000000000000000006044820152606401610c01565b611644337f0000000000000000000000000000000000000000000000000000000000000000612eb9565b600d805460ff60a01b1916600160a01b179055565b6040805180820190915260008082526020820152610afe82612cb1565b606060038054610b1390613bfe565b3233146116d45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c01565b60105467ffffffffffffffff600160601b8204169063ffffffff164281118015906116ff5750600081115b61174b5760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572732073616c6520686173206e6f7420626567756e2079657400006044820152606401610c01565b3360008181526012602052604090205460ff1690611768906111a9565b15156001146117b95760405162461bcd60e51b815260206004820152601560248201527f6d75737420686f6c642061206d696e74207061737300000000000000000000006044820152606401610c01565b7f0000000000000000000000000000000000000000000000000000000000000000846117e460015490565b6117ee9190613b31565b11156118315760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c01565b7f000000000000000000000000000000000000000000000000000000000000000084111561189a5760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c01565b80156118e85760405162461bcd60e51b815260206004820152600e60248201527f616c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610c01565b336000818152601260205260409020805460ff1916600117905561190c9085612eb9565b61191e6119198585613b5d565b612ed7565b50505050565b6001600160a01b03821633141561197d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c01565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314611a385760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c01565b6040805160a08101825260105463ffffffff80821683526401000000008204811660208401526801000000000000000082041692820183905267ffffffffffffffff600160601b820481166060840152600160a01b90910416608082018190529091611aa48282612534565b611af05760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610c01565b7f000000000000000000000000000000000000000000000000000000000000000084611b1b60015490565b611b259190613b31565b1115611b685760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c01565b7f000000000000000000000000000000000000000000000000000000000000000084611b9333612549565b611b9d9190613b31565b1115611beb5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610c01565b600a54841115611c3d5760405162461bcd60e51b815260206004820152600f60248201527f746f6f206d616e792070657220747800000000000000000000000000000000006044820152606401610c01565b611c473385612eb9565b61191e6119198584613b5d565b611c5f848484612734565b611c6b84848484612f65565b61191e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c01565b600c8181548110611ce357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b03163314611d455760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b6040805160a08101825263ffffffff948516808252938516602082018190529290941690840181905267ffffffffffffffff958616606085018190529490951660809093018390526010805467ffffffffffffffff19169092176401000000009091021773ffffffffffffffffffffffff000000000000000019166801000000000000000090940273ffffffffffffffff000000000000000000000000191693909317600160601b909202919091177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b909102179055565b6060611e30826001541190565b611ea25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c01565b6000611eac6130bf565b90506000815111611ecc5760405180602001604052806000815250611ef7565b80611ed6846130ce565b604051602001611ee7929190613a4d565b6040516020818303038152906040525b9392505050565b323314611f4d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c01565b6010543360009081526013602052604090205467ffffffffffffffff600160601b8304169163ffffffff1690428211801590611f895750600082115b611fd55760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572732073616c6520686173206e6f7420626567756e2079657400006044820152606401610c01565b826120225760405162461bcd60e51b815260206004820152601f60248201527f5820686f6c6465722073616c6520686173206e6f7420626567756e20796574006044820152606401610c01565b600081116120985760405162461bcd60e51b815260206004820152603060248201527f496e76616c69642077686974656c6973742062616c616e6365202d205075626c60448201527f69632073616c65206e6f74206c697665000000000000000000000000000000006064820152608401610c01565b838110156120f65760405162461bcd60e51b815260206004820152602560248201527f416d6f756e74206d6f7265207468616e20796f75722077686974656c697374206044820152641b1a5b5a5d60da1b6064820152608401610c01565b7f00000000000000000000000000000000000000000000000000000000000000008461212160015490565b61212b9190613b31565b111561216e5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c01565b7f00000000000000000000000000000000000000000000000000000000000000008411156121d75760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c01565b33600090815260136020526040812080548692906121f6908490613ba4565b9091555061190c90503385612eb9565b6000546001600160a01b0316331461224e5760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b600f55565b3233146122a25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c01565b601054600160a01b810467ffffffffffffffff1690640100000000900463ffffffff164281118015906122d55750600081115b6123215760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e207965746044820152606401610c01565b7f00000000000000000000000000000000000000000000000000000000000000008361234c60015490565b6123569190613b31565b11156123995760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c01565b7f00000000000000000000000000000000000000000000000000000000000000008311156124025760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c01565b600f54600e54604080516bffffffffffffffffffffffff1933606090811b821660208085019190915260348401969096529390931b90921660548301528051808303604801815260689092019052805191012084146124a35760405162461bcd60e51b815260206004820152601260248201527f4e6f74206120747275652077617272696f7200000000000000000000000000006044820152606401610c01565b3360009081526011602052604090205460ff16156125035760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610c01565b336000818152601160205260409020805460ff191660011790556125279084612eb9565b61191e6119198484613b5d565b60008215801590611ef7575050421015919050565b6000610afe826131e4565b6000546001600160a01b0316331461259c5760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b6001600160a01b0381166126015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c01565b61260a81612e69565b50565b6000546001600160a01b031633146126555760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b60005b81811015610d39577f00000000000000000000000000000000000000000000000000000000000000006013600085858581811061269757612697613c94565b90506020020160208101906126ac919061368d565b6001600160a01b03168152602081019190915260400160002055806126d081613c39565b915050612658565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061273f82612cb1565b80519091506000906001600160a01b0316336001600160a01b0316148061277657503361276b84610b96565b6001600160a01b0316145b806127885750815161278890336109d4565b9050806127fd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610c01565b846001600160a01b031682600001516001600160a01b0316146128715760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c01565b6001600160a01b0384166128d55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c01565b6128e560008484600001516126d8565b6001600160a01b03851660009081526005602052604081208054600192906129179084906001600160801b0316613b7c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261296391859116613b0f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556129eb846001613b31565b6000818152600460205260409020549091506001600160a01b0316612a7d57612a15816001541190565b15612a7d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481612b175760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610c01565b60006001612b258484613b31565b612b2f9190613ba4565b9050612b5c60017f0000000000000000000000000000000000000000000000000000000000000000613ba4565b811115612b9157612b8e60017f0000000000000000000000000000000000000000000000000000000000000000613ba4565b90505b612b9c816001541190565b612bf75760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610c01565b815b818111612c9d576000818152600460205260409020546001600160a01b0316612c8b576000612c2782612cb1565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80612c9581613c39565b915050612bf9565b50612ca9816001613b31565b600855505050565b6040805180820190915260008082526020820152612cd0826001541190565b612d2f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c01565b60007f00000000000000000000000000000000000000000000000000000000000000008310612d9057612d827f000000000000000000000000000000000000000000000000000000000000000084613ba4565b612d8d906001613b31565b90505b825b818110612dfa576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612de757949350505050565b5080612df281613be7565b915050612d92565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610c01565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612ed382826040518060200160405280600081525061328e565b5050565b80341015612f275760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610c01565b8034111561260a57336108fc612f3d8334613ba4565b6040518115909202916000818181858888f19350505050158015612ed3573d6000803e3d6000fd5b60006001600160a01b0384163b156130b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fa9903390899088908890600401613a7c565b602060405180830381600087803b158015612fc357600080fd5b505af1925050508015612ff3575060408051601f3d908101601f19168201909252612ff09181019061390d565b60015b613099573d808015613021576040519150601f19603f3d011682016040523d82523d6000602084013e613026565b606091505b5080516130915760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506130b7565b5060015b949350505050565b606060148054610b1390613bfe565b6060816130f25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561311c578061310681613c39565b91506131159050600a83613b49565b91506130f6565b60008167ffffffffffffffff81111561313757613137613caa565b6040519080825280601f01601f191660200182016040528015613161576020820181803683370190505b5090505b84156130b757613176600183613ba4565b9150613183600a86613c54565b61318e906030613b31565b60f81b8183815181106131a3576131a3613c94565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506131dd600a86613b49565b9450613165565b60006001600160a01b0382166132625760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610c01565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166132f15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c01565b6132fc816001541190565b156133495760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c01565b7f00000000000000000000000000000000000000000000000000000000000000008311156133c45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c01565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613420908790613b0f565b6001600160801b0316815260200185836020015161343e9190613b0f565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156135aa5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46135226000888488612f65565b61358a5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c01565b8161359481613c39565b92505080806135a290613c39565b9150506134d5565b506001819055612abf565b8280546135c190613bfe565b90600052602060002090601f0160209004810192826135e35760008555613629565b82601f106135fc5782800160ff19823516178555613629565b82800160010185558215613629579182015b8281111561362957823582559160200191906001019061360e565b506112a29291505b808211156112a25760008155600101613631565b80356001600160a01b038116811461365c57600080fd5b919050565b803563ffffffff8116811461365c57600080fd5b803567ffffffffffffffff8116811461365c57600080fd5b60006020828403121561369f57600080fd5b611ef782613645565b600080604083850312156136bb57600080fd5b6136c483613645565b91506136d260208401613645565b90509250929050565b6000806000606084860312156136f057600080fd5b6136f984613645565b925061370760208501613645565b9150604084013590509250925092565b6000806000806080858703121561372d57600080fd5b61373685613645565b935061374460208601613645565b925060408501359150606085013567ffffffffffffffff8082111561376857600080fd5b818701915087601f83011261377c57600080fd5b81358181111561378e5761378e613caa565b604051601f8201601f19908116603f011681019083821181831017156137b6576137b6613caa565b816040528281528a60208487010111156137cf57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561380657600080fd5b61380f83613645565b91506020830135801515811461382457600080fd5b809150509250929050565b6000806040838503121561384257600080fd5b61384b83613645565b946020939093013593505050565b6000806020838503121561386c57600080fd5b823567ffffffffffffffff8082111561388457600080fd5b818501915085601f83011261389857600080fd5b8135818111156138a757600080fd5b8660208260051b85010111156138bc57600080fd5b60209290920196919550909350505050565b600080604083850312156138e157600080fd5b50508035926020909101359150565b60006020828403121561390257600080fd5b8135611ef781613cc0565b60006020828403121561391f57600080fd5b8151611ef781613cc0565b6000806020838503121561393d57600080fd5b823567ffffffffffffffff8082111561395557600080fd5b818501915085601f83011261396957600080fd5b81358181111561397857600080fd5b8660208285010111156138bc57600080fd5b60006020828403121561399c57600080fd5b5035919050565b6000602082840312156139b557600080fd5b5051919050565b600080600080600060a086880312156139d457600080fd5b6139dd86613675565b94506139eb60208701613675565b93506139f960408701613661565b9250613a0760608701613661565b9150613a1560808701613661565b90509295509295909350565b60008151808452613a39816020860160208601613bbb565b601f01601f19169290920160200192915050565b60008351613a5f818460208801613bbb565b835190830190613a73818360208801613bbb565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613aae6080830184613a21565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613af057835183529284019291840191600101613ad4565b50909695505050505050565b602081526000611ef76020830184613a21565b60006001600160801b03808316818516808303821115613a7357613a73613c68565b60008219821115613b4457613b44613c68565b500190565b600082613b5857613b58613c7e565b500490565b6000816000190483118215151615613b7757613b77613c68565b500290565b60006001600160801b0383811690831681811015613b9c57613b9c613c68565b039392505050565b600082821015613bb657613bb6613c68565b500390565b60005b83811015613bd6578181015183820152602001613bbe565b8381111561191e5750506000910152565b600081613bf657613bf6613c68565b506000190190565b600181811c90821680613c1257607f821691505b60208210811415613c3357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613c4d57613c4d613c68565b5060010190565b600082613c6357613c63613c7e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461260a57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122090c2009ed95e4ac5fbb7ae7bbbff007ff72ec54b797b898eb5bf6613bdeb91d664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008c00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000001770000000000000000000000000000000000000000000000000000000000000008c000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000362c5e9380d01a9b4e9aa6ee7722c344f727b640000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103345760003560e01c80638da5cb5b116101b0578063c6b5243d116100ec578063dbcad76f11610095578063f2fde38b1161006f578063f2fde38b14610a02578063f421764814610a22578063f6a1d05b14610a42578063fbe1aa5114610a6357600080fd5b8063dbcad76f14610979578063dc33e68114610999578063e985e9c5146109b957600080fd5b8063d6528776116100c6578063d652877614610930578063d7224ba014610950578063d743f0b51461096657600080fd5b8063c6b5243d146108dd578063c87b56dd146108fd578063cb9197ee1461091d57600080fd5b80639f1d12a111610159578063a813d23711610133578063a813d2371461086a578063b3ab66b01461088a578063b88d4fde1461089d578063ba4e5c49146108bd57600080fd5b80639f1d12a114610817578063a22cb4651461082a578063a6d23e101461084a57600080fd5b806395d89b411161018a57806395d89b41146107bc57806398a8cffe146107d15780639943770d1461080157600080fd5b80638da5cb5b146106ba57806390aa0b0f146106d85780639231ab2a1461076e57600080fd5b806342842e0e1161027f5780636ddf297b11610228578063735d2a2711610202578063735d2a27146106315780637a9e5e4b146106515780637c69e207146106715780638bc35c2f1461068657600080fd5b80636ddf297b146105c857806370a08231146105fc578063715018a61461061c57600080fd5b80634f6ccce7116102595780634f6ccce71461056857806355f804b3146105885780636352211e146105a857600080fd5b806342842e0e146104fb578063438b63001461051b5780634b2647d21461054857600080fd5b806324e49f8d116102e15780633af32abf116102bb5780633af32abf146104995780633ccfd60b146104b95780633da10e17146104ce57600080fd5b806324e49f8d146104295780632d20fb60146104595780632f745c591461047957600080fd5b8063095ea7b311610312578063095ea7b3146103c857806318160ddd146103ea57806323b872dd1461040957600080fd5b806301ffc9a71461033957806306fdde031461036e578063081812fc14610390575b600080fd5b34801561034557600080fd5b506103596103543660046138f0565b610a97565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b50610383610b04565b6040516103659190613afc565b34801561039c57600080fd5b506103b06103ab36600461398a565b610b96565b6040516001600160a01b039091168152602001610365565b3480156103d457600080fd5b506103e86103e336600461382f565b610c26565b005b3480156103f657600080fd5b506001545b604051908152602001610365565b34801561041557600080fd5b506103e86104243660046136db565b610d3e565b34801561043557600080fd5b5061035961044436600461368d565b60126020526000908152604090205460ff1681565b34801561046557600080fd5b506103e861047436600461398a565b610d49565b34801561048557600080fd5b506103fb61049436600461382f565b610dfa565b3480156104a557600080fd5b506103596104b436600461368d565b610f82565b3480156104c557600080fd5b506103e8610fec565b3480156104da57600080fd5b506103fb6104e936600461368d565b60136020526000908152604090205481565b34801561050757600080fd5b506103e86105163660046136db565b6110ec565b34801561052757600080fd5b5061053b61053636600461368d565b611107565b6040516103659190613ab8565b34801561055457600080fd5b5061035961056336600461368d565b6111a9565b34801561057457600080fd5b506103fb61058336600461398a565b61123d565b34801561059457600080fd5b506103e86105a336600461392a565b6112a6565b3480156105b457600080fd5b506103b06105c336600461398a565b6112fa565b3480156105d457600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000000481565b34801561060857600080fd5b506103fb61061736600461368d565b61130c565b34801561062857600080fd5b506103e861139d565b34801561063d57600080fd5b506103e861064c36600461368d565b6113f1565b34801561065d57600080fd5b506103e861066c36600461368d565b61145b565b34801561067d57600080fd5b506103e86114c5565b34801561069257600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000008c81565b3480156106c657600080fd5b506000546001600160a01b03166103b0565b3480156106e457600080fd5b5060105461072c9063ffffffff808216916401000000008104821691680100000000000000008204169067ffffffffffffffff600160601b8204811691600160a01b90041685565b6040805163ffffffff96871681529486166020860152929094169183019190915267ffffffffffffffff9081166060830152909116608082015260a001610365565b34801561077a57600080fd5b5061078e61078936600461398a565b611659565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610365565b3480156107c857600080fd5b50610383611676565b3480156107dd57600080fd5b506103596107ec36600461368d565b60116020526000908152604090205460ff1681565b34801561080d57600080fd5b506103fb600a5481565b6103e861082536600461398a565b611685565b34801561083657600080fd5b506103e86108453660046137f3565b611924565b34801561085657600080fd5b50600d546103b0906001600160a01b031681565b34801561087657600080fd5b50600b546103b0906001600160a01b031681565b6103e861089836600461398a565b6119e9565b3480156108a957600080fd5b506103e86108b8366004613717565b611c54565b3480156108c957600080fd5b506103b06108d836600461398a565b611cd3565b3480156108e957600080fd5b506103e86108f83660046139bc565b611cfd565b34801561090957600080fd5b5061038361091836600461398a565b611e23565b6103e861092b36600461398a565b611efe565b34801561093c57600080fd5b506103e861094b36600461398a565b612206565b34801561095c57600080fd5b506103fb60085481565b6103e86109743660046138ce565b612253565b34801561098557600080fd5b506103596109943660046138ce565b612534565b3480156109a557600080fd5b506103fb6109b436600461368d565b612549565b3480156109c557600080fd5b506103596109d43660046136a8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a0e57600080fd5b506103e8610a1d36600461368d565b612554565b348015610a2e57600080fd5b506103e8610a3d366004613859565b61260d565b348015610a4e57600080fd5b50600d5461035990600160a01b900460ff1681565b348015610a6f57600080fd5b506103fb7f000000000000000000000000000000000000000000000000000000000000008c81565b60006001600160e01b031982166380ac58cd60e01b1480610ac857506001600160e01b03198216635b5e139f60e01b145b80610ae357506001600160e01b0319821663780e9d6360e01b145b80610afe57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b1390613bfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3f90613bfe565b8015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b5050505050905090565b6000610ba3826001541190565b610c0a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c31826112fa565b9050806001600160a01b0316836001600160a01b03161415610ca05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c01565b336001600160a01b0382161480610cbc5750610cbc81336109d4565b610d2e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c01565b610d398383836126d8565b505050565b610d39838383612734565b6000546001600160a01b03163314610d915760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b60026009541415610de45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c01565b6002600955610df281612ac7565b506001600955565b6000610e058361130c565b8210610e5e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c01565b6000610e6960015490565b905060008060005b83811015610f13576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ec457805192505b876001600160a01b0316836001600160a01b03161415610f005786841415610ef257509350610afe92505050565b83610efc81613c39565b9450505b5080610f0b81613c39565b915050610e71565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610c01565b6000805b600c54811015610fe357826001600160a01b0316600c8281548110610fad57610fad613c94565b6000918252602090912001546001600160a01b03161415610fd15750600192915050565b80610fdb81613c39565b915050610f86565b50600092915050565b6000546001600160a01b031633146110345760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b600260095414156110875760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c01565b6002600955600d546040516000916001600160a01b03169047908381818185875af1925050503d80600081146110d9576040519150601f19603f3d011682016040523d82523d6000602084013e6110de565b606091505b5050905080610df257600080fd5b610d3983838360405180602001604052806000815250611c54565b606060006111148361130c565b905060008167ffffffffffffffff81111561113157611131613caa565b60405190808252806020026020018201604052801561115a578160200160208202803683370190505b50905060005b828110156111a1576111728582610dfa565b82828151811061118457611184613c94565b60209081029190910101528061119981613c39565b915050611160565b509392505050565b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009283929116906370a082319060240160206040518083038186803b1580156111f257600080fd5b505afa158015611206573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122a91906139a3565b905060018110610fe35750600192915050565b600061124860015490565b82106112a25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c01565b5090565b6000546001600160a01b031633146112ee5760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b610d39601483836135b5565b600061130582612cb1565b5192915050565b60006001600160a01b0382166113785760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c01565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113e55760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b6113ef6000612e69565b565b6000546001600160a01b031633146114395760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114a35760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461150d5760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b7f00000000000000000000000000000000000000000000000000000000000017707f000000000000000000000000000000000000000000000000000000000000008c61155860015490565b6115629190613b31565b11156115c05760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610c01565b600d54600160a01b900460ff161561161a5760405162461bcd60e51b815260206004820152601760248201527f6465762068617320616c726561647920636c61696d65640000000000000000006044820152606401610c01565b611644337f000000000000000000000000000000000000000000000000000000000000008c612eb9565b600d805460ff60a01b1916600160a01b179055565b6040805180820190915260008082526020820152610afe82612cb1565b606060038054610b1390613bfe565b3233146116d45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c01565b60105467ffffffffffffffff600160601b8204169063ffffffff164281118015906116ff5750600081115b61174b5760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572732073616c6520686173206e6f7420626567756e2079657400006044820152606401610c01565b3360008181526012602052604090205460ff1690611768906111a9565b15156001146117b95760405162461bcd60e51b815260206004820152601560248201527f6d75737420686f6c642061206d696e74207061737300000000000000000000006044820152606401610c01565b7f0000000000000000000000000000000000000000000000000000000000001770846117e460015490565b6117ee9190613b31565b11156118315760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c01565b7f000000000000000000000000000000000000000000000000000000000000000484111561189a5760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c01565b80156118e85760405162461bcd60e51b815260206004820152600e60248201527f616c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610c01565b336000818152601260205260409020805460ff1916600117905561190c9085612eb9565b61191e6119198585613b5d565b612ed7565b50505050565b6001600160a01b03821633141561197d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c01565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b323314611a385760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c01565b6040805160a08101825260105463ffffffff80821683526401000000008204811660208401526801000000000000000082041692820183905267ffffffffffffffff600160601b820481166060840152600160a01b90910416608082018190529091611aa48282612534565b611af05760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610c01565b7f000000000000000000000000000000000000000000000000000000000000177084611b1b60015490565b611b259190613b31565b1115611b685760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c01565b7f000000000000000000000000000000000000000000000000000000000000008c84611b9333612549565b611b9d9190613b31565b1115611beb5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610c01565b600a54841115611c3d5760405162461bcd60e51b815260206004820152600f60248201527f746f6f206d616e792070657220747800000000000000000000000000000000006044820152606401610c01565b611c473385612eb9565b61191e6119198584613b5d565b611c5f848484612734565b611c6b84848484612f65565b61191e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c01565b600c8181548110611ce357600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b03163314611d455760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b6040805160a08101825263ffffffff948516808252938516602082018190529290941690840181905267ffffffffffffffff958616606085018190529490951660809093018390526010805467ffffffffffffffff19169092176401000000009091021773ffffffffffffffffffffffff000000000000000019166801000000000000000090940273ffffffffffffffff000000000000000000000000191693909317600160601b909202919091177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b909102179055565b6060611e30826001541190565b611ea25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610c01565b6000611eac6130bf565b90506000815111611ecc5760405180602001604052806000815250611ef7565b80611ed6846130ce565b604051602001611ee7929190613a4d565b6040516020818303038152906040525b9392505050565b323314611f4d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c01565b6010543360009081526013602052604090205467ffffffffffffffff600160601b8304169163ffffffff1690428211801590611f895750600082115b611fd55760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572732073616c6520686173206e6f7420626567756e2079657400006044820152606401610c01565b826120225760405162461bcd60e51b815260206004820152601f60248201527f5820686f6c6465722073616c6520686173206e6f7420626567756e20796574006044820152606401610c01565b600081116120985760405162461bcd60e51b815260206004820152603060248201527f496e76616c69642077686974656c6973742062616c616e6365202d205075626c60448201527f69632073616c65206e6f74206c697665000000000000000000000000000000006064820152608401610c01565b838110156120f65760405162461bcd60e51b815260206004820152602560248201527f416d6f756e74206d6f7265207468616e20796f75722077686974656c697374206044820152641b1a5b5a5d60da1b6064820152608401610c01565b7f00000000000000000000000000000000000000000000000000000000000017708461212160015490565b61212b9190613b31565b111561216e5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c01565b7f00000000000000000000000000000000000000000000000000000000000000048411156121d75760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c01565b33600090815260136020526040812080548692906121f6908490613ba4565b9091555061190c90503385612eb9565b6000546001600160a01b0316331461224e5760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b600f55565b3233146122a25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c01565b601054600160a01b810467ffffffffffffffff1690640100000000900463ffffffff164281118015906122d55750600081115b6123215760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973742073616c6520686173206e6f7420626567756e207965746044820152606401610c01565b7f00000000000000000000000000000000000000000000000000000000000017708361234c60015490565b6123569190613b31565b11156123995760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c01565b7f00000000000000000000000000000000000000000000000000000000000000048311156124025760405162461bcd60e51b815260206004820152601660248201527565786365656473206d696e7420616c6c6f77616e636560501b6044820152606401610c01565b600f54600e54604080516bffffffffffffffffffffffff1933606090811b821660208085019190915260348401969096529390931b90921660548301528051808303604801815260689092019052805191012084146124a35760405162461bcd60e51b815260206004820152601260248201527f4e6f74206120747275652077617272696f7200000000000000000000000000006044820152606401610c01565b3360009081526011602052604090205460ff16156125035760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610c01565b336000818152601160205260409020805460ff191660011790556125279084612eb9565b61191e6119198484613b5d565b60008215801590611ef7575050421015919050565b6000610afe826131e4565b6000546001600160a01b0316331461259c5760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b6001600160a01b0381166126015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c01565b61260a81612e69565b50565b6000546001600160a01b031633146126555760405162461bcd60e51b81526020600482018190526024820152600080516020613cd78339815191526044820152606401610c01565b60005b81811015610d39577f00000000000000000000000000000000000000000000000000000000000000046013600085858581811061269757612697613c94565b90506020020160208101906126ac919061368d565b6001600160a01b03168152602081019190915260400160002055806126d081613c39565b915050612658565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061273f82612cb1565b80519091506000906001600160a01b0316336001600160a01b0316148061277657503361276b84610b96565b6001600160a01b0316145b806127885750815161278890336109d4565b9050806127fd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610c01565b846001600160a01b031682600001516001600160a01b0316146128715760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c01565b6001600160a01b0384166128d55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c01565b6128e560008484600001516126d8565b6001600160a01b03851660009081526005602052604081208054600192906129179084906001600160801b0316613b7c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261296391859116613b0f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556129eb846001613b31565b6000818152600460205260409020549091506001600160a01b0316612a7d57612a15816001541190565b15612a7d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481612b175760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610c01565b60006001612b258484613b31565b612b2f9190613ba4565b9050612b5c60017f0000000000000000000000000000000000000000000000000000000000001770613ba4565b811115612b9157612b8e60017f0000000000000000000000000000000000000000000000000000000000001770613ba4565b90505b612b9c816001541190565b612bf75760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610c01565b815b818111612c9d576000818152600460205260409020546001600160a01b0316612c8b576000612c2782612cb1565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80612c9581613c39565b915050612bf9565b50612ca9816001613b31565b600855505050565b6040805180820190915260008082526020820152612cd0826001541190565b612d2f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c01565b60007f000000000000000000000000000000000000000000000000000000000000008c8310612d9057612d827f000000000000000000000000000000000000000000000000000000000000008c84613ba4565b612d8d906001613b31565b90505b825b818110612dfa576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612de757949350505050565b5080612df281613be7565b915050612d92565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610c01565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612ed382826040518060200160405280600081525061328e565b5050565b80341015612f275760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610c01565b8034111561260a57336108fc612f3d8334613ba4565b6040518115909202916000818181858888f19350505050158015612ed3573d6000803e3d6000fd5b60006001600160a01b0384163b156130b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fa9903390899088908890600401613a7c565b602060405180830381600087803b158015612fc357600080fd5b505af1925050508015612ff3575060408051601f3d908101601f19168201909252612ff09181019061390d565b60015b613099573d808015613021576040519150601f19603f3d011682016040523d82523d6000602084013e613026565b606091505b5080516130915760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506130b7565b5060015b949350505050565b606060148054610b1390613bfe565b6060816130f25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561311c578061310681613c39565b91506131159050600a83613b49565b91506130f6565b60008167ffffffffffffffff81111561313757613137613caa565b6040519080825280601f01601f191660200182016040528015613161576020820181803683370190505b5090505b84156130b757613176600183613ba4565b9150613183600a86613c54565b61318e906030613b31565b60f81b8183815181106131a3576131a3613c94565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506131dd600a86613b49565b9450613165565b60006001600160a01b0382166132625760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610c01565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166132f15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c01565b6132fc816001541190565b156133495760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c01565b7f000000000000000000000000000000000000000000000000000000000000008c8311156133c45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c01565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613420908790613b0f565b6001600160801b0316815260200185836020015161343e9190613b0f565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156135aa5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46135226000888488612f65565b61358a5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610c01565b8161359481613c39565b92505080806135a290613c39565b9150506134d5565b506001819055612abf565b8280546135c190613bfe565b90600052602060002090601f0160209004810192826135e35760008555613629565b82601f106135fc5782800160ff19823516178555613629565b82800160010185558215613629579182015b8281111561362957823582559160200191906001019061360e565b506112a29291505b808211156112a25760008155600101613631565b80356001600160a01b038116811461365c57600080fd5b919050565b803563ffffffff8116811461365c57600080fd5b803567ffffffffffffffff8116811461365c57600080fd5b60006020828403121561369f57600080fd5b611ef782613645565b600080604083850312156136bb57600080fd5b6136c483613645565b91506136d260208401613645565b90509250929050565b6000806000606084860312156136f057600080fd5b6136f984613645565b925061370760208501613645565b9150604084013590509250925092565b6000806000806080858703121561372d57600080fd5b61373685613645565b935061374460208601613645565b925060408501359150606085013567ffffffffffffffff8082111561376857600080fd5b818701915087601f83011261377c57600080fd5b81358181111561378e5761378e613caa565b604051601f8201601f19908116603f011681019083821181831017156137b6576137b6613caa565b816040528281528a60208487010111156137cf57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561380657600080fd5b61380f83613645565b91506020830135801515811461382457600080fd5b809150509250929050565b6000806040838503121561384257600080fd5b61384b83613645565b946020939093013593505050565b6000806020838503121561386c57600080fd5b823567ffffffffffffffff8082111561388457600080fd5b818501915085601f83011261389857600080fd5b8135818111156138a757600080fd5b8660208260051b85010111156138bc57600080fd5b60209290920196919550909350505050565b600080604083850312156138e157600080fd5b50508035926020909101359150565b60006020828403121561390257600080fd5b8135611ef781613cc0565b60006020828403121561391f57600080fd5b8151611ef781613cc0565b6000806020838503121561393d57600080fd5b823567ffffffffffffffff8082111561395557600080fd5b818501915085601f83011261396957600080fd5b81358181111561397857600080fd5b8660208285010111156138bc57600080fd5b60006020828403121561399c57600080fd5b5035919050565b6000602082840312156139b557600080fd5b5051919050565b600080600080600060a086880312156139d457600080fd5b6139dd86613675565b94506139eb60208701613675565b93506139f960408701613661565b9250613a0760608701613661565b9150613a1560808701613661565b90509295509295909350565b60008151808452613a39816020860160208601613bbb565b601f01601f19169290920160200192915050565b60008351613a5f818460208801613bbb565b835190830190613a73818360208801613bbb565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613aae6080830184613a21565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613af057835183529284019291840191600101613ad4565b50909695505050505050565b602081526000611ef76020830184613a21565b60006001600160801b03808316818516808303821115613a7357613a73613c68565b60008219821115613b4457613b44613c68565b500190565b600082613b5857613b58613c7e565b500490565b6000816000190483118215151615613b7757613b77613c68565b500290565b60006001600160801b0383811690831681811015613b9c57613b9c613c68565b039392505050565b600082821015613bb657613bb6613c68565b500390565b60005b83811015613bd6578181015183820152602001613bbe565b8381111561191e5750506000910152565b600081613bf657613bf6613c68565b506000190190565b600181811c90821680613c1257607f821691505b60208210811415613c3357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613c4d57613c4d613c68565b5060010190565b600082613c6357613c63613c7e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461260a57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122090c2009ed95e4ac5fbb7ae7bbbff007ff72ec54b797b898eb5bf6613bdeb91d664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008c00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000001770000000000000000000000000000000000000000000000000000000000000008c000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000362c5e9380d01a9b4e9aa6ee7722c344f727b640000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 140
Arg [1] : maxWhitelistBatch_ (uint256): 4
Arg [2] : collectionSize_ (uint256): 6000
Arg [3] : amountForDevs_ (uint256): 140
Arg [4] : txMaxPer_ (uint256): 10
Arg [5] : payments_ (address): 0x0362c5E9380d01A9b4e9aA6eE7722c344f727b64
Arg [6] : devMint_ (bool): False

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000008c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001770
Arg [3] : 000000000000000000000000000000000000000000000000000000000000008c
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000362c5e9380d01a9b4e9aa6ee7722c344f727b64
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44563:9617:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27663:394;;;;;;;;;;-1:-1:-1;27663:394:0;;;;;:::i;:::-;;:::i;:::-;;;9328:14:1;;9321:22;9303:41;;9291:2;9276:18;27663:394:0;;;;;;;;29513:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31158:212::-;;;;;;;;;;-1:-1:-1;31158:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7696:55:1;;;7678:74;;7666:2;7651:18;31158:212:0;7532:226:1;30691:399:0;;;;;;;;;;-1:-1:-1;30691:399:0;;;;;:::i;:::-;;:::i;:::-;;26134:98;;;;;;;;;;-1:-1:-1;26212:12:0;;26134:98;;;26216:25:1;;;26204:2;26189:18;26134:98:0;26070:177:1;32072:154:0;;;;;;;;;;-1:-1:-1;32072:154:0;;;;;:::i;:::-;;:::i;45363:47::-;;;;;;;;;;-1:-1:-1;45363:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54053:122;;;;;;;;;;-1:-1:-1;54053:122:0;;;;;:::i;:::-;;:::i;26799:790::-;;;;;;;;;;-1:-1:-1;26799:790:0;;;;;:::i;:::-;;:::i;50983:253::-;;;;;;;;;;-1:-1:-1;50983:253:0;;;;;:::i;:::-;;:::i;53681:169::-;;;;;;;;;;;;;:::i;45417:50::-;;;;;;;;;;-1:-1:-1;45417:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;32299:169;;;;;;;;;;-1:-1:-1;32299:169:0;;;;;:::i;:::-;;:::i;50542:388::-;;;;;;;;;;-1:-1:-1;50542:388:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51288:206::-;;;;;;;;;;-1:-1:-1;51288:206:0;;;;;:::i;:::-;;:::i;26311:183::-;;;;;;;;;;-1:-1:-1;26311:183:0;;;;;:::i;:::-;;:::i;53448:104::-;;;;;;;;;;-1:-1:-1;53448:104:0;;;;;:::i;:::-;;:::i;29322:122::-;;;;;;;;;;-1:-1:-1;29322:122:0;;;;;:::i;:::-;;:::i;44678:44::-;;;;;;;;;;;;;;;28123:217;;;;;;;;;;-1:-1:-1;28123:217:0;;;;;:::i;:::-;;:::i;42516:103::-;;;;;;;;;;;;;:::i;53562:109::-;;;;;;;;;;-1:-1:-1;53562:109:0;;;;;:::i;:::-;;:::i;53942:101::-;;;;;;;;;;-1:-1:-1;53942:101:0;;;;;:::i;:::-;;:::i;53096:342::-;;;;;;;;;;;;;:::i;44623:48::-;;;;;;;;;;;;;;;41865:87;;;;;;;;;;-1:-1:-1;41911:7:0;41938:6;-1:-1:-1;;;;;41938:6:0;41865:87;;45270:28;;;;;;;;;;-1:-1:-1;45270:28:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45270:28:0;;;;;-1:-1:-1;;;45270:28:0;;;;;;;;;26511:10:1;26548:15;;;26530:34;;26600:15;;;26595:2;26580:18;;26573:43;26652:15;;;;26632:18;;;26625:43;;;;26687:18;26741:15;;;26736:2;26721:18;;26714:43;26794:15;;;26788:3;26773:19;;26766:44;26488:3;26473:19;45270:28:0;26252:564:1;51838:159:0;;;;;;;;;;-1:-1:-1;51838:159:0;;;;;:::i;:::-;;:::i;:::-;;;;25912:13:1;;-1:-1:-1;;;;;25908:62:1;25890:81;;26031:4;26019:17;;;26013:24;26039:18;26009:49;25987:20;;;25980:79;;;;25863:18;51838:159:0;25682:383:1;29682:102:0;;;;;;;;;;;;;:::i;45309:47::-;;;;;;;;;;-1:-1:-1;45309:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44774:29;;;;;;;;;;;;;;;;48075:801;;;;;;:::i;:::-;;:::i;31444:284::-;;;;;;;;;;-1:-1:-1;31444:284:0;;;;;:::i;:::-;;:::i;44939:31::-;;;;;;;;;;-1:-1:-1;44939:31:0;;;;-1:-1:-1;;;;;44939:31:0;;;44810:78;;;;;;;;;;-1:-1:-1;44810:78:0;;;;-1:-1:-1;;;;;44810:78:0;;;48904:719;;;;;;:::i;:::-;;:::i;32541:333::-;;;;;;;;;;-1:-1:-1;32541:333:0;;;;;:::i;:::-;;:::i;44895:37::-;;;;;;;;;;-1:-1:-1;44895:37:0;;;;;:::i;:::-;;:::i;52352:419::-;;;;;;;;;;-1:-1:-1;52352:419:0;;;;;:::i;:::-;;:::i;29857:428::-;;;;;;;;;;-1:-1:-1;29857:428:0;;;;;:::i;:::-;;:::i;46312:923::-;;;;;;:::i;:::-;;:::i;53856:74::-;;;;;;;;;;-1:-1:-1;53856:74:0;;;;;:::i;:::-;;:::i;37246:43::-;;;;;;;;;;;;;;;;47266:776;;;;;;:::i;:::-;;:::i;50247:228::-;;;;;;;;;;-1:-1:-1;50247:228:0;;;;;:::i;:::-;;:::i;51717:111::-;;;;;;;;;;-1:-1:-1;51717:111:0;;;;;:::i;:::-;;:::i;31801:202::-;;;;;;;;;;-1:-1:-1;31801:202:0;;;;;:::i;:::-;-1:-1:-1;;;;;31960:25:0;;;31933:4;31960:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31801:202;42774:201;;;;;;;;;;-1:-1:-1;42774:201:0;;;;;:::i;:::-;;:::i;52830:212::-;;;;;;;;;;-1:-1:-1;52830:212:0;;;;;:::i;:::-;;:::i;44977:24::-;;;;;;;;;;-1:-1:-1;44977:24:0;;;;-1:-1:-1;;;44977:24:0;;;;;;44729:38;;;;;;;;;;;;;;;27663:394;27800:4;-1:-1:-1;;;;;;27836:40:0;;-1:-1:-1;;;27836:40:0;;:101;;-1:-1:-1;;;;;;;27889:48:0;;-1:-1:-1;;;27889:48:0;27836:101;:164;;;-1:-1:-1;;;;;;;27950:50:0;;-1:-1:-1;;;27950:50:0;27836:164;:213;;;-1:-1:-1;;;;;;;;;;13197:40:0;;;28013:36;27820:229;27663:394;-1:-1:-1;;27663:394:0:o;29513:98::-;29567:13;29598:5;29591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29513:98;:::o;31158:212::-;31226:7;31252:16;31260:7;33220:12;;-1:-1:-1;33210:22:0;33131:109;31252:16;31244:74;;;;-1:-1:-1;;;31244:74:0;;24724:2:1;31244:74:0;;;24706:21:1;24763:2;24743:18;;;24736:30;24802:34;24782:18;;;24775:62;-1:-1:-1;;;24853:18:1;;;24846:43;24906:19;;31244:74:0;;;;;;;;;-1:-1:-1;31338:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31338:24:0;;31158:212::o;30691:399::-;30762:13;30778:24;30794:7;30778:15;:24::i;:::-;30762:40;;30825:5;-1:-1:-1;;;;;30819:11:0;:2;-1:-1:-1;;;;;30819:11:0;;;30811:58;;;;-1:-1:-1;;;30811:58:0;;19665:2:1;30811:58:0;;;19647:21:1;19704:2;19684:18;;;19677:30;19743:34;19723:18;;;19716:62;-1:-1:-1;;;19794:18:1;;;19787:32;19836:19;;30811:58:0;19463:398:1;30811:58:0;23518:10;-1:-1:-1;;;;;30900:21:0;;;;:62;;-1:-1:-1;30925:37:0;30942:5;23518:10;31801:202;:::i;30925:37::-;30882:159;;;;-1:-1:-1;;;30882:159:0;;14757:2:1;30882:159:0;;;14739:21:1;14796:2;14776:18;;;14769:30;14835:34;14815:18;;;14808:62;14906:27;14886:18;;;14879:55;14951:19;;30882:159:0;14555:421:1;30882:159:0;31054:28;31063:2;31067:7;31076:5;31054:8;:28::i;:::-;30753:337;30691:399;;:::o;32072:154::-;32190:28;32200:4;32206:2;32210:7;32190:9;:28::i;54053:122::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;21812:1:::1;22410:7;;:19;;22402:63;;;::::0;-1:-1:-1;;;22402:63:0;;23948:2:1;22402:63:0::1;::::0;::::1;23930:21:1::0;23987:2;23967:18;;;23960:30;24026:33;24006:18;;;23999:61;24077:18;;22402:63:0::1;23746:355:1::0;22402:63:0::1;21812:1;22543:7;:18:::0;54139:28:::2;54158:8:::0;54139:18:::2;:28::i;:::-;-1:-1:-1::0;21768:1:0::1;22722:7;:22:::0;54053:122::o;26799:790::-;26916:7;26955:16;26965:5;26955:9;:16::i;:::-;26947:5;:24;26939:71;;;;-1:-1:-1;;;26939:71:0;;9781:2:1;26939:71:0;;;9763:21:1;9820:2;9800:18;;;9793:30;9859:34;9839:18;;;9832:62;-1:-1:-1;;;9910:18:1;;;9903:32;9952:19;;26939:71:0;9579:398:1;26939:71:0;27019:22;27044:13;26212:12;;;26134:98;27044:13;27019:38;;27066:19;27098:25;27150:9;27145:372;27169:14;27165:1;:18;27145:372;;;27201:31;27235:14;;;:11;:14;;;;;;;;;27201:48;;;;;;;;;-1:-1:-1;;;;;27201:48:0;;;;;-1:-1:-1;;;27201:48:0;;;;;;;;;;;;27264:28;27260:93;;27327:14;;;-1:-1:-1;27260:93:0;27388:5;-1:-1:-1;;;;;27367:26:0;:17;-1:-1:-1;;;;;27367:26:0;;27363:145;;;27427:5;27412:11;:20;27408:63;;;-1:-1:-1;27456:1:0;-1:-1:-1;27449:8:0;;-1:-1:-1;;;27449:8:0;27408:63;27483:13;;;;:::i;:::-;;;;27363:145;-1:-1:-1;27185:3:0;;;;:::i;:::-;;;;27145:372;;;-1:-1:-1;27525:56:0;;-1:-1:-1;;;27525:56:0;;23126:2:1;27525:56:0;;;23108:21:1;23165:2;23145:18;;;23138:30;23204:34;23184:18;;;23177:62;23275:16;23255:18;;;23248:44;23309:19;;27525:56:0;22924:410:1;50983:253:0;51042:4;;51057:151;51078:20;:27;51074:31;;51057:151;;;51154:5;-1:-1:-1;;;;;51127:32:0;:20;51148:1;51127:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;51127:23:0;:32;51123:76;;;-1:-1:-1;51183:4:0;;50983:253;-1:-1:-1;;50983:253:0:o;51123:76::-;51107:3;;;;:::i;:::-;;;;51057:151;;;-1:-1:-1;51223:5:0;;50983:253;-1:-1:-1;;50983:253:0:o;53681:169::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;21812:1:::1;22410:7;;:19;;22402:63;;;::::0;-1:-1:-1;;;22402:63:0;;23948:2:1;22402:63:0::1;::::0;::::1;23930:21:1::0;23987:2;23967:18;;;23960:30;24026:33;24006:18;;;23999:61;24077:18;;22402:63:0::1;23746:355:1::0;22402:63:0::1;21812:1;22543:7;:18:::0;53769:8:::2;::::0;53761:56:::2;::::0;53743:12:::2;::::0;-1:-1:-1;;;;;53769:8:0::2;::::0;53791:21:::2;::::0;53743:12;53761:56;53743:12;53761:56;53791:21;53769:8;53761:56:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53742:75;;;53834:7;53826:16;;;::::0;::::2;32299:169:::0;32421:39;32438:4;32444:2;32448:7;32421:39;;;;;;;;;;;;:16;:39::i;50542:388::-;50602:16;50633:23;50659:17;50669:6;50659:9;:17::i;:::-;50633:43;;50689:25;50731:15;50717:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50717:30:0;;50689:58;;50765:9;50760:133;50780:15;50776:1;:19;50760:133;;;50833:30;50853:6;50861:1;50833:19;:30::i;:::-;50819:8;50828:1;50819:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50797:3;;;;:::i;:::-;;;;50760:133;;;-1:-1:-1;50912:8:0;50542:388;-1:-1:-1;;;50542:388:0:o;51288:206::-;51379:18;;51370:45;;-1:-1:-1;;;51370:45:0;;-1:-1:-1;;;;;7696:55:1;;;51370:45:0;;;7678:74:1;51345:4:0;;;;51379:18;;;51370:38;;7651:18:1;;51370:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51358:57;;51440:1;51432:4;:9;51428:41;;-1:-1:-1;51457:4:0;;51288:206;-1:-1:-1;;51288:206:0:o;26311:183::-;26378:7;26412:13;26212:12;;;26134:98;26412:13;26404:5;:21;26396:69;;;;-1:-1:-1;;;26396:69:0;;13170:2:1;26396:69:0;;;13152:21:1;13209:2;13189:18;;;13182:30;13248:34;13228:18;;;13221:62;-1:-1:-1;;;13299:18:1;;;13292:33;13342:19;;26396:69:0;12968:399:1;26396:69:0;-1:-1:-1;26481:5:0;26311:183::o;53448:104::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;53521:23:::1;:13;53537:7:::0;;53521:23:::1;:::i;29322:122::-:0;29386:7;29411:20;29423:7;29411:11;:20::i;:::-;:25;;29322:122;-1:-1:-1;;29322:122:0:o;28123:217::-;28187:7;-1:-1:-1;;;;;28213:19:0;;28205:75;;;;-1:-1:-1;;;28205:75:0;;15896:2:1;28205:75:0;;;15878:21:1;15935:2;15915:18;;;15908:30;15974:34;15954:18;;;15947:62;-1:-1:-1;;;16025:18:1;;;16018:41;16076:19;;28205:75:0;15694:407:1;28205:75:0;-1:-1:-1;;;;;;28304:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28304:27:0;;28123:217::o;42516:103::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;42581:30:::1;42608:1;42581:18;:30::i;:::-;42516:103::o:0;53562:109::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;53634:18:::1;:30:::0;;-1:-1:-1;;;;;;53634:30:0::1;-1:-1:-1::0;;;;;53634:30:0;;;::::1;::::0;;;::::1;::::0;;53562:109::o;53942:101::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;54013:9:::1;:20:::0;;-1:-1:-1;;;;;;54013:20:0::1;-1:-1:-1::0;;;;;54013:20:0;;;::::1;::::0;;;::::1;::::0;;53942:101::o;53096:342::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;53194:14:::1;53177:13;53161;26212:12:::0;;;26134:98;53161:13:::1;:29;;;;:::i;:::-;:47;;53143:126;;;::::0;-1:-1:-1;;;53143:126:0;;22718:2:1;53143:126:0::1;::::0;::::1;22700:21:1::0;22757:2;22737:18;;;22730:30;22796:34;22776:18;;;22769:62;-1:-1:-1;;;22847:18:1;;;22840:37;22894:19;;53143:126:0::1;22516:403:1::0;53143:126:0::1;53296:12;::::0;-1:-1:-1;;;53296:12:0;::::1;;;:21;53278:75;;;::::0;-1:-1:-1;;;53278:75:0;;10933:2:1;53278:75:0::1;::::0;::::1;10915:21:1::0;10972:2;10952:18;;;10945:30;11011:25;10991:18;;;10984:53;11054:18;;53278:75:0::1;10731:347:1::0;53278:75:0::1;53364:36;53374:10;53386:13;53364:9;:36::i;:::-;53411:12;:19:::0;;-1:-1:-1;;;;53411:19:0::1;-1:-1:-1::0;;;53411:19:0::1;::::0;;53096:342::o;51838:159::-;-1:-1:-1;;;;;;;;;;;;;;;;;51969:20:0;51981:7;51969:11;:20::i;29682:102::-;29738:13;29769:7;29762:14;;;;;:::i;48075:801::-;46061:9;46074:10;46061:23;46053:66;;;;-1:-1:-1;;;46053:66:0;;14398:2:1;46053:66:0;;;14380:21:1;14437:2;14417:18;;;14410:30;14476:32;14456:18;;;14449:60;14526:18;;46053:66:0;14196:354:1;46053:66:0;48185:10:::1;:26:::0;::::1;-1:-1:-1::0;;;48185:26:0;::::1;;::::0;48249:31:::1;;48308:15;:28:::0;-1:-1:-1;48308:28:0;::::1;::::0;:55:::1;;;48362:1;48350:9;:13;48308:55;48290:108;;;::::0;-1:-1:-1;;;48290:108:0;;12464:2:1;48290:108:0::1;::::0;::::1;12446:21:1::0;12503:2;12483:18;;;12476:30;12542:32;12522:18;;;12515:60;12592:18;;48290:108:0::1;12262:354:1::0;48290:108:0::1;48437:10;48407:11;48421:27:::0;;;:15:::1;:27;::::0;;;;;::::1;;::::0;48465:23:::1;::::0;:11:::1;:23::i;:::-;:31;;48492:4;48465:31;48457:65;;;::::0;-1:-1:-1;;;48457:65:0;;16655:2:1;48457:65:0::1;::::0;::::1;16637:21:1::0;16694:2;16674:18;;;16667:30;16733:23;16713:18;;;16706:51;16774:18;;48457:65:0::1;16453:345:1::0;48457:65:0::1;48570:14;48555:11;48539:13;26212:12:::0;;;26134:98;48539:13:::1;:27;;;;:::i;:::-;:45;;48531:76;;;::::0;-1:-1:-1;;;48531:76:0;;16308:2:1;48531:76:0::1;::::0;::::1;16290:21:1::0;16347:2;16327:18;;;16320:30;-1:-1:-1;;;16366:18:1;;;16359:48;16424:18;;48531:76:0::1;16106:342:1::0;48531:76:0::1;48639:19;48624:11;:34;;48616:69;;;::::0;-1:-1:-1;;;48616:69:0;;20068:2:1;48616:69:0::1;::::0;::::1;20050:21:1::0;20107:2;20087:18;;;20080:30;-1:-1:-1;;;20126:18:1;;;20119:52;20188:18;;48616:69:0::1;19866:346:1::0;48616:69:0::1;48702:15:::0;::::1;48694:42;;;::::0;-1:-1:-1;;;48694:42:0;;25541:2:1;48694:42:0::1;::::0;::::1;25523:21:1::0;25580:2;25560:18;;;25553:30;25619:16;25599:18;;;25592:44;25653:18;;48694:42:0::1;25339:338:1::0;48694:42:0::1;48765:10;48749:27;::::0;;;:15:::1;:27;::::0;;;;:34;;-1:-1:-1;;48749:34:0::1;48779:4;48749:34;::::0;;48792::::1;::::0;48814:11;48792:9:::1;:34::i;:::-;48835:33;48848:19;48856:11:::0;48848:5;:19:::1;:::i;:::-;48835:12;:33::i;:::-;48152:724;;;48075:801:::0;:::o;31444:284::-;-1:-1:-1;;;;;31537:24:0;;23518:10;31537:24;;31529:63;;;;-1:-1:-1;;;31529:63:0;;18189:2:1;31529:63:0;;;18171:21:1;18228:2;18208:18;;;18201:30;18267:28;18247:18;;;18240:56;18313:18;;31529:63:0;17987:350:1;31529:63:0;23518:10;31605:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31605:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31605:53:0;;;;;;;;;;31672:48;;9303:41:1;;;31605:42:0;;23518:10;31672:48;;9276:18:1;31672:48:0;;;;;;;31444:284;;:::o;48904:719::-;46061:9;46074:10;46061:23;46053:66;;;;-1:-1:-1;;;46053:66:0;;14398:2:1;46053:66:0;;;14380:21:1;14437:2;14417:18;;;14410:30;14476:32;14456:18;;;14449:60;14526:18;;46053:66:0;14196:354:1;46053:66:0;49011:37:::1;::::0;;::::1;::::0;::::1;::::0;;49038:10:::1;49011:37:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;;::::0;;;;;;::::1;-1:-1:-1::0;;;49011:37:0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49011:37:0;;::::1;;::::0;;;;;;;;49197:48:::1;49011:37:::0;;49197:14:::1;:48::i;:::-;49189:90;;;::::0;-1:-1:-1;;;49189:90:0;;19307:2:1;49189:90:0::1;::::0;::::1;19289:21:1::0;19346:2;19326:18;;;19319:30;19385:31;19365:18;;;19358:59;19434:18;;49189:90:0::1;19105:353:1::0;49189:90:0::1;49324:14;49312:8;49296:13;26212:12:::0;;;26134:98;49296:13:::1;:24;;;;:::i;:::-;:42;;49288:73;;;::::0;-1:-1:-1;;;49288:73:0;;16308:2:1;49288:73:0::1;::::0;::::1;16290:21:1::0;16347:2;16327:18;;;16320:30;-1:-1:-1;;;16366:18:1;;;16359:48;16424:18;;49288:73:0::1;16106:342:1::0;49288:73:0::1;49417:23;49405:8;49378:24;49391:10;49378:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;49370:97;;;::::0;-1:-1:-1;;;49370:97:0;;21950:2:1;49370:97:0::1;::::0;::::1;21932:21:1::0;21989:2;21969:18;;;21962:30;22028:24;22008:18;;;22001:52;22070:18;;49370:97:0::1;21748:346:1::0;49370:97:0::1;49496:14;;49484:8;:26;;49476:54;;;::::0;-1:-1:-1;;;49476:54:0;;18963:2:1;49476:54:0::1;::::0;::::1;18945:21:1::0;19002:2;18982:18;;;18975:30;19041:17;19021:18;;;19014:45;19076:18;;49476:54:0::1;18761:339:1::0;49476:54:0::1;49539:31;49549:10;49561:8;49539:9;:31::i;:::-;49579:36;49592:22;49606:8:::0;49592:11;:22:::1;:::i;32541:333::-:0;32690:28;32700:4;32706:2;32710:7;32690:9;:28::i;:::-;32745:48;32768:4;32774:2;32778:7;32787:5;32745:22;:48::i;:::-;32727:139;;;;-1:-1:-1;;;32727:139:0;;20419:2:1;32727:139:0;;;20401:21:1;20458:2;20438:18;;;20431:30;20497:34;20477:18;;;20470:62;-1:-1:-1;;;20548:18:1;;;20541:49;20607:19;;32727:139:0;20217:415:1;44895:37:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44895:37:0;;-1:-1:-1;44895:37:0;:::o;52352:419::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;52596:167:::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;;52583:10:::1;:180:::0;;-1:-1:-1;;52583:180:0;;;;;;;::::1;;-1:-1:-1::0;;52583:180:0;;;;::::1;-1:-1:-1::0;;52583:180:0;;;;;-1:-1:-1;;;52583:180:0;;::::1;::::0;;;::::1;::::0;::::1;-1:-1:-1::0;;;52583:180:0;;::::1;;::::0;;52352:419::o;29857:428::-;29965:13;30012:16;30020:7;33220:12;;-1:-1:-1;33210:22:0;33131:109;30012:16;29994:103;;;;-1:-1:-1;;;29994:103:0;;17773:2:1;29994:103:0;;;17755:21:1;17812:2;17792:18;;;17785:30;17851:34;17831:18;;;17824:62;17922:17;17902:18;;;17895:45;17957:19;;29994:103:0;17571:411:1;29994:103:0;30110:21;30134:10;:8;:10::i;:::-;30110:34;;30193:1;30175:7;30169:21;:25;:108;;;;;;;;;;;;;;;;;30232:7;30241:18;:7;:16;:18::i;:::-;30215:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30169:108;30153:124;29857:428;-1:-1:-1;;;29857:428:0:o;46312:923::-;46061:9;46074:10;46061:23;46053:66;;;;-1:-1:-1;;;46053:66:0;;14398:2:1;46053:66:0;;;14380:21:1;14437:2;14417:18;;;14410:30;14476:32;14456:18;;;14449:60;14526:18;;46053:66:0;14196:354:1;46053:66:0;46423:10:::1;:26:::0;46567:10:::1;46399:13;46551:27:::0;;;:15:::1;:27;::::0;;;;;46423:26:::1;-1:-1:-1::0;;;46423:26:0;::::1;;::::0;46485:31:::1;;::::0;46605:15:::1;:28:::0;-1:-1:-1;46605:28:0;::::1;::::0;:55:::1;;;46659:1;46647:9;:13;46605:55;46587:108;;;::::0;-1:-1:-1;;;46587:108:0;;12464:2:1;46587:108:0::1;::::0;::::1;12446:21:1::0;12503:2;12483:18;;;12476:30;12542:32;12522:18;;;12515:60;12592:18;;46587:108:0::1;12262:354:1::0;46587:108:0::1;46712:10:::0;46704:54:::1;;;::::0;-1:-1:-1;;;46704:54:0;;15536:2:1;46704:54:0::1;::::0;::::1;15518:21:1::0;15575:2;15555:18;;;15548:30;15614:33;15594:18;;;15587:61;15665:18;;46704:54:0::1;15334:355:1::0;46704:54:0::1;46792:1;46773:16;:20;46765:80;;;::::0;-1:-1:-1;;;46765:80:0;;22301:2:1;46765:80:0::1;::::0;::::1;22283:21:1::0;22340:2;22320:18;;;22313:30;22379:34;22359:18;;;22352:62;22450:18;22430;;;22423:46;22486:19;;46765:80:0::1;22099:412:1::0;46765:80:0::1;46880:11;46860:16;:31;;46852:80;;;::::0;-1:-1:-1;;;46852:80:0;;10184:2:1;46852:80:0::1;::::0;::::1;10166:21:1::0;10223:2;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;-1:-1:-1;;;10313:18:1;;;10306:35;10358:19;;46852:80:0::1;9982:401:1::0;46852:80:0::1;46978:14;46963:11;46947:13;26212:12:::0;;;26134:98;46947:13:::1;:27;;;;:::i;:::-;:45;;46939:76;;;::::0;-1:-1:-1;;;46939:76:0;;16308:2:1;46939:76:0::1;::::0;::::1;16290:21:1::0;16347:2;16327:18;;;16320:30;-1:-1:-1;;;16366:18:1;;;16359:48;16424:18;;46939:76:0::1;16106:342:1::0;46939:76:0::1;47045:19;47030:11;:34;;47022:69;;;::::0;-1:-1:-1;;;47022:69:0;;20068:2:1;47022:69:0::1;::::0;::::1;20050:21:1::0;20107:2;20087:18;;;20080:30;-1:-1:-1;;;20126:18:1;;;20119:52;20188:18;;47022:69:0::1;19866:346:1::0;47022:69:0::1;47116:10;47100:27;::::0;;;:15:::1;:27;::::0;;;;:42;;47131:11;;47100:27;:42:::1;::::0;47131:11;;47100:42:::1;:::i;:::-;::::0;;;-1:-1:-1;47151:34:0::1;::::0;-1:-1:-1;47161:10:0::1;47173:11:::0;47151:9:::1;:34::i;53856:74::-:0;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;53910:3:::1;:10:::0;53856:74::o;47266:776::-;46061:9;46074:10;46061:23;46053:66;;;;-1:-1:-1;;;46053:66:0;;14398:2:1;46053:66:0;;;14380:21:1;14437:2;14417:18;;;14410:30;14476:32;14456:18;;;14449:60;14526:18;;46053:66:0;14196:354:1;46053:66:0;47388:10:::1;:22:::0;-1:-1:-1;;;47388:22:0;::::1;;;::::0;47448:33;;::::1;;;47509:15;-1:-1:-1::0;;47509:28:0;::::1;::::0;:55:::1;;;47563:1;47551:9;:13;47509:55;47491:110;;;::::0;-1:-1:-1;;;47491:110:0;;11285:2:1;47491:110:0::1;::::0;::::1;11267:21:1::0;;;11304:18;;;11297:30;11363:34;11343:18;;;11336:62;11415:18;;47491:110:0::1;11083:356:1::0;47491:110:0::1;47649:14;47634:11;47618:13;26212:12:::0;;;26134:98;47618:13:::1;:27;;;;:::i;:::-;:45;;47610:76;;;::::0;-1:-1:-1;;;47610:76:0;;16308:2:1;47610:76:0::1;::::0;::::1;16290:21:1::0;16347:2;16327:18;;;16320:30;-1:-1:-1;;;16366:18:1;;;16359:48;16424:18;;47610:76:0::1;16106:342:1::0;47610:76:0::1;47718:19;47703:11;:34;;47695:69;;;::::0;-1:-1:-1;;;47695:69:0;;20068:2:1;47695:69:0::1;::::0;::::1;20050:21:1::0;20107:2;20087:18;;;20080:30;-1:-1:-1;;;20126:18:1;;;20119:52;20188:18;;47695:69:0::1;19866:346:1::0;47695:69:0::1;51649:3:::0;;51654:9;;51623:41;;;-1:-1:-1;;47800:10:0::1;6699:2:1::0;6695:15;;;6691:24;;51623:41:0;;;;6679:37:1;;;;6732:12;;;6725:28;;;;6787:15;;;;;;;6769:12;;;6762:46;51623:41:0;;;;;;;;;6824:12:1;;;;51623:41:0;;51613:52;;;;;47781:5:::1;:30;47773:61;;;::::0;-1:-1:-1;;;47773:61:0;;12823:2:1;47773:61:0::1;::::0;::::1;12805:21:1::0;12862:2;12842:18;;;12835:30;12901:20;12881:18;;;12874:48;12939:18;;47773:61:0::1;12621:342:1::0;47773:61:0::1;47867:10;47851:27;::::0;;;:15:::1;:27;::::0;;;;;::::1;;:36;47843:63;;;::::0;-1:-1:-1;;;47843:63:0;;10590:2:1;47843:63:0::1;::::0;::::1;10572:21:1::0;10629:2;10609:18;;;10602:30;10668:16;10648:18;;;10641:44;10702:18;;47843:63:0::1;10388:338:1::0;47843:63:0::1;47931:10;47915:27;::::0;;;:15:::1;:27;::::0;;;;:34;;-1:-1:-1;;47915:34:0::1;47945:4;47915:34;::::0;;47958::::1;::::0;47980:11;47958:9:::1;:34::i;:::-;48001:33;48014:19;48022:11:::0;48014:5;:19:::1;:::i;50247:228::-:0;50366:4;50397:19;;;;;:70;;-1:-1:-1;;50429:15:0;:38;;;50381:86;-1:-1:-1;50247:228:0:o;51717:111::-;51775:7;51800:20;51814:5;51800:13;:20::i;42774:201::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;-1:-1:-1;;;;;42863:22:0;::::1;42855:73;;;::::0;-1:-1:-1;;;42855:73:0;;11646:2:1;42855:73:0::1;::::0;::::1;11628:21:1::0;11685:2;11665:18;;;11658:30;11724:34;11704:18;;;11697:62;-1:-1:-1;;;11775:18:1;;;11768:36;11821:19;;42855:73:0::1;11444:402:1::0;42855:73:0::1;42939:28;42958:8;42939:18;:28::i;:::-;42774:201:::0;:::o;52830:212::-;41911:7;41938:6;-1:-1:-1;;;;;41938:6:0;23518:10;42085:23;42077:68;;;;-1:-1:-1;;;42077:68:0;;17412:2:1;42077:68:0;;;17394:21:1;;;17431:18;;;17424:30;-1:-1:-1;;;;;;;;;;;17470:18:1;;;17463:62;17542:18;;42077:68:0;17210:356:1;42077:68:0;52915:9:::1;52910:125;52930:20:::0;;::::1;52910:125;;;53004:19;52972:15;:29;52988:9;;52998:1;52988:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52972:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52972:29:0;:51;52952:3;::::1;::::0;::::1;:::i;:::-;;;;52910:125;;37050:186:::0;37157:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37157:29:0;-1:-1:-1;;;;;37157:29:0;;;;;;;;;37200:28;;37157:24;;37200:28;;;;;;;37050:186;;;:::o;35311:1619::-;35418:35;35456:20;35468:7;35456:11;:20::i;:::-;35531:18;;35418:58;;-1:-1:-1;35489:22:0;;-1:-1:-1;;;;;35515:34:0;23518:10;-1:-1:-1;;;;;35515:34:0;;:83;;;-1:-1:-1;23518:10:0;35562:20;35574:7;35562:11;:20::i;:::-;-1:-1:-1;;;;;35562:36:0;;35515:83;:146;;;-1:-1:-1;35628:18:0;;35611:50;;23518:10;31801:202;:::i;35611:50::-;35489:173;;35693:17;35675:107;;;;-1:-1:-1;;;35675:107:0;;18544:2:1;35675:107:0;;;18526:21:1;18583:2;18563:18;;;18556:30;18622:34;18602:18;;;18595:62;18693:20;18673:18;;;18666:48;18731:19;;35675:107:0;18342:414:1;35675:107:0;35835:4;-1:-1:-1;;;;;35813:26:0;:13;:18;;;-1:-1:-1;;;;;35813:26:0;;35795:104;;;;-1:-1:-1;;;35795:104:0;;17005:2:1;35795:104:0;;;16987:21:1;17044:2;17024:18;;;17017:30;17083:34;17063:18;;;17056:62;-1:-1:-1;;;17134:18:1;;;17127:36;17180:19;;35795:104:0;16803:402:1;35795:104:0;-1:-1:-1;;;;;35916:16:0;;35908:66;;;;-1:-1:-1;;;35908:66:0;;13574:2:1;35908:66:0;;;13556:21:1;13613:2;13593:18;;;13586:30;13652:34;13632:18;;;13625:62;-1:-1:-1;;;13703:18:1;;;13696:35;13748:19;;35908:66:0;13372:401:1;35908:66:0;36093:49;36110:1;36114:7;36123:13;:18;;;36093:8;:49::i;:::-;-1:-1:-1;;;;;36155:18:0;;;;;;:12;:18;;;;;:31;;36185:1;;36155:18;:31;;36185:1;;-1:-1:-1;;;;;36155:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;36155:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36195:16:0;;-1:-1:-1;36195:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;36195:16:0;;:29;;-1:-1:-1;;36195:29:0;;:::i;:::-;;;-1:-1:-1;;;;;36195:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36256:43:0;;;;;;;;-1:-1:-1;;;;;36256:43:0;;;;;;36282:15;36256:43;;;;;;;;;-1:-1:-1;36233:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;36233:66:0;-1:-1:-1;;;;;;36233:66:0;;;;;;;;;;;36557:11;36245:7;-1:-1:-1;36557:11:0;:::i;:::-;36622:1;36581:24;;;:11;:24;;;;;:29;36535:33;;-1:-1:-1;;;;;;36581:29:0;36577:250;;36641:20;36649:11;33220:12;;-1:-1:-1;33210:22:0;33131:109;36641:20;36637:181;;;36703:103;;;;;;;;36732:18;;-1:-1:-1;;;;;36703:103:0;;;;;;36765:28;;;;36703:103;;;;;;;;;;-1:-1:-1;36676:24:0;;;:11;:24;;;;;;;:130;;;;;;;;;-1:-1:-1;;;36676:130:0;-1:-1:-1;;;;;;36676:130:0;;;;;;;;;;;;36637:181;36863:7;36859:2;-1:-1:-1;;;;;36844:27:0;36853:4;-1:-1:-1;;;;;36844:27:0;;;;;;;;;;;36880:42;35409:1521;;;35311:1619;;;:::o;37404:884::-;37496:24;;37537:12;37529:49;;;;-1:-1:-1;;;37529:49:0;;15183:2:1;37529:49:0;;;15165:21:1;15222:2;15202:18;;;15195:30;15261:26;15241:18;;;15234:54;15305:18;;37529:49:0;14981:348:1;37529:49:0;37587:16;37637:1;37606:28;37626:8;37606:17;:28;:::i;:::-;:32;;;;:::i;:::-;37587:51;-1:-1:-1;37662:18:0;37679:1;37662:14;:18;:::i;:::-;37651:8;:29;37647:85;;;37704:18;37721:1;37704:14;:18;:::i;:::-;37693:29;;37647:85;37851:17;37859:8;33220:12;;-1:-1:-1;33210:22:0;33131:109;37851:17;37843:68;;;;-1:-1:-1;;;37843:68:0;;23541:2:1;37843:68:0;;;23523:21:1;23580:2;23560:18;;;23553:30;23619:34;23599:18;;;23592:62;-1:-1:-1;;;23670:18:1;;;23663:36;23716:19;;37843:68:0;23339:402:1;37843:68:0;37937:17;37920:313;37961:8;37956:1;:13;37920:313;;38022:1;37991:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;37991:19:0;37987:237;;38039:31;38073:14;38085:1;38073:11;:14::i;:::-;38117:95;;;;;;;;38146:14;;-1:-1:-1;;;;;38117:95:0;;;;;;38175:24;;;;38117:95;;;;;;;;;;-1:-1:-1;38100:14:0;;;:11;:14;;;;;;;:112;;;;;;;;;-1:-1:-1;;;38100:112:0;-1:-1:-1;;;;;;38100:112:0;;;;;;;;;;;;-1:-1:-1;37987:237:0;37971:3;;;;:::i;:::-;;;;37920:313;;;-1:-1:-1;38268:12:0;:8;38279:1;38268:12;:::i;:::-;38241:24;:39;-1:-1:-1;;;37404:884:0:o;28612:646::-;-1:-1:-1;;;;;;;;;;;;;;;;;28739:16:0;28747:7;33220:12;;-1:-1:-1;33210:22:0;33131:109;28739:16;28731:71;;;;-1:-1:-1;;;28731:71:0;;12053:2:1;28731:71:0;;;12035:21:1;12092:2;12072:18;;;12065:30;12131:34;12111:18;;;12104:62;-1:-1:-1;;;12182:18:1;;;12175:40;12232:19;;28731:71:0;11851:406:1;28731:71:0;28815:26;28865:12;28854:7;:23;28850:97;;28911:22;28921:12;28911:7;:22;:::i;:::-;:26;;28936:1;28911:26;:::i;:::-;28890:47;;28850:97;28979:7;28959:222;28996:18;28988:4;:26;28959:222;;29035:31;29069:17;;;:11;:17;;;;;;;;;29035:51;;;;;;;;;-1:-1:-1;;;;;29035:51:0;;;;;-1:-1:-1;;;29035:51:0;;;;;;;;;;;;29101:28;29097:75;;29151:9;28612:646;-1:-1:-1;;;;28612:646:0:o;29097:75::-;-1:-1:-1;29016:6:0;;;;:::i;:::-;;;;28959:222;;;-1:-1:-1;29193:57:0;;-1:-1:-1;;;29193:57:0;;24308:2:1;29193:57:0;;;24290:21:1;24347:2;24327:18;;;24320:30;24386:34;24366:18;;;24359:62;24457:17;24437:18;;;24430:45;24492:19;;29193:57:0;24106:411:1;43135:191:0;43209:16;43228:6;;-1:-1:-1;;;;;43245:17:0;;;-1:-1:-1;;;;;;43245:17:0;;;;;;43278:40;;43228:6;;;;;;;43278:40;;43209:16;43278:40;43198:128;43135:191;:::o;33250:102::-;33317:27;33327:2;33331:8;33317:27;;;;;;;;;;;;:9;:27::i;:::-;33250:102;;:::o;49846:214::-;49921:5;49908:9;:18;;49900:53;;;;-1:-1:-1;;;49900:53:0;;20839:2:1;49900:53:0;;;20821:21:1;20878:2;20858:18;;;20851:30;20917:24;20897:18;;;20890:52;20959:18;;49900:53:0;20637:346:1;49900:53:0;49978:5;49966:9;:17;49962:91;;;50004:10;49996:47;50025:17;50037:5;50025:9;:17;:::i;:::-;49996:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38855:736;39002:4;-1:-1:-1;;;;;39021:13:0;;3267:20;3315:8;39017:567;;39064:72;;-1:-1:-1;;;39064:72:0;;-1:-1:-1;;;;;39064:36:0;;;;;:72;;23518:10;;39115:4;;39121:7;;39130:5;;39064:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39064:72:0;;;;;;;;-1:-1:-1;;39064:72:0;;;;;;;;;;;;:::i;:::-;;;39049:488;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39303:13:0;;39299:227;;39338:61;;-1:-1:-1;;;39338:61:0;;20419:2:1;39338:61:0;;;20401:21:1;20458:2;20438:18;;;20431:30;20497:34;20477:18;;;20470:62;-1:-1:-1;;;20548:18:1;;;20541:49;20607:19;;39338:61:0;20217:415:1;39299:227:0;39490:6;39484:13;39475:6;39471:2;39467:15;39460:38;39049:488;-1:-1:-1;;;;;;39190:55:0;-1:-1:-1;;;39190:55:0;;-1:-1:-1;39183:62:0;;39017:567;-1:-1:-1;39570:4:0;39017:567;38855:736;;;;;;:::o;52067:112::-;52127:13;52158;52151:20;;;;;:::i;365:723::-;421:13;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;867:17;;;;;;;;:::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;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28350:252;28411:7;-1:-1:-1;;;;;28447:19:0;;28429:108;;;;-1:-1:-1;;;28429:108:0;;13980:2:1;28429:108:0;;;13962:21:1;14019:2;13999:18;;;13992:30;14058:34;14038:18;;;14031:62;14129:19;14109:18;;;14102:47;14166:19;;28429:108:0;13778:413:1;28429:108:0;-1:-1:-1;;;;;;28561:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28561:32:0;;-1:-1:-1;;;;;28561:32:0;;28350:252::o;33717:1338::-;33855:12;;-1:-1:-1;;;;;33884:16:0;;33876:62;;;;-1:-1:-1;;;33876:62:0;;21548:2:1;33876:62:0;;;21530:21:1;21587:2;21567:18;;;21560:30;21626:34;21606:18;;;21599:62;-1:-1:-1;;;21677:18:1;;;21670:31;21718:19;;33876:62:0;21346:397:1;33876:62:0;34079:21;34087:12;33220;;-1:-1:-1;33210:22:0;33131:109;34079:21;34078:22;34070:64;;;;-1:-1:-1;;;34070:64:0;;21190:2:1;34070:64:0;;;21172:21:1;21229:2;21209:18;;;21202:30;21268:31;21248:18;;;21241:59;21317:18;;34070:64:0;20988:353:1;34070:64:0;34163:12;34151:8;:24;;34143:71;;;;-1:-1:-1;;;34143:71:0;;25138:2:1;34143:71:0;;;25120:21:1;25177:2;25157:18;;;25150:30;25216:34;25196:18;;;25189:62;-1:-1:-1;;;25267:18:1;;;25260:32;25309:19;;34143:71:0;24936:398:1;34143:71:0;-1:-1:-1;;;;;34334:16:0;;34301:30;34334:16;;;:12;:16;;;;;;;;;34301:49;;;;;;;;;-1:-1:-1;;;;;34301:49:0;;;;;-1:-1:-1;;;34301:49:0;;;;;;;;;;;34378:125;;;;;;;;34400:19;;34301:49;;34378:125;;;34400:39;;34430:8;;34400:39;:::i;:::-;-1:-1:-1;;;;;34378:125:0;;;;;34485:8;34450:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34378:125:0;;;;;;-1:-1:-1;;;;;34359:16:0;;;;;;;:12;:16;;;;;;;;:144;;;;;;;;-1:-1:-1;;;34359:144:0;;;;;;;;;;;;34540:43;;;;;;;;;;;34566:15;34540:43;;;;;;;;34512:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34512:71:0;-1:-1:-1;;;;;;34512:71:0;;;;;;;;;;;;;;;;;;34524:12;;34644:295;34668:8;34664:1;:12;34644:295;;;34699:38;;34724:12;;-1:-1:-1;;;;;34699:38:0;;;34716:1;;34699:38;;34716:1;;34699:38;34768:59;34799:1;34803:2;34807:12;34821:5;34768:22;:59::i;:::-;34748:156;;;;-1:-1:-1;;;34748:156:0;;20419:2:1;34748:156:0;;;20401:21:1;20458:2;20438:18;;;20431:30;20497:34;20477:18;;;20470:62;-1:-1:-1;;;20548:18:1;;;20541:49;20607:19;;34748:156:0;20217:415:1;34748:156:0;34915:14;;;;:::i;:::-;;;;34678:3;;;;;:::i;:::-;;;;34644:295;;;-1:-1:-1;34951:12:0;:27;;;34987:60;48075:801;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:163::-;282:20;;342:10;331:22;;321:33;;311:61;;368:1;365;358:12;383:171;450:20;;510:18;499:30;;489:41;;479:69;;544:1;541;534:12;559:186;618:6;671:2;659:9;650:7;646:23;642:32;639:52;;;687:1;684;677:12;639:52;710:29;729:9;710:29;:::i;750:260::-;818:6;826;879:2;867:9;858:7;854:23;850:32;847:52;;;895:1;892;885:12;847:52;918:29;937:9;918:29;:::i;:::-;908:39;;966:38;1000:2;989:9;985:18;966:38;:::i;:::-;956:48;;750:260;;;;;:::o;1015:328::-;1092:6;1100;1108;1161:2;1149:9;1140:7;1136:23;1132:32;1129:52;;;1177:1;1174;1167:12;1129:52;1200:29;1219:9;1200:29;:::i;:::-;1190:39;;1248:38;1282:2;1271:9;1267:18;1248:38;:::i;:::-;1238:48;;1333:2;1322:9;1318:18;1305:32;1295:42;;1015:328;;;;;:::o;1348:1138::-;1443:6;1451;1459;1467;1520:3;1508:9;1499:7;1495:23;1491:33;1488:53;;;1537:1;1534;1527:12;1488:53;1560:29;1579:9;1560:29;:::i;:::-;1550:39;;1608:38;1642:2;1631:9;1627:18;1608:38;:::i;:::-;1598:48;;1693:2;1682:9;1678:18;1665:32;1655:42;;1748:2;1737:9;1733:18;1720:32;1771:18;1812:2;1804:6;1801:14;1798:34;;;1828:1;1825;1818:12;1798:34;1866:6;1855:9;1851:22;1841:32;;1911:7;1904:4;1900:2;1896:13;1892:27;1882:55;;1933:1;1930;1923:12;1882:55;1969:2;1956:16;1991:2;1987;1984:10;1981:36;;;1997:18;;:::i;:::-;2072:2;2066:9;2040:2;2126:13;;-1:-1:-1;;2122:22:1;;;2146:2;2118:31;2114:40;2102:53;;;2170:18;;;2190:22;;;2167:46;2164:72;;;2216:18;;:::i;:::-;2256:10;2252:2;2245:22;2291:2;2283:6;2276:18;2331:7;2326:2;2321;2317;2313:11;2309:20;2306:33;2303:53;;;2352:1;2349;2342:12;2303:53;2408:2;2403;2399;2395:11;2390:2;2382:6;2378:15;2365:46;2453:1;2448:2;2443;2435:6;2431:15;2427:24;2420:35;2474:6;2464:16;;;;;;;1348:1138;;;;;;;:::o;2491:347::-;2556:6;2564;2617:2;2605:9;2596:7;2592:23;2588:32;2585:52;;;2633:1;2630;2623:12;2585:52;2656:29;2675:9;2656:29;:::i;:::-;2646:39;;2735:2;2724:9;2720:18;2707:32;2782:5;2775:13;2768:21;2761:5;2758:32;2748:60;;2804:1;2801;2794:12;2748:60;2827:5;2817:15;;;2491:347;;;;;:::o;2843:254::-;2911:6;2919;2972:2;2960:9;2951:7;2947:23;2943:32;2940:52;;;2988:1;2985;2978:12;2940:52;3011:29;3030:9;3011:29;:::i;:::-;3001:39;3087:2;3072:18;;;;3059:32;;-1:-1:-1;;;2843:254:1:o;3102:615::-;3188:6;3196;3249:2;3237:9;3228:7;3224:23;3220:32;3217:52;;;3265:1;3262;3255:12;3217:52;3305:9;3292:23;3334:18;3375:2;3367:6;3364:14;3361:34;;;3391:1;3388;3381:12;3361:34;3429:6;3418:9;3414:22;3404:32;;3474:7;3467:4;3463:2;3459:13;3455:27;3445:55;;3496:1;3493;3486:12;3445:55;3536:2;3523:16;3562:2;3554:6;3551:14;3548:34;;;3578:1;3575;3568:12;3548:34;3631:7;3626:2;3616:6;3613:1;3609:14;3605:2;3601:23;3597:32;3594:45;3591:65;;;3652:1;3649;3642:12;3591:65;3683:2;3675:11;;;;;3705:6;;-1:-1:-1;3102:615:1;;-1:-1:-1;;;;3102:615:1:o;3722:248::-;3790:6;3798;3851:2;3839:9;3830:7;3826:23;3822:32;3819:52;;;3867:1;3864;3857:12;3819:52;-1:-1:-1;;3890:23:1;;;3960:2;3945:18;;;3932:32;;-1:-1:-1;3722:248:1:o;3975:245::-;4033:6;4086:2;4074:9;4065:7;4061:23;4057:32;4054:52;;;4102:1;4099;4092:12;4054:52;4141:9;4128:23;4160:30;4184:5;4160:30;:::i;4225:249::-;4294:6;4347:2;4335:9;4326:7;4322:23;4318:32;4315:52;;;4363:1;4360;4353:12;4315:52;4395:9;4389:16;4414:30;4438:5;4414:30;:::i;4479:592::-;4550:6;4558;4611:2;4599:9;4590:7;4586:23;4582:32;4579:52;;;4627:1;4624;4617:12;4579:52;4667:9;4654:23;4696:18;4737:2;4729:6;4726:14;4723:34;;;4753:1;4750;4743:12;4723:34;4791:6;4780:9;4776:22;4766:32;;4836:7;4829:4;4825:2;4821:13;4817:27;4807:55;;4858:1;4855;4848:12;4807:55;4898:2;4885:16;4924:2;4916:6;4913:14;4910:34;;;4940:1;4937;4930:12;4910:34;4985:7;4980:2;4971:6;4967:2;4963:15;4959:24;4956:37;4953:57;;;5006:1;5003;4996:12;5076:180;5135:6;5188:2;5176:9;5167:7;5163:23;5159:32;5156:52;;;5204:1;5201;5194:12;5156:52;-1:-1:-1;5227:23:1;;5076:180;-1:-1:-1;5076:180:1:o;5261:184::-;5331:6;5384:2;5372:9;5363:7;5359:23;5355:32;5352:52;;;5400:1;5397;5390:12;5352:52;-1:-1:-1;5423:16:1;;5261:184;-1:-1:-1;5261:184:1:o;5703:474::-;5793:6;5801;5809;5817;5825;5878:3;5866:9;5857:7;5853:23;5849:33;5846:53;;;5895:1;5892;5885:12;5846:53;5918:28;5936:9;5918:28;:::i;:::-;5908:38;;5965:37;5998:2;5987:9;5983:18;5965:37;:::i;:::-;5955:47;;6021:37;6054:2;6043:9;6039:18;6021:37;:::i;:::-;6011:47;;6077:37;6110:2;6099:9;6095:18;6077:37;:::i;:::-;6067:47;;6133:38;6166:3;6155:9;6151:19;6133:38;:::i;:::-;6123:48;;5703:474;;;;;;;;:::o;6182:257::-;6223:3;6261:5;6255:12;6288:6;6283:3;6276:19;6304:63;6360:6;6353:4;6348:3;6344:14;6337:4;6330:5;6326:16;6304:63;:::i;:::-;6421:2;6400:15;-1:-1:-1;;6396:29:1;6387:39;;;;6428:4;6383:50;;6182:257;-1:-1:-1;;6182:257:1:o;6847:470::-;7026:3;7064:6;7058:13;7080:53;7126:6;7121:3;7114:4;7106:6;7102:17;7080:53;:::i;:::-;7196:13;;7155:16;;;;7218:57;7196:13;7155:16;7252:4;7240:17;;7218:57;:::i;:::-;7291:20;;6847:470;-1:-1:-1;;;;6847:470:1:o;8010:511::-;8204:4;-1:-1:-1;;;;;8314:2:1;8306:6;8302:15;8291:9;8284:34;8366:2;8358:6;8354:15;8349:2;8338:9;8334:18;8327:43;;8406:6;8401:2;8390:9;8386:18;8379:34;8449:3;8444:2;8433:9;8429:18;8422:31;8470:45;8510:3;8499:9;8495:19;8487:6;8470:45;:::i;:::-;8462:53;8010:511;-1:-1:-1;;;;;;8010:511:1:o;8526:632::-;8697:2;8749:21;;;8819:13;;8722:18;;;8841:22;;;8668:4;;8697:2;8920:15;;;;8894:2;8879:18;;;8668:4;8963:169;8977:6;8974:1;8971:13;8963:169;;;9038:13;;9026:26;;9107:15;;;;9072:12;;;;8999:1;8992:9;8963:169;;;-1:-1:-1;9149:3:1;;8526:632;-1:-1:-1;;;;;;8526:632:1:o;9355:219::-;9504:2;9493:9;9486:21;9467:4;9524:44;9564:2;9553:9;9549:18;9541:6;9524:44;:::i;26821:253::-;26861:3;-1:-1:-1;;;;;26950:2:1;26947:1;26943:10;26980:2;26977:1;26973:10;27011:3;27007:2;27003:12;26998:3;26995:21;26992:47;;;27019:18;;:::i;27079:128::-;27119:3;27150:1;27146:6;27143:1;27140:13;27137:39;;;27156:18;;:::i;:::-;-1:-1:-1;27192:9:1;;27079:128::o;27212:120::-;27252:1;27278;27268:35;;27283:18;;:::i;:::-;-1:-1:-1;27317:9:1;;27212:120::o;27337:168::-;27377:7;27443:1;27439;27435:6;27431:14;27428:1;27425:21;27420:1;27413:9;27406:17;27402:45;27399:71;;;27450:18;;:::i;:::-;-1:-1:-1;27490:9:1;;27337:168::o;27510:246::-;27550:4;-1:-1:-1;;;;;27663:10:1;;;;27633;;27685:12;;;27682:38;;;27700:18;;:::i;:::-;27737:13;;27510:246;-1:-1:-1;;;27510:246:1:o;27761:125::-;27801:4;27829:1;27826;27823:8;27820:34;;;27834:18;;:::i;:::-;-1:-1:-1;27871:9:1;;27761:125::o;27891:258::-;27963:1;27973:113;27987:6;27984:1;27981:13;27973:113;;;28063:11;;;28057:18;28044:11;;;28037:39;28009:2;28002:10;27973:113;;;28104:6;28101:1;28098:13;28095:48;;;-1:-1:-1;;28139:1:1;28121:16;;28114:27;27891:258::o;28154:136::-;28193:3;28221:5;28211:39;;28230:18;;:::i;:::-;-1:-1:-1;;;28266:18:1;;28154:136::o;28295:380::-;28374:1;28370:12;;;;28417;;;28438:61;;28492:4;28484:6;28480:17;28470:27;;28438:61;28545:2;28537:6;28534:14;28514:18;28511:38;28508:161;;;28591:10;28586:3;28582:20;28579:1;28572:31;28626:4;28623:1;28616:15;28654:4;28651:1;28644:15;28508:161;;28295:380;;;:::o;28680:135::-;28719:3;-1:-1:-1;;28740:17:1;;28737:43;;;28760:18;;:::i;:::-;-1:-1:-1;28807:1:1;28796:13;;28680:135::o;28820:112::-;28852:1;28878;28868:35;;28883:18;;:::i;:::-;-1:-1:-1;28917:9:1;;28820:112::o;28937:127::-;28998:10;28993:3;28989:20;28986:1;28979:31;29029:4;29026:1;29019:15;29053:4;29050:1;29043:15;29069:127;29130:10;29125:3;29121:20;29118:1;29111:31;29161:4;29158:1;29151:15;29185:4;29182:1;29175:15;29201:127;29262:10;29257:3;29253:20;29250:1;29243:31;29293:4;29290:1;29283:15;29317:4;29314:1;29307:15;29333:127;29394:10;29389:3;29385:20;29382:1;29375:31;29425:4;29422:1;29415:15;29449:4;29446:1;29439:15;29465:131;-1:-1:-1;;;;;;29539:32:1;;29529:43;;29519:71;;29586:1;29583;29576:12

Swarm Source

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