ETH Price: $2,454.74 (+0.54%)
Gas: 3.9 Gwei

Token

RuneApes (RuneApes)
 

Overview

Max Total Supply

172 RuneApes

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
RuneApePotions: Deployer
Balance
1 RuneApes
0x6dc44ebe4c206c3a6e10c8205a3e260331c7299c
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:
RuneApes

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-26
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

/// @notice A generic interface for a contract which properly accepts ERC721 tokens.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol)
interface ERC721TokenReceiver {
  function onERC721Received(
    address operator,
    address from,
    uint256 id,
    bytes calldata data
  ) external returns (bytes4);
}
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// 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;
    }
}
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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);
}

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

// 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;
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// 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);
}
// 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);
}
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 {}
}
// 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;
    }
}
// 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);
    }
}
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
// 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);
    }
}

pragma solidity ^0.8.0;


contract RuneApes is ReentrancyGuard, Ownable, ERC721A{


    using Strings for uint256;
    using SafeMath for uint256;

    bytes32 public merkleRoot;

    uint256 constant public maxNFT = 7300;
    uint256 constant public maxGenesisNFT = 500;
    uint256 public genesisClaimed;


    address payable private addr0 = payable(0x76B9105fD7996e6e3bc4fF219fbC578f81dF03de);  // 51.5%
    address payable private addr1 = payable(0x6Dc44eBE4c206c3A6E10c8205a3e260331C7299C);  // 16%
    address payable private addr2 = payable(0xE88fC340E7213A4E5B4d8d8EaFBB1A763Cef8024);  // 8.5%
    address payable private addr3 = payable(0x3cDA0a3a579C8E9894ee4B2547640A2d38B605f2);  // 7.5%
    address payable private addr4 = payable(0x385Ad17679A80Fc0FF13cC4EF506Ef9E8637c131);  // 7%
    address payable private addr5 = payable(0xC6fD0A84c32BE1C56De8e08cEd206855c608e88F);  // dev1 2%
    address payable private addr6 = payable(0xAD846dF46442e7B3BafE456b1819954898330030);  // dev2 2%
    address payable private addr7 = payable(0x31a02FbA4C2CB735e8099b616B70373970b1Ad29);  // 2%
    address payable private addr8 = payable(0x8F2A2bDF2eD27ED7904b450714C9258AdDA86AAf);  // 2%
    address payable private addr9 = payable(0x1882f410FC04732C7436df58aFC056182E4C9Caf);  // 1%
    address payable private addr10 = payable(0xA444f77C9d23Fb014A0a024296cC74aF0f874E8F); // .5%

    mapping(address => uint256 ) public genesisClaim;
    mapping(address => uint256 ) public presaleClaim;

    bool public activeGenesis;
    bool public activeGenesisPublic;
    bool public activePublic;
    bool public activePresale;

    string private _prefixURI;

    event Activate(bool activategenesispublic,bool activategenesis, bool activepresale,bool activepublic);
    event SetMerkleRoot(bytes32 merkleRoot);

    /* royalties */
    uint256 private _royaltyBps;
    address payable private _royaltyRecipient;

    bytes4 private constant _INTERFACE_ID_ROYALTIES = 0xbb3bafd6; //bytes4(keccak256('getRoyalties(uint256)')) == 0xbb3bafd6
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a; //bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

    constructor(bytes32 _merkleRoot) ERC721A("RuneApes", "RuneApes", 10, 7300){

        _royaltyRecipient = payable(msg.sender);
        _royaltyBps = 250;
        merkleRoot = _merkleRoot;
        _prefixURI = "https://ipfs.io/ipfs/";
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;

        emit SetMerkleRoot(merkleRoot);
    }

    /**
     * @dev Activate mint
     */
    function activate(bool _activateGenesisPublic, bool _activateGenesis, bool _activePresale, bool _activePublic) external onlyOwner{
        activeGenesis = _activateGenesis;
        activeGenesisPublic = _activateGenesisPublic;
        activePublic = _activePublic;
        activePresale = _activePresale;

        emit Activate(activeGenesisPublic,activeGenesis,activePresale,activePublic);
    }


    function setPrefixURI(string calldata uri) external onlyOwner {
        _prefixURI = uri;
    }

    function tokenURI(uint256 tokenId) public view override returns(string memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
        return string(abi.encodePacked(_prefixURI, tokenId.toString()));
    }


    function GenesisMint(
        uint256 amount,
        bytes32[] calldata merkleProof
    ) public payable nonReentrant {

        require(msg.sender == tx.origin, "NOT EOA");

        require(activeGenesis && !activeGenesisPublic && !activePresale && !activePublic, "InactiveGenesis");

        require(amount > 0 && amount <= 3 &&  msg.value ==  (amount * 0.07 ether), "Bad amount or invalid eth sent");
        require(totalSupply() + amount <= maxGenesisNFT, "Too many Claimed");
        require(genesisClaim[msg.sender] + amount <= 3, "Too many Genesis Claimed");

        bytes32 node = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "MerkleDistributor: Invalid proof."
        );

        genesisClaim[msg.sender]  += amount;

        _safeMint(msg.sender, amount);
    }

    function publicGenesis(uint256 amount) public payable nonReentrant{

        require(msg.sender == tx.origin, "NOT EOA");

        require(!activeGenesis && activeGenesisPublic && !activePresale && !activePublic, "InactivePublicGenesis");
        require(amount > 0 && amount <= 7 && msg.value ==  (amount * 0.09 ether), "Bad amount or Invalid eth sent");

        require(totalSupply() + amount <= maxGenesisNFT, "Too many Genesis Claimed");

        _safeMint(msg.sender, amount);
    }

    function PresaleMint(
        uint256 amount,
        bytes32[] calldata merkleProof
    ) public payable nonReentrant {

        require(msg.sender == tx.origin, "NOT EOA");

        require(!activeGenesis && !activeGenesisPublic && activePresale && !activePublic,"InactivePresale");

        require(amount > 0 && amount <= 5 &&  msg.value ==  (amount * 0.06 ether), "Bad amount or invalid eth sent");
        require(totalSupply() + amount <= maxNFT, "Too many Claimed");
        require(presaleClaim[msg.sender] + amount <= 5, "Too many Presale Claimed");

        bytes32 node = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "MerkleDistributor: Invalid proof."
        );

        presaleClaim[msg.sender]  += amount;

        _safeMint(msg.sender, amount);
    }


    function publicMint(uint256 amount) public payable nonReentrant{

        require(msg.sender == tx.origin, "NOT EOA");

        require(!activeGenesis && !activeGenesisPublic && !activePresale && activePublic, "InactivePublic");

        require(amount > 0 && amount <= 10 && msg.value ==  (amount * 0.08 ether), "bad amount or Invalid eth sent");
        require(totalSupply() + amount <= maxNFT, "Too many Claimed");

        _safeMint(msg.sender, amount);
    }


    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A) returns (bool) {
        return ERC721A.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES
               || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE;
    }

     /**
     * ROYALTIES implem: check EIP-2981 https://eips.ethereum.org/EIPS/eip-2981
     **/

    function updateRoyalties(address payable recipient, uint256 bps) external onlyOwner {
        _royaltyRecipient = recipient;
        _royaltyBps = bps;
    }

    function getRoyalties(uint256) external view returns (address payable[] memory recipients, uint256[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return (recipients, bps);
    }

    function getFeeRecipients(uint256) external view returns (address payable[] memory recipients) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
        }
        return recipients;
    }

    function getFeeBps(uint256) external view returns (uint[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return bps;
    }

    function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) {
        return (_royaltyRecipient, value*_royaltyBps/10000);
    }

    function sendFund(address Addr, uint256 Share) internal {
          (bool success, ) = Addr.call{value: Share}("");
          require(success, "Withdrawal failed"); 
    }

    function withdraw() external onlyOwner {
       require(address(this).balance > 0, "No balance to withdraw");
        
       uint addr1Share = address(this).balance.mul(16000).div(100000);
       uint addr2Share = address(this).balance.mul(8500).div(100000);
       uint addr3Share = address(this).balance.mul(7500).div(100000);
       uint addr4Share = address(this).balance.mul(7000).div(100000);
       uint addr5Share = address(this).balance.mul(2000).div(100000);
       uint addr6Share = address(this).balance.mul(2000).div(100000);
       uint addr7Share = address(this).balance.mul(2000).div(100000);
       uint addr8Share = address(this).balance.mul(2000).div(100000);
       uint addr9Share = address(this).balance.mul(1000).div(100000);
       uint addr10Share = address(this).balance.mul(500).div(100000);

       sendFund(addr1, addr1Share);
       sendFund(addr2, addr2Share);
       sendFund(addr3, addr3Share);
       sendFund(addr4, addr4Share);
       sendFund(addr5, addr5Share);
       sendFund(addr6, addr6Share);
       sendFund(addr7, addr7Share);
       sendFund(addr8, addr8Share);
       sendFund(addr9, addr9Share);
       sendFund(addr10, addr10Share);

       sendFund(addr0, address(this).balance);

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"activategenesispublic","type":"bool"},{"indexed":false,"internalType":"bool","name":"activategenesis","type":"bool"},{"indexed":false,"internalType":"bool","name":"activepresale","type":"bool"},{"indexed":false,"internalType":"bool","name":"activepublic","type":"bool"}],"name":"Activate","type":"event"},{"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":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"SetMerkleRoot","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":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"GenesisMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"PresaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_activateGenesisPublic","type":"bool"},{"internalType":"bool","name":"_activateGenesis","type":"bool"},{"internalType":"bool","name":"_activePresale","type":"bool"},{"internalType":"bool","name":"_activePublic","type":"bool"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activeGenesis","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activeGenesisPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activePresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activePublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"genesisClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGenesisNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicGenesis","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setPrefixURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260006002819055600955600c80546001600160a01b03199081167376b9105fd7996e6e3bc4ff219fbc578f81df03de17909155600d80548216736dc44ebe4c206c3a6e10c8205a3e260331c7299c179055600e8054821673e88fc340e7213a4e5b4d8d8eafbb1a763cef8024179055600f80548216733cda0a3a579c8e9894ee4b2547640a2d38b605f217905560108054821673385ad17679a80fc0ff13cc4ef506ef9e8637c13117905560118054821673c6fd0a84c32be1c56de8e08ced206855c608e88f17905560128054821673ad846df46442e7b3bafe456b18199548983300301790556013805482167331a02fba4c2cb735e8099b616b70373970b1ad29179055601480548216738f2a2bdf2ed27ed7904b450714c9258adda86aaf179055601580548216731882f410fc04732c7436df58afc056182e4c9caf1790556016805490911673a444f77c9d23fb014a0a024296cc74af0f874e8f1790553480156200017157600080fd5b5060405162003bda38038062003bda8339810160408190526200019491620003d1565b60408051808201825260088082526752756e654170657360c01b6020808401829052845180860190955291845290830152600160005590600a611c84620001e4620001de620002d5565b620002d9565b60008111620002105760405162461bcd60e51b8152600401620002079062000431565b60405180910390fd5b60008211620002335760405162461bcd60e51b81526004016200020790620003ea565b8351620002489060039060208701906200032b565b5082516200025e9060049060208601906200032b565b5060a0919091526080525050601c80546001600160a01b0319163317905560fa601b55600a8190556040805180820190915260158082527f68747470733a2f2f697066732e696f2f697066732f0000000000000000000000602092909201918252620002cd91601a916200032b565b5050620004bc565b3390565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000339906200047f565b90600052602060002090601f0160209004810192826200035d5760008555620003a8565b82601f106200037857805160ff1916838001178555620003a8565b82800160010185558215620003a8579182015b82811115620003a85782518255916020019190600101906200038b565b50620003b6929150620003ba565b5090565b5b80821115620003b65760008155600101620003bb565b600060208284031215620003e3578081fd5b5051919050565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200049457607f821691505b60208210811415620004b657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516136ed620004ed60003960008181611f7201528181611f9c01526123470152600050506136ed6000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063b9c4d9fb116100b6578063d7224ba01161007a578063d7224ba0146106be578063e456b01c146106d3578063e985e9c5146106e8578063eb1909b514610708578063ec41a7621461071d578063f2fde38b1461073d5761025c565b8063b9c4d9fb14610619578063bb3bafd614610646578063c87b56dd14610674578063cc2ae02514610694578063d21d0462146106a95761025c565b8063a22cb46511610108578063a22cb4651461057c578063a96cdf261461059c578063ab124c69146105b1578063b2c94ee6146105c4578063b3e47ba3146105e4578063b88d4fde146105f95761025c565b8063715018a6146104fd5780637cb64759146105125780638da5cb5b1461053257806395d89b4114610547578063a122dfc81461055c5761025c565b80632f745c59116101dd57806342842e0e116101a157806342842e0e1461044a5780634f6ccce71461046a5780636352211e1461048a57806364bfaaf7146104aa5780636c2f5acd146104bd57806370a08231146104dd5761025c565b80632f745c59146103cd57806335fac604146103ed57806338f9d571146104005780633cb3e0e7146104205780633ccfd60b146104355761025c565b806318160ddd1161022457806318160ddd1461033557806323b872dd146103575780632a55205a146103775780632db11544146103a55780632eb4a7ab146103b85761025c565b806301ffc9a71461026157806306fdde0314610297578063081812fc146102b9578063095ea7b3146102e65780630ebd4c7f14610308575b600080fd5b34801561026d57600080fd5b5061028161027c366004612907565b61075d565b60405161028e9190612c7b565b60405180910390f35b3480156102a357600080fd5b506102ac6107c1565b60405161028e9190612cb0565b3480156102c557600080fd5b506102d96102d43660046128ef565b610853565b60405161028e9190612bc6565b3480156102f257600080fd5b5061030661030136600461288a565b61089f565b005b34801561031457600080fd5b506103286103233660046128ef565b610938565b60405161028e9190612c68565b34801561034157600080fd5b5061034a6109a1565b60405161028e9190612ca7565b34801561036357600080fd5b5061030661037236600461273d565b6109a7565b34801561038357600080fd5b50610397610392366004612a25565b6109b2565b60405161028e929190612c17565b6103066103b33660046128ef565b6109ec565b3480156103c457600080fd5b5061034a610b23565b3480156103d957600080fd5b5061034a6103e836600461288a565b610b29565b6103066103fb3660046129ac565b610c25565b34801561040c57600080fd5b5061034a61041b3660046126be565b610e47565b34801561042c57600080fd5b50610281610e59565b34801561044157600080fd5b50610306610e67565b34801561045657600080fd5b5061030661046536600461273d565b6110b1565b34801561047657600080fd5b5061034a6104853660046128ef565b6110cc565b34801561049657600080fd5b506102d96104a53660046128ef565b6110f8565b6103066104b83660046129ac565b61110a565b3480156104c957600080fd5b506103066104d83660046126da565b611311565b3480156104e957600080fd5b5061034a6104f83660046126be565b611376565b34801561050957600080fd5b506103066113c3565b34801561051e57600080fd5b5061030661052d3660046128ef565b61140e565b34801561053e57600080fd5b506102d961148d565b34801561055357600080fd5b506102ac61149c565b34801561056857600080fd5b5061030661057736600461289c565b6114ab565b34801561058857600080fd5b50610306610597366004612856565b611584565b3480156105a857600080fd5b5061034a611652565b6103066105bf3660046128ef565b611658565b3480156105d057600080fd5b506103066105df36600461293f565b61177d565b3480156105f057600080fd5b506102816117c8565b34801561060557600080fd5b5061030661061436600461277d565b6117d8565b34801561062557600080fd5b506106396106343660046128ef565b611811565b60405161028e9190612c30565b34801561065257600080fd5b506106666106613660046128ef565b611898565b60405161028e929190612c43565b34801561068057600080fd5b506102ac61068f3660046128ef565b611968565b3480156106a057600080fd5b506102816119c1565b3480156106b557600080fd5b5061034a6119ca565b3480156106ca57600080fd5b5061034a6119d0565b3480156106df57600080fd5b5061034a6119d6565b3480156106f457600080fd5b50610281610703366004612705565b6119dc565b34801561071457600080fd5b50610281611a0a565b34801561072957600080fd5b5061034a6107383660046126be565b611a19565b34801561074957600080fd5b506103066107583660046126be565b611a2b565b600061076882611a9c565b8061078357506001600160e01b03198216635d9dd7eb60e11b145b8061079e57506001600160e01b0319821663152a902d60e11b145b806107b957506001600160e01b03198216632dde656160e21b145b90505b919050565b6060600380546107d0906135e0565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc906135e0565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600061085e82611af7565b6108835760405162461bcd60e51b815260040161087a9061344d565b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108aa826110f8565b9050806001600160a01b0316836001600160a01b031614156108de5760405162461bcd60e51b815260040161087a90613168565b806001600160a01b03166108f0611afe565b6001600160a01b0316148061090c575061090c81610703611afe565b6109285760405162461bcd60e51b815260040161087a90612ebf565b610933838383611b02565b505050565b601c546060906001600160a01b0316156107bc576040805160018082528183019092529060208083019080368337019050509050601b548160008151811061099057634e487b7160e01b600052603260045260246000fd5b602002602001018181525050919050565b60025490565b610933838383611b5e565b601c54601b5460009182916001600160a01b0390911690612710906109d7908661353f565b6109e1919061352b565b915091509250929050565b60026000541415610a0f5760405162461bcd60e51b815260040161087a90613373565b6002600055333214610a335760405162461bcd60e51b815260040161087a90613304565b60195460ff16158015610a4e5750601954610100900460ff16155b8015610a6457506019546301000000900460ff16155b8015610a78575060195462010000900460ff165b610a945760405162461bcd60e51b815260040161087a90613109565b600081118015610aa55750600a8111155b8015610ac15750610abe8167011c37937e08000061353f565b34145b610add5760405162461bcd60e51b815260040161087a90613131565b611c8481610ae96109a1565b610af39190613513565b1115610b115760405162461bcd60e51b815260040161087a90612d05565b610b1b3382611e72565b506001600055565b600a5481565b6000610b3483611376565b8210610b525760405162461bcd60e51b815260040161087a90612cc3565b6000610b5c6109a1565b905060008060005b83811015610c06576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bb757805192505b876001600160a01b0316836001600160a01b03161415610bf35786841415610be557509350610c1f92505050565b83610bef8161361b565b9450505b5080610bfe8161361b565b915050610b64565b5060405162461bcd60e51b815260040161087a90613325565b92915050565b60026000541415610c485760405162461bcd60e51b815260040161087a90613373565b6002600055333214610c6c5760405162461bcd60e51b815260040161087a90613304565b60195460ff168015610c865750601954610100900460ff16155b8015610c9c57506019546301000000900460ff16155b8015610cb1575060195462010000900460ff16155b610ccd5760405162461bcd60e51b815260040161087a906131d9565b600083118015610cde575060038311155b8015610cf95750610cf68366f8b0a10e47000061353f565b34145b610d155760405162461bcd60e51b815260040161087a90612dbf565b6101f483610d216109a1565b610d2b9190613513565b1115610d495760405162461bcd60e51b815260040161087a90612d05565b33600090815260176020526040902054600390610d67908590613513565b1115610d855760405162461bcd60e51b815260040161087a9061328c565b600033604051602001610d989190612b00565b604051602081830303815290604052805190602001209050610df183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611e90565b610e0d5760405162461bcd60e51b815260040161087a90612e7e565b3360009081526017602052604081208054869290610e2c908490613513565b90915550610e3c90503385611e72565b505060016000555050565b60186020526000908152604090205481565b601954610100900460ff1681565b610e6f611afe565b6001600160a01b0316610e8061148d565b6001600160a01b031614610ea65760405162461bcd60e51b815260040161087a90612fe4565b60004711610ec65760405162461bcd60e51b815260040161087a906130a2565b6000610ee1620186a0610edb47613e80611ea6565b90611eb9565b90506000610ef8620186a0610edb47612134611ea6565b90506000610f0f620186a0610edb47611d4c611ea6565b90506000610f26620186a0610edb47611b58611ea6565b90506000610f3d620186a0610edb476107d0611ea6565b90506000610f54620186a0610edb476107d0611ea6565b90506000610f6b620186a0610edb476107d0611ea6565b90506000610f82620186a0610edb476107d0611ea6565b90506000610f99620186a0610edb476103e8611ea6565b90506000610fb0620186a0610edb476101f4611ea6565b600d54909150610fc9906001600160a01b03168b611ec5565b600e54610fdf906001600160a01b03168a611ec5565b600f54610ff5906001600160a01b031689611ec5565b60105461100b906001600160a01b031688611ec5565b601154611021906001600160a01b031687611ec5565b601254611037906001600160a01b031686611ec5565b60135461104d906001600160a01b031685611ec5565b601454611063906001600160a01b031684611ec5565b601554611079906001600160a01b031683611ec5565b60165461108f906001600160a01b031682611ec5565b600c546110a5906001600160a01b031647611ec5565b50505050505050505050565b610933838383604051806020016040528060008152506117d8565b60006110d66109a1565b82106110f45760405162461bcd60e51b815260040161087a90612df6565b5090565b600061110382611f41565b5192915050565b6002600054141561112d5760405162461bcd60e51b815260040161087a90613373565b60026000553332146111515760405162461bcd60e51b815260040161087a90613304565b60195460ff1615801561116c5750601954610100900460ff16155b801561118157506019546301000000900460ff165b8015611196575060195462010000900460ff16155b6111b25760405162461bcd60e51b815260040161087a90613424565b6000831180156111c3575060058311155b80156111de57506111db8366d529ae9e86000061353f565b34145b6111fa5760405162461bcd60e51b815260040161087a90612dbf565b611c84836112066109a1565b6112109190613513565b111561122e5760405162461bcd60e51b815260040161087a90612d05565b3360009081526018602052604090205460059061124c908590613513565b111561126a5760405162461bcd60e51b815260040161087a90612f1c565b60003360405160200161127d9190612b00565b6040516020818303038152906040528051906020012090506112d683838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611e90565b6112f25760405162461bcd60e51b815260040161087a90612e7e565b3360009081526018602052604081208054869290610e2c908490613513565b611319611afe565b6001600160a01b031661132a61148d565b6001600160a01b0316146113505760405162461bcd60e51b815260040161087a90612fe4565b601c80546001600160a01b0319166001600160a01b039390931692909217909155601b55565b60006001600160a01b03821661139e5760405162461bcd60e51b815260040161087a90612f53565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6113cb611afe565b6001600160a01b03166113dc61148d565b6001600160a01b0316146114025760405162461bcd60e51b815260040161087a90612fe4565b61140c6000612054565b565b611416611afe565b6001600160a01b031661142761148d565b6001600160a01b03161461144d5760405162461bcd60e51b815260040161087a90612fe4565b600a8190556040517f914960aef5e033ce5cae8a7992d4b7a6f0f9741227b66acb67c605b7019f8a4690611482908390612ca7565b60405180910390a150565b6001546001600160a01b031690565b6060600480546107d0906135e0565b6114b3611afe565b6001600160a01b03166114c461148d565b6001600160a01b0316146114ea5760405162461bcd60e51b815260040161087a90612fe4565b6019805460ff19168415151761ff00191661010086151581029190911762ff000019166201000084151581029190911763ff00000019166301000000861515810291909117938490556040517f4e3ce1d36b894db5de66247d0c9230ebd0a21f499ed076cecfda6a6ea0218b9b946115769460ff90820481169481831694830482169392041690612c86565b60405180910390a150505050565b61158c611afe565b6001600160a01b0316826001600160a01b031614156115bd5760405162461bcd60e51b815260040161087a90613019565b80600860006115ca611afe565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561160e611afe565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116469190612c7b565b60405180910390a35050565b600b5481565b6002600054141561167b5760405162461bcd60e51b815260040161087a90613373565b600260005533321461169f5760405162461bcd60e51b815260040161087a90613304565b60195460ff161580156116b95750601954610100900460ff165b80156116cf57506019546301000000900460ff16155b80156116e4575060195462010000900460ff16155b6117005760405162461bcd60e51b815260040161087a906131aa565b600081118015611711575060078111155b801561172d575061172a8167013fbe85edc9000061353f565b34145b6117495760405162461bcd60e51b815260040161087a906130d2565b6101f4816117556109a1565b61175f9190613513565b1115610b115760405162461bcd60e51b815260040161087a9061328c565b611785611afe565b6001600160a01b031661179661148d565b6001600160a01b0316146117bc5760405162461bcd60e51b815260040161087a90612fe4565b610933601a8383612602565b6019546301000000900460ff1681565b6117e3848484611b5e565b6117ef848484846120a6565b61180b5760405162461bcd60e51b815260040161087a90613202565b50505050565b601c546060906001600160a01b0316156107bc5760408051600180825281830190925290602080830190803683375050601c5482519293506001600160a01b03169183915060009061187357634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050919050565b601c5460609081906001600160a01b0316156119635760408051600180825281830190925290602080830190803683375050601c5482519294506001600160a01b0316918491506000906118fc57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392909216602092830291909101820152604080516001808252818301909252918281019080368337019050509050601b548160008151811061195657634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b915091565b606061197382611af7565b61198f5760405162461bcd60e51b815260040161087a90612d75565b601a61199a836121c2565b6040516020016119ab929190612b1d565b6040516020818303038152906040529050919050565b60195460ff1681565b6101f481565b60095481565b611c8481565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b60195462010000900460ff1681565b60176020526000908152604090205481565b611a33611afe565b6001600160a01b0316611a4461148d565b6001600160a01b031614611a6a5760405162461bcd60e51b815260040161087a90612fe4565b6001600160a01b038116611a905760405162461bcd60e51b815260040161087a90612d2f565b611a9981612054565b50565b60006001600160e01b031982166380ac58cd60e01b1480611acd57506001600160e01b03198216635b5e139f60e01b145b80611ae857506001600160e01b0319821663780e9d6360e01b145b806107b957506107b9826122dd565b6002541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b6982611f41565b9050600081600001516001600160a01b0316611b83611afe565b6001600160a01b03161480611bb85750611b9b611afe565b6001600160a01b0316611bad84610853565b6001600160a01b0316145b80611bcc57508151611bcc90610703611afe565b905080611beb5760405162461bcd60e51b815260040161087a90613050565b846001600160a01b031682600001516001600160a01b031614611c205760405162461bcd60e51b815260040161087a90612f9e565b6001600160a01b038416611c465760405162461bcd60e51b815260040161087a90612e39565b611c53858585600161180b565b611c636000848460000151611b02565b6001600160a01b0385166000908152600660205260408120805460019290611c959084906001600160801b031661355e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092611ce1918591166134e8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526005909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611d77846001613513565b6000818152600560205260409020549091506001600160a01b0316611e1c57611d9f81611af7565b15611e1c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526005909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e6a868686600161180b565b505050505050565b611e8c8282604051806020016040528060008152506122f6565b5050565b600082611e9d858461256a565b14949350505050565b6000611eb2828461353f565b9392505050565b6000611eb2828461352b565b6000826001600160a01b031682604051611ede90612bc3565b60006040518083038185875af1925050503d8060008114611f1b576040519150601f19603f3d011682016040523d82523d6000602084013e611f20565b606091505b50509050806109335760405162461bcd60e51b815260040161087a906133aa565b611f49612682565b611f5282611af7565b611f6e5760405162461bcd60e51b815260040161087a90612d75565b60007f00000000000000000000000000000000000000000000000000000000000000008310611fcf57611fc17f000000000000000000000000000000000000000000000000000000000000000084613586565b611fcc906001613513565b90505b825b81811061203b576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156120285792506107bc915050565b5080612033816135c9565b915050611fd1565b5060405162461bcd60e51b815260040161087a906133d5565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006120ba846001600160a01b03166125e4565b156121b657836001600160a01b031663150b7a026120d6611afe565b8786866040518563ffffffff1660e01b81526004016120f89493929190612bda565b602060405180830381600087803b15801561211257600080fd5b505af1925050508015612142575060408051601f3d908101601f1916820190925261213f91810190612923565b60015b61219c573d808015612170576040519150601f19603f3d011682016040523d82523d6000602084013e612175565b606091505b5080516121945760405162461bcd60e51b815260040161087a90613202565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121ba565b5060015b949350505050565b6060816121e757506040805180820190915260018152600360fc1b60208201526107bc565b8160005b811561221157806121fb8161361b565b915061220a9050600a8361352b565b91506121eb565b60008167ffffffffffffffff81111561223a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612264576020820181803683370190505b5090505b84156121ba57612279600183613586565b9150612286600a86613636565b612291906030613513565b60f81b8183815181106122b457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506122d6600a8661352b565b9450612268565b6001600160e01b031981166301ffc9a760e01b14919050565b6002546001600160a01b03841661231f5760405162461bcd60e51b815260040161087a906132c3565b61232881611af7565b156123455760405162461bcd60e51b815260040161087a90613255565b7f00000000000000000000000000000000000000000000000000000000000000008311156123855760405162461bcd60e51b815260040161087a9061349a565b612392600085838661180b565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906123ee9087906134e8565b6001600160801b0316815260200185836020015161240c91906134e8565b6001600160801b039081169091526001600160a01b03808816600081815260066020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526005909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156125575760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461251b60008884886120a6565b6125375760405162461bcd60e51b815260040161087a90613202565b816125418161361b565b925050808061254f9061361b565b9150506124ce565b506002819055611e6a600087858861180b565b600081815b84518110156125dc57600085828151811061259a57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116125bc576125b583826125f3565b92506125c9565b6125c681846125f3565b92505b50806125d48161361b565b91505061256f565b509392505050565b6001600160a01b03163b151590565b60009182526020526040902090565b82805461260e906135e0565b90600052602060002090601f0160209004810192826126305760008555612676565b82601f106126495782800160ff19823516178555612676565b82800160010185558215612676579182015b8281111561267657823582559160200191906001019061265b565b506110f4929150612699565b604080518082019091526000808252602082015290565b5b808211156110f4576000815560010161269a565b803580151581146107bc57600080fd5b6000602082840312156126cf578081fd5b8135611eb28161368c565b600080604083850312156126ec578081fd5b82356126f78161368c565b946020939093013593505050565b60008060408385031215612717578182fd5b82356127228161368c565b915060208301356127328161368c565b809150509250929050565b600080600060608486031215612751578081fd5b833561275c8161368c565b9250602084013561276c8161368c565b929592945050506040919091013590565b60008060008060808587031215612792578081fd5b843561279d8161368c565b935060208501356127ad8161368c565b925060408501359150606085013567ffffffffffffffff808211156127d0578283fd5b818701915087601f8301126127e3578283fd5b8135818111156127f5576127f5613676565b604051601f8201601f19908116603f0116810190838211818310171561281d5761281d613676565b816040528281528a6020848701011115612835578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612868578182fd5b82356128738161368c565b9150612881602084016126ae565b90509250929050565b600080604083850312156126ec578182fd5b600080600080608085870312156128b1578384fd5b6128ba856126ae565b93506128c8602086016126ae565b92506128d6604086016126ae565b91506128e4606086016126ae565b905092959194509250565b600060208284031215612900578081fd5b5035919050565b600060208284031215612918578081fd5b8135611eb2816136a1565b600060208284031215612934578081fd5b8151611eb2816136a1565b60008060208385031215612951578182fd5b823567ffffffffffffffff80821115612968578384fd5b818501915085601f83011261297b578384fd5b813581811115612989578485fd5b86602082850101111561299a578485fd5b60209290920196919550909350505050565b6000806000604084860312156129c0578081fd5b83359250602084013567ffffffffffffffff808211156129de578283fd5b818601915086601f8301126129f1578283fd5b8135818111156129ff578384fd5b8760208083028501011115612a12578384fd5b6020830194508093505050509250925092565b60008060408385031215612a37578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b83811015612a7e5781516001600160a01b031687529582019590820190600101612a59565b509495945050505050565b6000815180845260208085019450808401835b83811015612a7e57815187529582019590820190600101612a9c565b60008151808452612ad081602086016020860161359d565b601f01601f19169290920160200192915050565b60008151612af681856020860161359d565b9290920192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b8254600090819060028104600180831680612b3957607f831692505b6020808410821415612b5957634e487b7160e01b87526022600452602487fd5b818015612b6d5760018114612b7e57612baa565b60ff19861689528489019650612baa565b612b878b6134dc565b885b86811015612ba25781548b820152908501908301612b89565b505084890196505b505050505050612bba8185612ae4565b95945050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c0d90830184612ab8565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b600060208252611eb26020830184612a46565b600060408252612c566040830185612a46565b8281036020840152612bba8185612a89565b600060208252611eb26020830184612a89565b901515815260200190565b93151584529115156020840152151560408301521515606082015260800190565b90815260200190565b600060208252611eb26020830184612ab8565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526010908201526f151bdbc81b585b9e4810db185a5b595960821b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252601e908201527f42616420616d6f756e74206f7220696e76616c6964206574682073656e740000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f546f6f206d616e792050726573616c6520436c61696d65640000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601690820152754e6f2062616c616e636520746f20776974686472617760501b604082015260600190565b6020808252601e908201527f42616420616d6f756e74206f7220496e76616c6964206574682073656e740000604082015260600190565b6020808252600e908201526d496e6163746976655075626c696360901b604082015260600190565b6020808252601e908201527f62616420616d6f756e74206f7220496e76616c6964206574682073656e740000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260159082015274496e6163746976655075626c696347656e6573697360581b604082015260600190565b6020808252600f908201526e496e61637469766547656e6573697360881b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526018908201527f546f6f206d616e792047656e6573697320436c61696d65640000000000000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252600790820152664e4f5420454f4160c81b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526011908201527015da5d1a191c985dd85b0819985a5b1959607a1b604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252600f908201526e496e61637469766550726573616c6560881b604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60009081526020902090565b60006001600160801b0380831681851680830382111561350a5761350a61364a565b01949350505050565b600082198211156135265761352661364a565b500190565b60008261353a5761353a613660565b500490565b60008160001904831182151516156135595761355961364a565b500290565b60006001600160801b038381169083168181101561357e5761357e61364a565b039392505050565b6000828210156135985761359861364a565b500390565b60005b838110156135b85781810151838201526020016135a0565b8381111561180b5750506000910152565b6000816135d8576135d861364a565b506000190190565b6002810460018216806135f457607f821691505b6020821081141561361557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561362f5761362f61364a565b5060010190565b60008261364557613645613660565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a9957600080fd5b6001600160e01b031981168114611a9957600080fdfea26469706673582212202188e45bc4978d05eb74c8a92f401649c664f37185f6de624f486a43dae8a3c764736f6c634300080100336355e83b98f148695114dbc1a278d78daaa5bb9e3385ec99bbdce0c3466ca515

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063b9c4d9fb116100b6578063d7224ba01161007a578063d7224ba0146106be578063e456b01c146106d3578063e985e9c5146106e8578063eb1909b514610708578063ec41a7621461071d578063f2fde38b1461073d5761025c565b8063b9c4d9fb14610619578063bb3bafd614610646578063c87b56dd14610674578063cc2ae02514610694578063d21d0462146106a95761025c565b8063a22cb46511610108578063a22cb4651461057c578063a96cdf261461059c578063ab124c69146105b1578063b2c94ee6146105c4578063b3e47ba3146105e4578063b88d4fde146105f95761025c565b8063715018a6146104fd5780637cb64759146105125780638da5cb5b1461053257806395d89b4114610547578063a122dfc81461055c5761025c565b80632f745c59116101dd57806342842e0e116101a157806342842e0e1461044a5780634f6ccce71461046a5780636352211e1461048a57806364bfaaf7146104aa5780636c2f5acd146104bd57806370a08231146104dd5761025c565b80632f745c59146103cd57806335fac604146103ed57806338f9d571146104005780633cb3e0e7146104205780633ccfd60b146104355761025c565b806318160ddd1161022457806318160ddd1461033557806323b872dd146103575780632a55205a146103775780632db11544146103a55780632eb4a7ab146103b85761025c565b806301ffc9a71461026157806306fdde0314610297578063081812fc146102b9578063095ea7b3146102e65780630ebd4c7f14610308575b600080fd5b34801561026d57600080fd5b5061028161027c366004612907565b61075d565b60405161028e9190612c7b565b60405180910390f35b3480156102a357600080fd5b506102ac6107c1565b60405161028e9190612cb0565b3480156102c557600080fd5b506102d96102d43660046128ef565b610853565b60405161028e9190612bc6565b3480156102f257600080fd5b5061030661030136600461288a565b61089f565b005b34801561031457600080fd5b506103286103233660046128ef565b610938565b60405161028e9190612c68565b34801561034157600080fd5b5061034a6109a1565b60405161028e9190612ca7565b34801561036357600080fd5b5061030661037236600461273d565b6109a7565b34801561038357600080fd5b50610397610392366004612a25565b6109b2565b60405161028e929190612c17565b6103066103b33660046128ef565b6109ec565b3480156103c457600080fd5b5061034a610b23565b3480156103d957600080fd5b5061034a6103e836600461288a565b610b29565b6103066103fb3660046129ac565b610c25565b34801561040c57600080fd5b5061034a61041b3660046126be565b610e47565b34801561042c57600080fd5b50610281610e59565b34801561044157600080fd5b50610306610e67565b34801561045657600080fd5b5061030661046536600461273d565b6110b1565b34801561047657600080fd5b5061034a6104853660046128ef565b6110cc565b34801561049657600080fd5b506102d96104a53660046128ef565b6110f8565b6103066104b83660046129ac565b61110a565b3480156104c957600080fd5b506103066104d83660046126da565b611311565b3480156104e957600080fd5b5061034a6104f83660046126be565b611376565b34801561050957600080fd5b506103066113c3565b34801561051e57600080fd5b5061030661052d3660046128ef565b61140e565b34801561053e57600080fd5b506102d961148d565b34801561055357600080fd5b506102ac61149c565b34801561056857600080fd5b5061030661057736600461289c565b6114ab565b34801561058857600080fd5b50610306610597366004612856565b611584565b3480156105a857600080fd5b5061034a611652565b6103066105bf3660046128ef565b611658565b3480156105d057600080fd5b506103066105df36600461293f565b61177d565b3480156105f057600080fd5b506102816117c8565b34801561060557600080fd5b5061030661061436600461277d565b6117d8565b34801561062557600080fd5b506106396106343660046128ef565b611811565b60405161028e9190612c30565b34801561065257600080fd5b506106666106613660046128ef565b611898565b60405161028e929190612c43565b34801561068057600080fd5b506102ac61068f3660046128ef565b611968565b3480156106a057600080fd5b506102816119c1565b3480156106b557600080fd5b5061034a6119ca565b3480156106ca57600080fd5b5061034a6119d0565b3480156106df57600080fd5b5061034a6119d6565b3480156106f457600080fd5b50610281610703366004612705565b6119dc565b34801561071457600080fd5b50610281611a0a565b34801561072957600080fd5b5061034a6107383660046126be565b611a19565b34801561074957600080fd5b506103066107583660046126be565b611a2b565b600061076882611a9c565b8061078357506001600160e01b03198216635d9dd7eb60e11b145b8061079e57506001600160e01b0319821663152a902d60e11b145b806107b957506001600160e01b03198216632dde656160e21b145b90505b919050565b6060600380546107d0906135e0565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc906135e0565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600061085e82611af7565b6108835760405162461bcd60e51b815260040161087a9061344d565b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108aa826110f8565b9050806001600160a01b0316836001600160a01b031614156108de5760405162461bcd60e51b815260040161087a90613168565b806001600160a01b03166108f0611afe565b6001600160a01b0316148061090c575061090c81610703611afe565b6109285760405162461bcd60e51b815260040161087a90612ebf565b610933838383611b02565b505050565b601c546060906001600160a01b0316156107bc576040805160018082528183019092529060208083019080368337019050509050601b548160008151811061099057634e487b7160e01b600052603260045260246000fd5b602002602001018181525050919050565b60025490565b610933838383611b5e565b601c54601b5460009182916001600160a01b0390911690612710906109d7908661353f565b6109e1919061352b565b915091509250929050565b60026000541415610a0f5760405162461bcd60e51b815260040161087a90613373565b6002600055333214610a335760405162461bcd60e51b815260040161087a90613304565b60195460ff16158015610a4e5750601954610100900460ff16155b8015610a6457506019546301000000900460ff16155b8015610a78575060195462010000900460ff165b610a945760405162461bcd60e51b815260040161087a90613109565b600081118015610aa55750600a8111155b8015610ac15750610abe8167011c37937e08000061353f565b34145b610add5760405162461bcd60e51b815260040161087a90613131565b611c8481610ae96109a1565b610af39190613513565b1115610b115760405162461bcd60e51b815260040161087a90612d05565b610b1b3382611e72565b506001600055565b600a5481565b6000610b3483611376565b8210610b525760405162461bcd60e51b815260040161087a90612cc3565b6000610b5c6109a1565b905060008060005b83811015610c06576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bb757805192505b876001600160a01b0316836001600160a01b03161415610bf35786841415610be557509350610c1f92505050565b83610bef8161361b565b9450505b5080610bfe8161361b565b915050610b64565b5060405162461bcd60e51b815260040161087a90613325565b92915050565b60026000541415610c485760405162461bcd60e51b815260040161087a90613373565b6002600055333214610c6c5760405162461bcd60e51b815260040161087a90613304565b60195460ff168015610c865750601954610100900460ff16155b8015610c9c57506019546301000000900460ff16155b8015610cb1575060195462010000900460ff16155b610ccd5760405162461bcd60e51b815260040161087a906131d9565b600083118015610cde575060038311155b8015610cf95750610cf68366f8b0a10e47000061353f565b34145b610d155760405162461bcd60e51b815260040161087a90612dbf565b6101f483610d216109a1565b610d2b9190613513565b1115610d495760405162461bcd60e51b815260040161087a90612d05565b33600090815260176020526040902054600390610d67908590613513565b1115610d855760405162461bcd60e51b815260040161087a9061328c565b600033604051602001610d989190612b00565b604051602081830303815290604052805190602001209050610df183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611e90565b610e0d5760405162461bcd60e51b815260040161087a90612e7e565b3360009081526017602052604081208054869290610e2c908490613513565b90915550610e3c90503385611e72565b505060016000555050565b60186020526000908152604090205481565b601954610100900460ff1681565b610e6f611afe565b6001600160a01b0316610e8061148d565b6001600160a01b031614610ea65760405162461bcd60e51b815260040161087a90612fe4565b60004711610ec65760405162461bcd60e51b815260040161087a906130a2565b6000610ee1620186a0610edb47613e80611ea6565b90611eb9565b90506000610ef8620186a0610edb47612134611ea6565b90506000610f0f620186a0610edb47611d4c611ea6565b90506000610f26620186a0610edb47611b58611ea6565b90506000610f3d620186a0610edb476107d0611ea6565b90506000610f54620186a0610edb476107d0611ea6565b90506000610f6b620186a0610edb476107d0611ea6565b90506000610f82620186a0610edb476107d0611ea6565b90506000610f99620186a0610edb476103e8611ea6565b90506000610fb0620186a0610edb476101f4611ea6565b600d54909150610fc9906001600160a01b03168b611ec5565b600e54610fdf906001600160a01b03168a611ec5565b600f54610ff5906001600160a01b031689611ec5565b60105461100b906001600160a01b031688611ec5565b601154611021906001600160a01b031687611ec5565b601254611037906001600160a01b031686611ec5565b60135461104d906001600160a01b031685611ec5565b601454611063906001600160a01b031684611ec5565b601554611079906001600160a01b031683611ec5565b60165461108f906001600160a01b031682611ec5565b600c546110a5906001600160a01b031647611ec5565b50505050505050505050565b610933838383604051806020016040528060008152506117d8565b60006110d66109a1565b82106110f45760405162461bcd60e51b815260040161087a90612df6565b5090565b600061110382611f41565b5192915050565b6002600054141561112d5760405162461bcd60e51b815260040161087a90613373565b60026000553332146111515760405162461bcd60e51b815260040161087a90613304565b60195460ff1615801561116c5750601954610100900460ff16155b801561118157506019546301000000900460ff165b8015611196575060195462010000900460ff16155b6111b25760405162461bcd60e51b815260040161087a90613424565b6000831180156111c3575060058311155b80156111de57506111db8366d529ae9e86000061353f565b34145b6111fa5760405162461bcd60e51b815260040161087a90612dbf565b611c84836112066109a1565b6112109190613513565b111561122e5760405162461bcd60e51b815260040161087a90612d05565b3360009081526018602052604090205460059061124c908590613513565b111561126a5760405162461bcd60e51b815260040161087a90612f1c565b60003360405160200161127d9190612b00565b6040516020818303038152906040528051906020012090506112d683838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611e90565b6112f25760405162461bcd60e51b815260040161087a90612e7e565b3360009081526018602052604081208054869290610e2c908490613513565b611319611afe565b6001600160a01b031661132a61148d565b6001600160a01b0316146113505760405162461bcd60e51b815260040161087a90612fe4565b601c80546001600160a01b0319166001600160a01b039390931692909217909155601b55565b60006001600160a01b03821661139e5760405162461bcd60e51b815260040161087a90612f53565b506001600160a01b03166000908152600660205260409020546001600160801b031690565b6113cb611afe565b6001600160a01b03166113dc61148d565b6001600160a01b0316146114025760405162461bcd60e51b815260040161087a90612fe4565b61140c6000612054565b565b611416611afe565b6001600160a01b031661142761148d565b6001600160a01b03161461144d5760405162461bcd60e51b815260040161087a90612fe4565b600a8190556040517f914960aef5e033ce5cae8a7992d4b7a6f0f9741227b66acb67c605b7019f8a4690611482908390612ca7565b60405180910390a150565b6001546001600160a01b031690565b6060600480546107d0906135e0565b6114b3611afe565b6001600160a01b03166114c461148d565b6001600160a01b0316146114ea5760405162461bcd60e51b815260040161087a90612fe4565b6019805460ff19168415151761ff00191661010086151581029190911762ff000019166201000084151581029190911763ff00000019166301000000861515810291909117938490556040517f4e3ce1d36b894db5de66247d0c9230ebd0a21f499ed076cecfda6a6ea0218b9b946115769460ff90820481169481831694830482169392041690612c86565b60405180910390a150505050565b61158c611afe565b6001600160a01b0316826001600160a01b031614156115bd5760405162461bcd60e51b815260040161087a90613019565b80600860006115ca611afe565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561160e611afe565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116469190612c7b565b60405180910390a35050565b600b5481565b6002600054141561167b5760405162461bcd60e51b815260040161087a90613373565b600260005533321461169f5760405162461bcd60e51b815260040161087a90613304565b60195460ff161580156116b95750601954610100900460ff165b80156116cf57506019546301000000900460ff16155b80156116e4575060195462010000900460ff16155b6117005760405162461bcd60e51b815260040161087a906131aa565b600081118015611711575060078111155b801561172d575061172a8167013fbe85edc9000061353f565b34145b6117495760405162461bcd60e51b815260040161087a906130d2565b6101f4816117556109a1565b61175f9190613513565b1115610b115760405162461bcd60e51b815260040161087a9061328c565b611785611afe565b6001600160a01b031661179661148d565b6001600160a01b0316146117bc5760405162461bcd60e51b815260040161087a90612fe4565b610933601a8383612602565b6019546301000000900460ff1681565b6117e3848484611b5e565b6117ef848484846120a6565b61180b5760405162461bcd60e51b815260040161087a90613202565b50505050565b601c546060906001600160a01b0316156107bc5760408051600180825281830190925290602080830190803683375050601c5482519293506001600160a01b03169183915060009061187357634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050919050565b601c5460609081906001600160a01b0316156119635760408051600180825281830190925290602080830190803683375050601c5482519294506001600160a01b0316918491506000906118fc57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392909216602092830291909101820152604080516001808252818301909252918281019080368337019050509050601b548160008151811061195657634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b915091565b606061197382611af7565b61198f5760405162461bcd60e51b815260040161087a90612d75565b601a61199a836121c2565b6040516020016119ab929190612b1d565b6040516020818303038152906040529050919050565b60195460ff1681565b6101f481565b60095481565b611c8481565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b60195462010000900460ff1681565b60176020526000908152604090205481565b611a33611afe565b6001600160a01b0316611a4461148d565b6001600160a01b031614611a6a5760405162461bcd60e51b815260040161087a90612fe4565b6001600160a01b038116611a905760405162461bcd60e51b815260040161087a90612d2f565b611a9981612054565b50565b60006001600160e01b031982166380ac58cd60e01b1480611acd57506001600160e01b03198216635b5e139f60e01b145b80611ae857506001600160e01b0319821663780e9d6360e01b145b806107b957506107b9826122dd565b6002541190565b3390565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b6982611f41565b9050600081600001516001600160a01b0316611b83611afe565b6001600160a01b03161480611bb85750611b9b611afe565b6001600160a01b0316611bad84610853565b6001600160a01b0316145b80611bcc57508151611bcc90610703611afe565b905080611beb5760405162461bcd60e51b815260040161087a90613050565b846001600160a01b031682600001516001600160a01b031614611c205760405162461bcd60e51b815260040161087a90612f9e565b6001600160a01b038416611c465760405162461bcd60e51b815260040161087a90612e39565b611c53858585600161180b565b611c636000848460000151611b02565b6001600160a01b0385166000908152600660205260408120805460019290611c959084906001600160801b031661355e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526006602052604081208054600194509092611ce1918591166134e8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526005909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611d77846001613513565b6000818152600560205260409020549091506001600160a01b0316611e1c57611d9f81611af7565b15611e1c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526005909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e6a868686600161180b565b505050505050565b611e8c8282604051806020016040528060008152506122f6565b5050565b600082611e9d858461256a565b14949350505050565b6000611eb2828461353f565b9392505050565b6000611eb2828461352b565b6000826001600160a01b031682604051611ede90612bc3565b60006040518083038185875af1925050503d8060008114611f1b576040519150601f19603f3d011682016040523d82523d6000602084013e611f20565b606091505b50509050806109335760405162461bcd60e51b815260040161087a906133aa565b611f49612682565b611f5282611af7565b611f6e5760405162461bcd60e51b815260040161087a90612d75565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611fcf57611fc17f000000000000000000000000000000000000000000000000000000000000000a84613586565b611fcc906001613513565b90505b825b81811061203b576000818152600560209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156120285792506107bc915050565b5080612033816135c9565b915050611fd1565b5060405162461bcd60e51b815260040161087a906133d5565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006120ba846001600160a01b03166125e4565b156121b657836001600160a01b031663150b7a026120d6611afe565b8786866040518563ffffffff1660e01b81526004016120f89493929190612bda565b602060405180830381600087803b15801561211257600080fd5b505af1925050508015612142575060408051601f3d908101601f1916820190925261213f91810190612923565b60015b61219c573d808015612170576040519150601f19603f3d011682016040523d82523d6000602084013e612175565b606091505b5080516121945760405162461bcd60e51b815260040161087a90613202565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121ba565b5060015b949350505050565b6060816121e757506040805180820190915260018152600360fc1b60208201526107bc565b8160005b811561221157806121fb8161361b565b915061220a9050600a8361352b565b91506121eb565b60008167ffffffffffffffff81111561223a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612264576020820181803683370190505b5090505b84156121ba57612279600183613586565b9150612286600a86613636565b612291906030613513565b60f81b8183815181106122b457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506122d6600a8661352b565b9450612268565b6001600160e01b031981166301ffc9a760e01b14919050565b6002546001600160a01b03841661231f5760405162461bcd60e51b815260040161087a906132c3565b61232881611af7565b156123455760405162461bcd60e51b815260040161087a90613255565b7f000000000000000000000000000000000000000000000000000000000000000a8311156123855760405162461bcd60e51b815260040161087a9061349a565b612392600085838661180b565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906123ee9087906134e8565b6001600160801b0316815260200185836020015161240c91906134e8565b6001600160801b039081169091526001600160a01b03808816600081815260066020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526005909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156125575760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461251b60008884886120a6565b6125375760405162461bcd60e51b815260040161087a90613202565b816125418161361b565b925050808061254f9061361b565b9150506124ce565b506002819055611e6a600087858861180b565b600081815b84518110156125dc57600085828151811061259a57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116125bc576125b583826125f3565b92506125c9565b6125c681846125f3565b92505b50806125d48161361b565b91505061256f565b509392505050565b6001600160a01b03163b151590565b60009182526020526040902090565b82805461260e906135e0565b90600052602060002090601f0160209004810192826126305760008555612676565b82601f106126495782800160ff19823516178555612676565b82800160010185558215612676579182015b8281111561267657823582559160200191906001019061265b565b506110f4929150612699565b604080518082019091526000808252602082015290565b5b808211156110f4576000815560010161269a565b803580151581146107bc57600080fd5b6000602082840312156126cf578081fd5b8135611eb28161368c565b600080604083850312156126ec578081fd5b82356126f78161368c565b946020939093013593505050565b60008060408385031215612717578182fd5b82356127228161368c565b915060208301356127328161368c565b809150509250929050565b600080600060608486031215612751578081fd5b833561275c8161368c565b9250602084013561276c8161368c565b929592945050506040919091013590565b60008060008060808587031215612792578081fd5b843561279d8161368c565b935060208501356127ad8161368c565b925060408501359150606085013567ffffffffffffffff808211156127d0578283fd5b818701915087601f8301126127e3578283fd5b8135818111156127f5576127f5613676565b604051601f8201601f19908116603f0116810190838211818310171561281d5761281d613676565b816040528281528a6020848701011115612835578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612868578182fd5b82356128738161368c565b9150612881602084016126ae565b90509250929050565b600080604083850312156126ec578182fd5b600080600080608085870312156128b1578384fd5b6128ba856126ae565b93506128c8602086016126ae565b92506128d6604086016126ae565b91506128e4606086016126ae565b905092959194509250565b600060208284031215612900578081fd5b5035919050565b600060208284031215612918578081fd5b8135611eb2816136a1565b600060208284031215612934578081fd5b8151611eb2816136a1565b60008060208385031215612951578182fd5b823567ffffffffffffffff80821115612968578384fd5b818501915085601f83011261297b578384fd5b813581811115612989578485fd5b86602082850101111561299a578485fd5b60209290920196919550909350505050565b6000806000604084860312156129c0578081fd5b83359250602084013567ffffffffffffffff808211156129de578283fd5b818601915086601f8301126129f1578283fd5b8135818111156129ff578384fd5b8760208083028501011115612a12578384fd5b6020830194508093505050509250925092565b60008060408385031215612a37578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b83811015612a7e5781516001600160a01b031687529582019590820190600101612a59565b509495945050505050565b6000815180845260208085019450808401835b83811015612a7e57815187529582019590820190600101612a9c565b60008151808452612ad081602086016020860161359d565b601f01601f19169290920160200192915050565b60008151612af681856020860161359d565b9290920192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b8254600090819060028104600180831680612b3957607f831692505b6020808410821415612b5957634e487b7160e01b87526022600452602487fd5b818015612b6d5760018114612b7e57612baa565b60ff19861689528489019650612baa565b612b878b6134dc565b885b86811015612ba25781548b820152908501908301612b89565b505084890196505b505050505050612bba8185612ae4565b95945050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c0d90830184612ab8565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b600060208252611eb26020830184612a46565b600060408252612c566040830185612a46565b8281036020840152612bba8185612a89565b600060208252611eb26020830184612a89565b901515815260200190565b93151584529115156020840152151560408301521515606082015260800190565b90815260200190565b600060208252611eb26020830184612ab8565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526010908201526f151bdbc81b585b9e4810db185a5b595960821b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252601e908201527f42616420616d6f756e74206f7220696e76616c6964206574682073656e740000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f546f6f206d616e792050726573616c6520436c61696d65640000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601690820152754e6f2062616c616e636520746f20776974686472617760501b604082015260600190565b6020808252601e908201527f42616420616d6f756e74206f7220496e76616c6964206574682073656e740000604082015260600190565b6020808252600e908201526d496e6163746976655075626c696360901b604082015260600190565b6020808252601e908201527f62616420616d6f756e74206f7220496e76616c6964206574682073656e740000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260159082015274496e6163746976655075626c696347656e6573697360581b604082015260600190565b6020808252600f908201526e496e61637469766547656e6573697360881b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526018908201527f546f6f206d616e792047656e6573697320436c61696d65640000000000000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252600790820152664e4f5420454f4160c81b604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526011908201527015da5d1a191c985dd85b0819985a5b1959607a1b604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252600f908201526e496e61637469766550726573616c6560881b604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60009081526020902090565b60006001600160801b0380831681851680830382111561350a5761350a61364a565b01949350505050565b600082198211156135265761352661364a565b500190565b60008261353a5761353a613660565b500490565b60008160001904831182151516156135595761355961364a565b500290565b60006001600160801b038381169083168181101561357e5761357e61364a565b039392505050565b6000828210156135985761359861364a565b500390565b60005b838110156135b85781810151838201526020016135a0565b8381111561180b5750506000910152565b6000816135d8576135d861364a565b506000190190565b6002810460018216806135f457607f821691505b6020821081141561361557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561362f5761362f61364a565b5060010190565b60008261364557613645613660565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a9957600080fd5b6001600160e01b031981168114611a9957600080fdfea26469706673582212202188e45bc4978d05eb74c8a92f401649c664f37185f6de624f486a43dae8a3c764736f6c63430008010033

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

6355e83b98f148695114dbc1a278d78daaa5bb9e3385ec99bbdce0c3466ca515

-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0x6355e83b98f148695114dbc1a278d78daaa5bb9e3385ec99bbdce0c3466ca515

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 6355e83b98f148695114dbc1a278d78daaa5bb9e3385ec99bbdce0c3466ca515


Deployed Bytecode Sourcemap

51434:9486:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57767:322;;;;;;;;;;-1:-1:-1;57767:322:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24323:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25848:204::-;;;;;;;;;;-1:-1:-1;25848:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25411:379::-;;;;;;;;;;-1:-1:-1;25411:379:0;;;;;:::i;:::-;;:::i;:::-;;59065:232;;;;;;;;;;-1:-1:-1;59065:232:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21158:94::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26698:142::-;;;;;;;;;;-1:-1:-1;26698:142:0;;;;;:::i;:::-;;:::i;59305:156::-;;;;;;;;;;-1:-1:-1;59305:156:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;57219:474::-;;;;;;:::i;:::-;;:::i;51566:25::-;;;;;;;;;;;;;:::i;21789:744::-;;;;;;;;;;-1:-1:-1;21789:744:0;;;;;:::i;:::-;;:::i;54933:885::-;;;;;;:::i;:::-;;:::i;52877:48::-;;;;;;;;;;-1:-1:-1;52877:48:0;;;;;:::i;:::-;;:::i;52966:31::-;;;;;;;;;;;;;:::i;59651:1264::-;;;;;;;;;;;;;:::i;26903:157::-;;;;;;;;;;-1:-1:-1;26903:157:0;;;;;:::i;:::-;;:::i;21321:177::-;;;;;;;;;;-1:-1:-1;21321:177:0;;;;;:::i;:::-;;:::i;24146:118::-;;;;;;;;;;-1:-1:-1;24146:118:0;;;;;:::i;:::-;;:::i;56332:877::-;;;;;;:::i;:::-;;:::i;58200:160::-;;;;;;;;;;-1:-1:-1;58200:160:0;;;;;:::i;:::-;;:::i;23023:211::-;;;;;;;;;;-1:-1:-1;23023:211:0;;;;;:::i;:::-;;:::i;39245:103::-;;;;;;;;;;;;;:::i;53960:149::-;;;;;;;;;;-1:-1:-1;53960:149:0;;;;;:::i;:::-;;:::i;38594:87::-;;;;;;;;;;;;;:::i;24478:98::-;;;;;;;;;;;;;:::i;54162:403::-;;;;;;;;;;-1:-1:-1;54162:403:0;;;;;:::i;:::-;;:::i;26116:274::-;;;;;;;;;;-1:-1:-1;26116:274:0;;;;;:::i;:::-;;:::i;51694:29::-;;;;;;;;;;;;;:::i;55826:498::-;;;;;;:::i;:::-;;:::i;54575:97::-;;;;;;;;;;-1:-1:-1;54575:97:0;;;;;:::i;:::-;;:::i;53035:25::-;;;;;;;;;;;;;:::i;27123:311::-;;;;;;;;;;-1:-1:-1;27123:311:0;;;;;:::i;:::-;;:::i;58765:292::-;;;;;;;;;;-1:-1:-1;58765:292:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58368:389::-;;;;;;;;;;-1:-1:-1;58368:389:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;54680:243::-;;;;;;;;;;-1:-1:-1;54680:243:0;;;;;:::i;:::-;;:::i;52934:25::-;;;;;;;;;;;;;:::i;51644:43::-;;;;;;;;;;;;;:::i;31538:::-;;;;;;;;;;;;;:::i;51600:37::-;;;;;;;;;;;;;:::i;26453:186::-;;;;;;;;;;-1:-1:-1;26453:186:0;;;;;:::i;:::-;;:::i;53004:24::-;;;;;;;;;;;;;:::i;52822:48::-;;;;;;;;;;-1:-1:-1;52822:48:0;;;;;:::i;:::-;;:::i;39503:201::-;;;;;;;;;;-1:-1:-1;39503:201:0;;;;;:::i;:::-;;:::i;57767:322::-;57861:4;57885:38;57911:11;57885:25;:38::i;:::-;:80;;;-1:-1:-1;;;;;;;57927:38:0;;-1:-1:-1;;;57927:38:0;57885:80;:146;;;-1:-1:-1;;;;;;;57985:46:0;;-1:-1:-1;;;57985:46:0;57885:146;:196;;;-1:-1:-1;;;;;;;58035:46:0;;-1:-1:-1;;;58035:46:0;57885:196;57878:203;;57767:322;;;;:::o;24323:94::-;24377:13;24406:5;24399:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24323:94;:::o;25848:204::-;25916:7;25940:16;25948:7;25940;:16::i;:::-;25932:74;;;;-1:-1:-1;;;25932:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26022:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26022:24:0;;25848:204::o;25411:379::-;25480:13;25496:24;25512:7;25496:15;:24::i;:::-;25480:40;;25541:5;-1:-1:-1;;;;;25535:11:0;:2;-1:-1:-1;;;;;25535:11:0;;;25527:58;;;;-1:-1:-1;;;25527:58:0;;;;;;;:::i;:::-;25626:5;-1:-1:-1;;;;;25610:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25610:21:0;;:62;;;;25635:37;25652:5;25659:12;:10;:12::i;25635:37::-;25594:153;;;;-1:-1:-1;;;25594:153:0;;;;;;;:::i;:::-;25756:28;25765:2;25769:7;25778:5;25756:8;:28::i;:::-;25411:379;;;:::o;59065:232::-;59150:17;;59116;;-1:-1:-1;;;;;59150:17:0;:33;59146:123;;59206:16;;;59220:1;59206:16;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59206:16:0;59200:22;;59246:11;;59237:3;59241:1;59237:6;;;;;;-1:-1:-1;;;59237:6:0;;;;;;;;;;;;;;:20;;;;;59065:232;;;:::o;21158:94::-;21234:12;;21158:94;:::o;26698:142::-;26806:28;26816:4;26822:2;26826:7;26806:9;:28::i;59305:156::-;59410:17;;59435:11;;59373:7;;;;-1:-1:-1;;;;;59410:17:0;;;;59447:5;;59429:17;;:5;:17;:::i;:::-;:23;;;;:::i;:::-;59402:51;;;;59305:156;;;;;:::o;57219:474::-;36644:1;37242:7;;:19;;37234:63;;;;-1:-1:-1;;;37234:63:0;;;;;;;:::i;:::-;36644:1;37375:7;:18;57303:10:::1;57317:9;57303:23;57295:43;;;;-1:-1:-1::0;;;57295:43:0::1;;;;;;;:::i;:::-;57360:13;::::0;::::1;;57359:14;:38:::0;::::1;;;-1:-1:-1::0;57378:19:0::1;::::0;::::1;::::0;::::1;;;57377:20;57359:38;:56;;;;-1:-1:-1::0;57402:13:0::1;::::0;;;::::1;;;57401:14;57359:56;:72;;;;-1:-1:-1::0;57419:12:0::1;::::0;;;::::1;;;57359:72;57351:99;;;;-1:-1:-1::0;;;57351:99:0::1;;;;;;;:::i;:::-;57480:1;57471:6;:10;:26;;;;;57495:2;57485:6;:12;;57471:26;:65;;;;-1:-1:-1::0;57516:19:0::1;:6:::0;57525:10:::1;57516:19;:::i;:::-;57501:9;:35;57471:65;57463:108;;;;-1:-1:-1::0;;;57463:108:0::1;;;;;;;:::i;:::-;51633:4;57606:6;57590:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:32;;57582:61;;;;-1:-1:-1::0;;;57582:61:0::1;;;;;;;:::i;:::-;57656:29;57666:10;57678:6;57656:9;:29::i;:::-;-1:-1:-1::0;36600:1:0;37554:7;:22;57219:474::o;51566:25::-;;;;:::o;21789:744::-;21898:7;21933:16;21943:5;21933:9;:16::i;:::-;21925:5;:24;21917:71;;;;-1:-1:-1;;;21917:71:0;;;;;;;:::i;:::-;21995:22;22020:13;:11;:13::i;:::-;21995:38;;22040:19;22070:25;22120:9;22115:350;22139:14;22135:1;:18;22115:350;;;22169:31;22203:14;;;:11;:14;;;;;;;;;22169:48;;;;;;;;;-1:-1:-1;;;;;22169:48:0;;;;;-1:-1:-1;;;22169:48:0;;;;;;;;;;;;22230:28;22226:89;;22291:14;;;-1:-1:-1;22226:89:0;22348:5;-1:-1:-1;;;;;22327:26:0;:17;-1:-1:-1;;;;;22327:26:0;;22323:135;;;22385:5;22370:11;:20;22366:59;;;-1:-1:-1;22412:1:0;-1:-1:-1;22405:8:0;;-1:-1:-1;;;22405:8:0;22366:59;22435:13;;;;:::i;:::-;;;;22323:135;-1:-1:-1;22155:3:0;;;;:::i;:::-;;;;22115:350;;;;22471:56;;-1:-1:-1;;;22471:56:0;;;;;;;:::i;21789:744::-;;;;;:::o;54933:885::-;36644:1;37242:7;;:19;;37234:63;;;;-1:-1:-1;;;37234:63:0;;;;;;;:::i;:::-;36644:1;37375:7;:18;55076:10:::1;55090:9;55076:23;55068:43;;;;-1:-1:-1::0;;;55068:43:0::1;;;;;;;:::i;:::-;55132:13;::::0;::::1;;:37:::0;::::1;;;-1:-1:-1::0;55150:19:0::1;::::0;::::1;::::0;::::1;;;55149:20;55132:37;:55;;;;-1:-1:-1::0;55174:13:0::1;::::0;;;::::1;;;55173:14;55132:55;:72;;;;-1:-1:-1::0;55192:12:0::1;::::0;;;::::1;;;55191:13;55132:72;55124:100;;;;-1:-1:-1::0;;;55124:100:0::1;;;;;;;:::i;:::-;55254:1;55245:6;:10;:25;;;;;55269:1;55259:6;:11;;55245:25;:65;;;;-1:-1:-1::0;55290:19:0::1;:6:::0;55299:10:::1;55290:19;:::i;:::-;55275:9;:35;55245:65;55237:108;;;;-1:-1:-1::0;;;55237:108:0::1;;;;;;;:::i;:::-;51684:3;55380:6;55364:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:39;;55356:68;;;;-1:-1:-1::0;;;55356:68:0::1;;;;;;;:::i;:::-;55456:10;55443:24;::::0;;;:12:::1;:24;::::0;;;;;55480:1:::1;::::0;55443:33:::1;::::0;55470:6;;55443:33:::1;:::i;:::-;:38;;55435:75;;;;-1:-1:-1::0;;;55435:75:0::1;;;;;;;:::i;:::-;55523:12;55565:10;55548:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;55538:39;;;;;;55523:54;;55610:49;55629:11;;55610:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;55642:10:0::1;::::0;;-1:-1:-1;55654:4:0;;-1:-1:-1;55610:18:0::1;:49::i;:::-;55588:132;;;;-1:-1:-1::0;;;55588:132:0::1;;;;;;;:::i;:::-;55746:10;55733:24;::::0;;;:12:::1;:24;::::0;;;;:35;;55762:6;;55733:24;:35:::1;::::0;55762:6;;55733:35:::1;:::i;:::-;::::0;;;-1:-1:-1;55781:29:0::1;::::0;-1:-1:-1;55791:10:0::1;55803:6:::0;55781:9:::1;:29::i;:::-;-1:-1:-1::0;;36600:1:0;37554:7;:22;-1:-1:-1;;54933:885:0:o;52877:48::-;;;;;;;;;;;;;:::o;52966:31::-;;;;;;;;;:::o;59651:1264::-;38825:12;:10;:12::i;:::-;-1:-1:-1;;;;;38814:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38814:23:0;;38806:68;;;;-1:-1:-1;;;38806:68:0;;;;;;;:::i;:::-;59732:1:::1;59708:21;:25;59700:60;;;;-1:-1:-1::0;;;59700:60:0::1;;;;;;;:::i;:::-;59780:15;59798:44;59835:6;59798:32;:21;59824:5;59798:25;:32::i;:::-;:36:::0;::::1;:44::i;:::-;59780:62:::0;-1:-1:-1;59852:15:0::1;59870:43;59906:6;59870:31;:21;59896:4;59870:25;:31::i;:43::-;59852:61:::0;-1:-1:-1;59923:15:0::1;59941:43;59977:6;59941:31;:21;59967:4;59941:25;:31::i;:43::-;59923:61:::0;-1:-1:-1;59994:15:0::1;60012:43;60048:6;60012:31;:21;60038:4;60012:25;:31::i;:43::-;59994:61:::0;-1:-1:-1;60065:15:0::1;60083:43;60119:6;60083:31;:21;60109:4;60083:25;:31::i;:43::-;60065:61:::0;-1:-1:-1;60136:15:0::1;60154:43;60190:6;60154:31;:21;60180:4;60154:25;:31::i;:43::-;60136:61:::0;-1:-1:-1;60207:15:0::1;60225:43;60261:6;60225:31;:21;60251:4;60225:25;:31::i;:43::-;60207:61:::0;-1:-1:-1;60278:15:0::1;60296:43;60332:6;60296:31;:21;60322:4;60296:25;:31::i;:43::-;60278:61:::0;-1:-1:-1;60349:15:0::1;60367:43;60403:6;60367:31;:21;60393:4;60367:25;:31::i;:43::-;60349:61:::0;-1:-1:-1;60420:16:0::1;60439:42;60474:6;60439:30;:21;60465:3;60439:25;:30::i;:42::-;60502:5;::::0;60420:61;;-1:-1:-1;60493:27:0::1;::::0;-1:-1:-1;;;;;60502:5:0::1;60509:10:::0;60493:8:::1;:27::i;:::-;60539:5;::::0;60530:27:::1;::::0;-1:-1:-1;;;;;60539:5:0::1;60546:10:::0;60530:8:::1;:27::i;:::-;60576:5;::::0;60567:27:::1;::::0;-1:-1:-1;;;;;60576:5:0::1;60583:10:::0;60567:8:::1;:27::i;:::-;60613:5;::::0;60604:27:::1;::::0;-1:-1:-1;;;;;60613:5:0::1;60620:10:::0;60604:8:::1;:27::i;:::-;60650:5;::::0;60641:27:::1;::::0;-1:-1:-1;;;;;60650:5:0::1;60657:10:::0;60641:8:::1;:27::i;:::-;60687:5;::::0;60678:27:::1;::::0;-1:-1:-1;;;;;60687:5:0::1;60694:10:::0;60678:8:::1;:27::i;:::-;60724:5;::::0;60715:27:::1;::::0;-1:-1:-1;;;;;60724:5:0::1;60731:10:::0;60715:8:::1;:27::i;:::-;60761:5;::::0;60752:27:::1;::::0;-1:-1:-1;;;;;60761:5:0::1;60768:10:::0;60752:8:::1;:27::i;:::-;60798:5;::::0;60789:27:::1;::::0;-1:-1:-1;;;;;60798:5:0::1;60805:10:::0;60789:8:::1;:27::i;:::-;60835:6;::::0;60826:29:::1;::::0;-1:-1:-1;;;;;60835:6:0::1;60843:11:::0;60826:8:::1;:29::i;:::-;60876:5;::::0;60867:38:::1;::::0;-1:-1:-1;;;;;60876:5:0::1;60883:21;60867:8;:38::i;:::-;38885:1;;;;;;;;;;59651:1264::o:0;26903:157::-;27015:39;27032:4;27038:2;27042:7;27015:39;;;;;;;;;;;;:16;:39::i;21321:177::-;21388:7;21420:13;:11;:13::i;:::-;21412:5;:21;21404:69;;;;-1:-1:-1;;;21404:69:0;;;;;;;:::i;:::-;-1:-1:-1;21487:5:0;21321:177::o;24146:118::-;24210:7;24233:20;24245:7;24233:11;:20::i;:::-;:25;;24146:118;-1:-1:-1;;24146:118:0:o;56332:877::-;36644:1;37242:7;;:19;;37234:63;;;;-1:-1:-1;;;37234:63:0;;;;;;;:::i;:::-;36644:1;37375:7;:18;56475:10:::1;56489:9;56475:23;56467:43;;;;-1:-1:-1::0;;;56467:43:0::1;;;;;;;:::i;:::-;56532:13;::::0;::::1;;56531:14;:38:::0;::::1;;;-1:-1:-1::0;56550:19:0::1;::::0;::::1;::::0;::::1;;;56549:20;56531:38;:55;;;;-1:-1:-1::0;56573:13:0::1;::::0;;;::::1;;;56531:55;:72;;;;-1:-1:-1::0;56591:12:0::1;::::0;;;::::1;;;56590:13;56531:72;56523:99;;;;-1:-1:-1::0;;;56523:99:0::1;;;;;;;:::i;:::-;56652:1;56643:6;:10;:25;;;;;56667:1;56657:6;:11;;56643:25;:65;;;;-1:-1:-1::0;56688:19:0::1;:6:::0;56697:10:::1;56688:19;:::i;:::-;56673:9;:35;56643:65;56635:108;;;;-1:-1:-1::0;;;56635:108:0::1;;;;;;;:::i;:::-;51633:4;56778:6;56762:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:32;;56754:61;;;;-1:-1:-1::0;;;56754:61:0::1;;;;;;;:::i;:::-;56847:10;56834:24;::::0;;;:12:::1;:24;::::0;;;;;56871:1:::1;::::0;56834:33:::1;::::0;56861:6;;56834:33:::1;:::i;:::-;:38;;56826:75;;;;-1:-1:-1::0;;;56826:75:0::1;;;;;;;:::i;:::-;56914:12;56956:10;56939:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;56929:39;;;;;;56914:54;;57001:49;57020:11;;57001:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;57033:10:0::1;::::0;;-1:-1:-1;57045:4:0;;-1:-1:-1;57001:18:0::1;:49::i;:::-;56979:132;;;;-1:-1:-1::0;;;56979:132:0::1;;;;;;;:::i;:::-;57137:10;57124:24;::::0;;;:12:::1;:24;::::0;;;;:35;;57153:6;;57124:24;:35:::1;::::0;57153:6;;57124:35:::1;:::i;58200:160::-:0;38825:12;:10;:12::i;:::-;-1:-1:-1;;;;;38814:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38814:23:0;;38806:68;;;;-1:-1:-1;;;38806:68:0;;;;;;;:::i;:::-;58295:17:::1;:29:::0;;-1:-1:-1;;;;;;58295:29:0::1;-1:-1:-1::0;;;;;58295:29:0;;;::::1;::::0;;;::::1;::::0;;;58335:11:::1;:17:::0;58200:160::o;23023:211::-;23087:7;-1:-1:-1;;;;;23111:19:0;;23103:75;;;;-1:-1:-1;;;23103:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23200:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23200:27:0;;23023:211::o;39245:103::-;38825:12;:10;:12::i;:::-;-1:-1:-1;;;;;38814:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38814:23:0;;38806:68;;;;-1:-1:-1;;;38806:68:0;;;;;;;:::i;:::-;39310:30:::1;39337:1;39310:18;:30::i;:::-;39245:103::o:0;53960:149::-;38825:12;:10;:12::i;:::-;-1:-1:-1;;;;;38814:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38814:23:0;;38806:68;;;;-1:-1:-1;;;38806:68:0;;;;;;;:::i;:::-;54034:10:::1;:24:::0;;;54076:25:::1;::::0;::::1;::::0;::::1;::::0;54047:11;;54076:25:::1;:::i;:::-;;;;;;;;53960:149:::0;:::o;38594:87::-;38667:6;;-1:-1:-1;;;;;38667:6:0;38594:87;:::o;24478:98::-;24534:13;24563:7;24556:14;;;;;:::i;54162:403::-;38825:12;:10;:12::i;:::-;-1:-1:-1;;;;;38814:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38814:23:0;;38806:68;;;;-1:-1:-1;;;38806:68:0;;;;;;;:::i;:::-;54302:13:::1;:32:::0;;-1:-1:-1;;54302:32:0::1;::::0;::::1;;;-1:-1:-1::0;;54345:44:0::1;54302:32;54345:44:::0;::::1;;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;54400:28:0::1;::::0;;::::1;;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;54439:30:0::1;::::0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;54487:70:::1;::::0;::::1;::::0;::::1;::::0;54302:32:::1;54496:19:::0;;::::1;::::0;::::1;::::0;54516:13;;::::1;::::0;54530;::::1;::::0;::::1;::::0;54544:12;::::1;;::::0;54487:70:::1;:::i;:::-;;;;;;;;54162:403:::0;;;;:::o;26116:274::-;26219:12;:10;:12::i;:::-;-1:-1:-1;;;;;26207:24:0;:8;-1:-1:-1;;;;;26207:24:0;;;26199:63;;;;-1:-1:-1;;;26199:63:0;;;;;;;:::i;:::-;26316:8;26271:18;:32;26290:12;:10;:12::i;:::-;-1:-1:-1;;;;;26271:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26271:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26271:53:0;;;;;;;;;;;26351:12;:10;:12::i;:::-;-1:-1:-1;;;;;26336:48:0;;26375:8;26336:48;;;;;;:::i;:::-;;;;;;;;26116:274;;:::o;51694:29::-;;;;:::o;55826:498::-;36644:1;37242:7;;:19;;37234:63;;;;-1:-1:-1;;;37234:63:0;;;;;;;:::i;:::-;36644:1;37375:7;:18;55913:10:::1;55927:9;55913:23;55905:43;;;;-1:-1:-1::0;;;55905:43:0::1;;;;;;;:::i;:::-;55970:13;::::0;::::1;;55969:14;:37:::0;::::1;;;-1:-1:-1::0;55987:19:0::1;::::0;::::1;::::0;::::1;;;55969:37;:55;;;;-1:-1:-1::0;56011:13:0::1;::::0;;;::::1;;;56010:14;55969:55;:72;;;;-1:-1:-1::0;56029:12:0::1;::::0;;;::::1;;;56028:13;55969:72;55961:106;;;;-1:-1:-1::0;;;55961:106:0::1;;;;;;;:::i;:::-;56095:1;56086:6;:10;:25;;;;;56110:1;56100:6;:11;;56086:25;:64;;;;-1:-1:-1::0;56130:19:0::1;:6:::0;56139:10:::1;56130:19;:::i;:::-;56115:9;:35;56086:64;56078:107;;;;-1:-1:-1::0;;;56078:107:0::1;;;;;;;:::i;:::-;51684:3;56222:6;56206:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:39;;56198:76;;;;-1:-1:-1::0;;;56198:76:0::1;;;;;;;:::i;54575:97::-:0;38825:12;:10;:12::i;:::-;-1:-1:-1;;;;;38814:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38814:23:0;;38806:68;;;;-1:-1:-1;;;38806:68:0;;;;;;;:::i;:::-;54648:16:::1;:10;54661:3:::0;;54648:16:::1;:::i;53035:25::-:0;;;;;;;;;:::o;27123:311::-;27260:28;27270:4;27276:2;27280:7;27260:9;:28::i;:::-;27311:48;27334:4;27340:2;27344:7;27353:5;27311:22;:48::i;:::-;27295:133;;;;-1:-1:-1;;;27295:133:0;;;;;;;:::i;:::-;27123:311;;;;:::o;58765:292::-;58875:17;;58823:35;;-1:-1:-1;;;;;58875:17:0;:33;58871:151;;58938:24;;;58960:1;58938:24;;;;;;;;;;;;;;;;;;;-1:-1:-1;;58993:17:0;;58977:13;;;;-1:-1:-1;;;;;;58993:17:0;;58977:13;;-1:-1:-1;58993:17:0;;58977:13;;-1:-1:-1;;;58977:13:0;;;;;;;;;;;;;;:33;-1:-1:-1;;;;;58977:33:0;;;-1:-1:-1;;;;;58977:33:0;;;;;58765:292;;;:::o;58368:389::-;58496:17;;58422:35;;;;-1:-1:-1;;;;;58496:17:0;:33;58492:223;;58559:24;;;58581:1;58559:24;;;;;;;;;;;;;;;;;;;-1:-1:-1;;58614:17:0;;58598:13;;;;-1:-1:-1;;;;;;58614:17:0;;58598:13;;-1:-1:-1;58614:17:0;;58598:13;;-1:-1:-1;;;58598:13:0;;;;;;;;;-1:-1:-1;;;;;58598:33:0;;;;:13;;;;;;;;;;:33;58652:16;;;58666:1;58652:16;;;;;;;;;;;;;;58598:13;58652:16;;;;;-1:-1:-1;58652:16:0;58646:22;;58692:11;;58683:3;58687:1;58683:6;;;;;;-1:-1:-1;;;58683:6:0;;;;;;;;;;;;;;:20;;;;;58492:223;58368:389;;;:::o;54680:243::-;54744:13;54778:16;54786:7;54778;:16::i;:::-;54770:71;;;;-1:-1:-1;;;54770:71:0;;;;;;;:::i;:::-;54883:10;54895:18;:7;:16;:18::i;:::-;54866:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54852:63;;54680:243;;;:::o;52934:25::-;;;;;;:::o;51644:43::-;51684:3;51644:43;:::o;31538:::-;;;;:::o;51600:37::-;51633:4;51600:37;:::o;26453:186::-;-1:-1:-1;;;;;26598:25:0;;;26575:4;26598:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26453:186::o;53004:24::-;;;;;;;;;:::o;52822:48::-;;;;;;;;;;;;;:::o;39503:201::-;38825:12;:10;:12::i;:::-;-1:-1:-1;;;;;38814:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38814:23:0;;38806:68;;;;-1:-1:-1;;;38806:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39592:22:0;::::1;39584:73;;;;-1:-1:-1::0;;;39584:73:0::1;;;;;;;:::i;:::-;39668:28;39687:8;39668:18;:28::i;:::-;39503:201:::0;:::o;22597:370::-;22724:4;-1:-1:-1;;;;;;22754:40:0;;-1:-1:-1;;;22754:40:0;;:99;;-1:-1:-1;;;;;;;22805:48:0;;-1:-1:-1;;;22805:48:0;22754:99;:160;;;-1:-1:-1;;;;;;;22864:50:0;;-1:-1:-1;;;22864:50:0;22754:160;:207;;;;22925:36;22949:11;22925:23;:36::i;27673:105::-;27760:12;;-1:-1:-1;27750:22:0;27673:105::o;9494:98::-;9574:10;9494:98;:::o;31360:172::-;31457:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;31457:29:0;-1:-1:-1;;;;;31457:29:0;;;;;;;;;31498:28;;31457:24;;31498:28;;;;;;;31360:172;;;:::o;29725:1529::-;29822:35;29860:20;29872:7;29860:11;:20::i;:::-;29822:58;;29889:22;29931:13;:18;;;-1:-1:-1;;;;;29915:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;29915:34:0;;:81;;;;29984:12;:10;:12::i;:::-;-1:-1:-1;;;;;29960:36:0;:20;29972:7;29960:11;:20::i;:::-;-1:-1:-1;;;;;29960:36:0;;29915:81;:142;;;-1:-1:-1;30024:18:0;;30007:50;;30044:12;:10;:12::i;30007:50::-;29889:169;;30083:17;30067:101;;;;-1:-1:-1;;;30067:101:0;;;;;;;:::i;:::-;30215:4;-1:-1:-1;;;;;30193:26:0;:13;:18;;;-1:-1:-1;;;;;30193:26:0;;30177:98;;;;-1:-1:-1;;;30177:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30290:16:0;;30282:66;;;;-1:-1:-1;;;30282:66:0;;;;;;;:::i;:::-;30357:43;30379:4;30385:2;30389:7;30398:1;30357:21;:43::i;:::-;30457:49;30474:1;30478:7;30487:13;:18;;;30457:8;:49::i;:::-;-1:-1:-1;;;;;30515:18:0;;;;;;:12;:18;;;;;:31;;30545:1;;30515:18;:31;;30545:1;;-1:-1:-1;;;;;30515:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;30515:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30553:16:0;;-1:-1:-1;30553:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;30553:16:0;;:29;;-1:-1:-1;;30553:29:0;;:::i;:::-;;;-1:-1:-1;;;;;30553:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30612:43:0;;;;;;;;-1:-1:-1;;;;;30612:43:0;;;;;;30638:15;30612:43;;;;;;;;;-1:-1:-1;30589:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;30589:66:0;-1:-1:-1;;;;30589:66:0;;;;-1:-1:-1;;;;;;30589:66:0;;;;;;;;30905:11;30601:7;-1:-1:-1;30905:11:0;:::i;:::-;30968:1;30927:24;;;:11;:24;;;;;:29;30883:33;;-1:-1:-1;;;;;;30927:29:0;30923:236;;30985:20;30993:11;30985:7;:20::i;:::-;30981:171;;;31045:97;;;;;;;;31072:18;;-1:-1:-1;;;;;31045:97:0;;;;;;31103:28;;;;31045:97;;;;;;;;;;-1:-1:-1;31018:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;31018:124:0;;;;;;;;;-1:-1:-1;;;;31018:124:0;-1:-1:-1;;;31018:124:0;;;;;;;;;;;;;;30981:171;31191:7;31187:2;-1:-1:-1;;;;;31172:27:0;31181:4;-1:-1:-1;;;;;31172:27:0;;;;;;;;;;;31206:42;31227:4;31233:2;31237:7;31246:1;31206:20;:42::i;:::-;29725:1529;;;;;;:::o;27784:98::-;27849:27;27859:2;27863:8;27849:27;;;;;;;;;;;;:9;:27::i;:::-;27784:98;;:::o;40910:190::-;41035:4;41088;41059:25;41072:5;41079:4;41059:12;:25::i;:::-;:33;;40910:190;-1:-1:-1;;;;40910:190:0:o;45912:98::-;45970:7;45997:5;46001:1;45997;:5;:::i;:::-;45990:12;45912:98;-1:-1:-1;;;45912:98:0:o;46311:::-;46369:7;46396:5;46400:1;46396;:5;:::i;59469:174::-;59539:12;59557:4;-1:-1:-1;;;;;59557:9:0;59574:5;59557:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59538:46;;;59605:7;59597:37;;;;-1:-1:-1;;;59597:37:0;;;;;;;:::i;23486:606::-;23562:21;;:::i;:::-;23603:16;23611:7;23603;:16::i;:::-;23595:71;;;;-1:-1:-1;;;23595:71:0;;;;;;;:::i;:::-;23675:26;23723:12;23712:7;:23;23708:93;;23767:22;23777:12;23767:7;:22;:::i;:::-;:26;;23792:1;23767:26;:::i;:::-;23746:47;;23708:93;23829:7;23809:212;23846:18;23838:4;:26;23809:212;;23883:31;23917:17;;;:11;:17;;;;;;;;;23883:51;;;;;;;;;-1:-1:-1;;;;;23883:51:0;;;;;-1:-1:-1;;;23883:51:0;;;;;;;;;;;;23947:28;23943:71;;23995:9;-1:-1:-1;23988:16:0;;-1:-1:-1;;23988:16:0;23943:71;-1:-1:-1;23866:6:0;;;;:::i;:::-;;;;23809:212;;;;24029:57;;-1:-1:-1;;;24029:57:0;;;;;;;:::i;39864:191::-;39957:6;;;-1:-1:-1;;;;;39974:17:0;;;-1:-1:-1;;;;;;39974:17:0;;;;;;;40007:40;;39957:6;;;39974:17;39957:6;;40007:40;;39938:16;;40007:40;39864:191;;:::o;33075:690::-;33212:4;33229:15;:2;-1:-1:-1;;;;;33229:13:0;;:15::i;:::-;33225:535;;;33284:2;-1:-1:-1;;;;;33268:36:0;;33305:12;:10;:12::i;:::-;33319:4;33325:7;33334:5;33268:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33268:72:0;;;;;;;;-1:-1:-1;;33268:72:0;;;;;;;;;;;;:::i;:::-;;;33255:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33499:13:0;;33495:215;;33532:61;;-1:-1:-1;;;33532:61:0;;;;;;;:::i;33495:215::-;33678:6;33672:13;33663:6;33659:2;33655:15;33648:38;33255:464;-1:-1:-1;;;;;;33390:55:0;-1:-1:-1;;;33390:55:0;;-1:-1:-1;33383:62:0;;33225:535;-1:-1:-1;33748:4:0;33225:535;33075:690;;;;;;:::o;49646:723::-;49702:13;49923:10;49919:53;;-1:-1:-1;49950:10:0;;;;;;;;;;;;-1:-1:-1;;;49950:10:0;;;;;;49919:53;49997:5;49982:12;50038:78;50045:9;;50038:78;;50071:8;;;;:::i;:::-;;-1:-1:-1;50094:10:0;;-1:-1:-1;50102:2:0;50094:10;;:::i;:::-;;;50038:78;;;50126:19;50158:6;50148:17;;;;;;-1:-1:-1;;;50148:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50148:17:0;;50126:39;;50176:154;50183:10;;50176:154;;50210:11;50220:1;50210:11;;:::i;:::-;;-1:-1:-1;50279:10:0;50287:2;50279:5;:10;:::i;:::-;50266:24;;:2;:24;:::i;:::-;50253:39;;50236:6;50243;50236:14;;;;;;-1:-1:-1;;;50236:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;50236:56:0;;;;;;;;-1:-1:-1;50307:11:0;50316:2;50307:11;;:::i;:::-;;;50176:154;;11252:157;-1:-1:-1;;;;;;11361:40:0;;-1:-1:-1;;;11361:40:0;11252:157;;;:::o;28221:1272::-;28349:12;;-1:-1:-1;;;;;28376:16:0;;28368:62;;;;-1:-1:-1;;;28368:62:0;;;;;;;:::i;:::-;28567:21;28575:12;28567:7;:21::i;:::-;28566:22;28558:64;;;;-1:-1:-1;;;28558:64:0;;;;;;;:::i;:::-;28649:12;28637:8;:24;;28629:71;;;;-1:-1:-1;;;28629:71:0;;;;;;;:::i;:::-;28709:61;28739:1;28743:2;28747:12;28761:8;28709:21;:61::i;:::-;-1:-1:-1;;;;;28812:16:0;;28779:30;28812:16;;;:12;:16;;;;;;;;;28779:49;;;;;;;;;-1:-1:-1;;;;;28779:49:0;;;;;-1:-1:-1;;;28779:49:0;;;;;;;;;;;28854:119;;;;;;;;28874:19;;28779:49;;28854:119;;;28874:39;;28904:8;;28874:39;:::i;:::-;-1:-1:-1;;;;;28854:119:0;;;;;28957:8;28922:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;28854:119:0;;;;;;-1:-1:-1;;;;;28835:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;28835:138:0;;;;-1:-1:-1;;28835:138:0;;;;;;;;;;;;;;;;;29008:43;;;;;;;;;;;29034:15;29008:43;;;;;;;;28980:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;28980:71:0;-1:-1:-1;;;;28980:71:0;;;;-1:-1:-1;;;;;;28980:71:0;;;;;;;;;;;;;;;28992:12;;29104:281;29128:8;29124:1;:12;29104:281;;;29157:38;;29182:12;;-1:-1:-1;;;;;29157:38:0;;;29174:1;;29157:38;;29174:1;;29157:38;29222:59;29253:1;29257:2;29261:12;29275:5;29222:22;:59::i;:::-;29204:150;;;;-1:-1:-1;;;29204:150:0;;;;;;;:::i;:::-;29363:14;;;;:::i;:::-;;;;29138:3;;;;;:::i;:::-;;;;29104:281;;;-1:-1:-1;29393:12:0;:27;;;29427:60;29456:1;29460:2;29464:12;29478:8;29427:20;:60::i;41462:675::-;41545:7;41588:4;41545:7;41603:497;41627:5;:12;41623:1;:16;41603:497;;;41661:20;41684:5;41690:1;41684:8;;;;;;-1:-1:-1;;;41684:8:0;;;;;;;;;;;;;;;41661:31;;41727:12;41711;:28;41707:382;;41854:42;41869:12;41883;41854:14;:42::i;:::-;41839:57;;41707:382;;;42031:42;42046:12;42060;42031:14;:42::i;:::-;42016:57;;41707:382;-1:-1:-1;41641:3:0;;;;:::i;:::-;;;;41603:497;;;-1:-1:-1;42117:12:0;41462:675;-1:-1:-1;;;41462:675:0:o;1603:326::-;-1:-1:-1;;;;;1898:19:0;;:23;;;1603:326::o;42145:224::-;42213:13;42263:15;;;42299:4;42292:15;42346:4;42330:21;;;42248:114::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:162:1;81:20;;137:13;;130:21;120:32;;110:2;;166:1;163;156:12;181:259;;293:2;281:9;272:7;268:23;264:32;261:2;;;314:6;306;299:22;261:2;358:9;345:23;377:33;404:5;377:33;:::i;445:335::-;;;582:2;570:9;561:7;557:23;553:32;550:2;;;603:6;595;588:22;550:2;647:9;634:23;666:33;693:5;666:33;:::i;:::-;718:5;770:2;755:18;;;;742:32;;-1:-1:-1;;;540:240:1:o;785:402::-;;;914:2;902:9;893:7;889:23;885:32;882:2;;;935:6;927;920:22;882:2;979:9;966:23;998:33;1025:5;998:33;:::i;:::-;1050:5;-1:-1:-1;1107:2:1;1092:18;;1079:32;1120:35;1079:32;1120:35;:::i;:::-;1174:7;1164:17;;;872:315;;;;;:::o;1192:470::-;;;;1338:2;1326:9;1317:7;1313:23;1309:32;1306:2;;;1359:6;1351;1344:22;1306:2;1403:9;1390:23;1422:33;1449:5;1422:33;:::i;:::-;1474:5;-1:-1:-1;1531:2:1;1516:18;;1503:32;1544:35;1503:32;1544:35;:::i;:::-;1296:366;;1598:7;;-1:-1:-1;;;1652:2:1;1637:18;;;;1624:32;;1296:366::o;1667:1315::-;;;;;1839:3;1827:9;1818:7;1814:23;1810:33;1807:2;;;1861:6;1853;1846:22;1807:2;1905:9;1892:23;1924:33;1951:5;1924:33;:::i;:::-;1976:5;-1:-1:-1;2033:2:1;2018:18;;2005:32;2046:35;2005:32;2046:35;:::i;:::-;2100:7;-1:-1:-1;2154:2:1;2139:18;;2126:32;;-1:-1:-1;2209:2:1;2194:18;;2181:32;2232:18;2262:14;;;2259:2;;;2294:6;2286;2279:22;2259:2;2337:6;2326:9;2322:22;2312:32;;2382:7;2375:4;2371:2;2367:13;2363:27;2353:2;;2409:6;2401;2394:22;2353:2;2450;2437:16;2472:2;2468;2465:10;2462:2;;;2478:18;;:::i;:::-;2553:2;2547:9;2521:2;2607:13;;-1:-1:-1;;2603:22:1;;;2627:2;2599:31;2595:40;2583:53;;;2651:18;;;2671:22;;;2648:46;2645:2;;;2697:18;;:::i;:::-;2737:10;2733:2;2726:22;2772:2;2764:6;2757:18;2812:7;2807:2;2802;2798;2794:11;2790:20;2787:33;2784:2;;;2838:6;2830;2823:22;2784:2;2899;2894;2890;2886:11;2881:2;2873:6;2869:15;2856:46;2922:15;;;2939:2;2918:24;2911:40;;;;1797:1185;;;;-1:-1:-1;1797:1185:1;;-1:-1:-1;;;;1797:1185:1:o;2987:329::-;;;3113:2;3101:9;3092:7;3088:23;3084:32;3081:2;;;3134:6;3126;3119:22;3081:2;3178:9;3165:23;3197:33;3224:5;3197:33;:::i;:::-;3249:5;-1:-1:-1;3273:37:1;3306:2;3291:18;;3273:37;:::i;:::-;3263:47;;3071:245;;;;;:::o;3321:327::-;;;3450:2;3438:9;3429:7;3425:23;3421:32;3418:2;;;3471:6;3463;3456:22;3653:403;;;;;3804:3;3792:9;3783:7;3779:23;3775:33;3772:2;;;3826:6;3818;3811:22;3772:2;3854:28;3872:9;3854:28;:::i;:::-;3844:38;;3901:37;3934:2;3923:9;3919:18;3901:37;:::i;:::-;3891:47;;3957:37;3990:2;3979:9;3975:18;3957:37;:::i;:::-;3947:47;;4013:37;4046:2;4035:9;4031:18;4013:37;:::i;:::-;4003:47;;3762:294;;;;;;;:::o;4061:190::-;;4173:2;4161:9;4152:7;4148:23;4144:32;4141:2;;;4194:6;4186;4179:22;4141:2;-1:-1:-1;4222:23:1;;4131:120;-1:-1:-1;4131:120:1:o;4256:257::-;;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;4432:9;4419:23;4451:32;4477:5;4451:32;:::i;4518:261::-;;4640:2;4628:9;4619:7;4615:23;4611:32;4608:2;;;4661:6;4653;4646:22;4608:2;4698:9;4692:16;4717:32;4743:5;4717:32;:::i;4784:642::-;;;4916:2;4904:9;4895:7;4891:23;4887:32;4884:2;;;4937:6;4929;4922:22;4884:2;4982:9;4969:23;5011:18;5052:2;5044:6;5041:14;5038:2;;;5073:6;5065;5058:22;5038:2;5116:6;5105:9;5101:22;5091:32;;5161:7;5154:4;5150:2;5146:13;5142:27;5132:2;;5188:6;5180;5173:22;5132:2;5233;5220:16;5259:2;5251:6;5248:14;5245:2;;;5280:6;5272;5265:22;5245:2;5330:7;5325:2;5316:6;5312:2;5308:15;5304:24;5301:37;5298:2;;;5356:6;5348;5341:22;5298:2;5392;5384:11;;;;;5414:6;;-1:-1:-1;4874:552:1;;-1:-1:-1;;;;4874:552:1:o;5626:734::-;;;;5790:2;5778:9;5769:7;5765:23;5761:32;5758:2;;;5811:6;5803;5796:22;5758:2;5852:9;5839:23;5829:33;;5913:2;5902:9;5898:18;5885:32;5936:18;5977:2;5969:6;5966:14;5963:2;;;5998:6;5990;5983:22;5963:2;6041:6;6030:9;6026:22;6016:32;;6086:7;6079:4;6075:2;6071:13;6067:27;6057:2;;6113:6;6105;6098:22;6057:2;6158;6145:16;6184:2;6176:6;6173:14;6170:2;;;6205:6;6197;6190:22;6170:2;6264:7;6259:2;6253;6245:6;6241:15;6237:2;6233:24;6229:33;6226:46;6223:2;;;6290:6;6282;6275:22;6223:2;6326;6322;6318:11;6308:21;;6348:6;6338:16;;;;;5748:612;;;;;:::o;6365:258::-;;;6494:2;6482:9;6473:7;6469:23;6465:32;6462:2;;;6515:6;6507;6500:22;6462:2;-1:-1:-1;;6543:23:1;;;6613:2;6598:18;;;6585:32;;-1:-1:-1;6452:171:1:o;6628:477::-;;6733:5;6727:12;6760:6;6755:3;6748:19;6786:4;6815:2;6810:3;6806:12;6799:19;;6852:2;6845:5;6841:14;6873:3;6885:195;6899:6;6896:1;6893:13;6885:195;;;6964:13;;-1:-1:-1;;;;;6960:39:1;6948:52;;7020:12;;;;7055:15;;;;6996:1;6914:9;6885:195;;;-1:-1:-1;7096:3:1;;6703:402;-1:-1:-1;;;;;6703:402:1:o;7110:443::-;;7207:5;7201:12;7234:6;7229:3;7222:19;7260:4;7289:2;7284:3;7280:12;7273:19;;7326:2;7319:5;7315:14;7347:3;7359:169;7373:6;7370:1;7367:13;7359:169;;;7434:13;;7422:26;;7468:12;;;;7503:15;;;;7395:1;7388:9;7359:169;;7558:259;;7639:5;7633:12;7666:6;7661:3;7654:19;7682:63;7738:6;7731:4;7726:3;7722:14;7715:4;7708:5;7704:16;7682:63;:::i;:::-;7799:2;7778:15;-1:-1:-1;;7774:29:1;7765:39;;;;7806:4;7761:50;;7609:208;-1:-1:-1;;7609:208:1:o;7822:187::-;;7904:5;7898:12;7919:52;7964:6;7959:3;7952:4;7945:5;7941:16;7919:52;:::i;:::-;7987:16;;;;;7874:135;-1:-1:-1;;7874:135:1:o;8014:229::-;8163:2;8159:15;;;;-1:-1:-1;;8155:53:1;8143:66;;8234:2;8225:12;;8133:110::o;8248:1181::-;8482:13;;8248:1181;;;;8555:1;8540:17;;8576:1;8612:18;;;;8639:2;;8693:4;8685:6;8681:17;8671:27;;8639:2;8719;8767;8759:6;8756:14;8736:18;8733:38;8730:2;;;-1:-1:-1;;;8794:33:1;;8850:4;8847:1;8840:15;8880:4;8801:3;8868:17;8730:2;8911:18;8938:104;;;;9056:1;9051:324;;;;8904:471;;8938:104;-1:-1:-1;;8971:24:1;;8959:37;;9016:16;;;;-1:-1:-1;8938:104:1;;9051:324;9087:39;9119:6;9087:39;:::i;:::-;9148:3;9164:165;9178:6;9175:1;9172:13;9164:165;;;9256:14;;9243:11;;;9236:35;9299:16;;;;9193:10;;9164:165;;;9168:3;;9358:6;9353:3;9349:16;9342:23;;8904:471;;;;;;;9391:32;9419:3;9411:6;9391:32;:::i;:::-;9384:39;8432:997;-1:-1:-1;;;;;8432:997:1:o;9434:205::-;9634:3;9625:14::o;9644:203::-;-1:-1:-1;;;;;9808:32:1;;;;9790:51;;9778:2;9763:18;;9745:102::o;9852:490::-;-1:-1:-1;;;;;10121:15:1;;;10103:34;;10173:15;;10168:2;10153:18;;10146:43;10220:2;10205:18;;10198:34;;;10268:3;10263:2;10248:18;;10241:31;;;9852:490;;10289:47;;10316:19;;10308:6;10289:47;:::i;:::-;10281:55;10055:287;-1:-1:-1;;;;;;10055:287:1:o;10347:274::-;-1:-1:-1;;;;;10539:32:1;;;;10521:51;;10603:2;10588:18;;10581:34;10509:2;10494:18;;10476:145::o;10626:291::-;;10821:2;10810:9;10803:21;10841:70;10907:2;10896:9;10892:18;10884:6;10841:70;:::i;10922:501::-;;11195:2;11184:9;11177:21;11221:70;11287:2;11276:9;11272:18;11264:6;11221:70;:::i;:::-;11339:9;11331:6;11327:22;11322:2;11311:9;11307:18;11300:50;11367;11410:6;11402;11367:50;:::i;11428:267::-;;11607:2;11596:9;11589:21;11627:62;11685:2;11674:9;11670:18;11662:6;11627:62;:::i;11700:187::-;11865:14;;11858:22;11840:41;;11828:2;11813:18;;11795:92::o;11892:431::-;12124:14;;12117:22;12099:41;;12183:14;;12176:22;12171:2;12156:18;;12149:50;12242:14;12235:22;12230:2;12215:18;;12208:50;12301:14;12294:22;12289:2;12274:18;;12267:50;12086:3;12071:19;;12053:270::o;12328:177::-;12474:25;;;12462:2;12447:18;;12429:76::o;12510:221::-;;12659:2;12648:9;12641:21;12679:46;12721:2;12710:9;12706:18;12698:6;12679:46;:::i;12736:398::-;12938:2;12920:21;;;12977:2;12957:18;;;12950:30;13016:34;13011:2;12996:18;;12989:62;-1:-1:-1;;;13082:2:1;13067:18;;13060:32;13124:3;13109:19;;12910:224::o;13139:340::-;13341:2;13323:21;;;13380:2;13360:18;;;13353:30;-1:-1:-1;;;13414:2:1;13399:18;;13392:46;13470:2;13455:18;;13313:166::o;13484:402::-;13686:2;13668:21;;;13725:2;13705:18;;;13698:30;13764:34;13759:2;13744:18;;13737:62;-1:-1:-1;;;13830:2:1;13815:18;;13808:36;13876:3;13861:19;;13658:228::o;13891:406::-;14093:2;14075:21;;;14132:2;14112:18;;;14105:30;14171:34;14166:2;14151:18;;14144:62;-1:-1:-1;;;14237:2:1;14222:18;;14215:40;14287:3;14272:19;;14065:232::o;14302:354::-;14504:2;14486:21;;;14543:2;14523:18;;;14516:30;14582:32;14577:2;14562:18;;14555:60;14647:2;14632:18;;14476:180::o;14661:399::-;14863:2;14845:21;;;14902:2;14882:18;;;14875:30;14941:34;14936:2;14921:18;;14914:62;-1:-1:-1;;;15007:2:1;14992:18;;14985:33;15050:3;15035:19;;14835:225::o;15065:401::-;15267:2;15249:21;;;15306:2;15286:18;;;15279:30;15345:34;15340:2;15325:18;;15318:62;-1:-1:-1;;;15411:2:1;15396:18;;15389:35;15456:3;15441:19;;15239:227::o;15471:397::-;15673:2;15655:21;;;15712:2;15692:18;;;15685:30;15751:34;15746:2;15731:18;;15724:62;-1:-1:-1;;;15817:2:1;15802:18;;15795:31;15858:3;15843:19;;15645:223::o;15873:421::-;16075:2;16057:21;;;16114:2;16094:18;;;16087:30;16153:34;16148:2;16133:18;;16126:62;16224:27;16219:2;16204:18;;16197:55;16284:3;16269:19;;16047:247::o;16299:348::-;16501:2;16483:21;;;16540:2;16520:18;;;16513:30;16579:26;16574:2;16559:18;;16552:54;16638:2;16623:18;;16473:174::o;16652:407::-;16854:2;16836:21;;;16893:2;16873:18;;;16866:30;16932:34;16927:2;16912:18;;16905:62;-1:-1:-1;;;16998:2:1;16983:18;;16976:41;17049:3;17034:19;;16826:233::o;17064:402::-;17266:2;17248:21;;;17305:2;17285:18;;;17278:30;17344:34;17339:2;17324:18;;17317:62;-1:-1:-1;;;17410:2:1;17395:18;;17388:36;17456:3;17441:19;;17238:228::o;17471:356::-;17673:2;17655:21;;;17692:18;;;17685:30;17751:34;17746:2;17731:18;;17724:62;17818:2;17803:18;;17645:182::o;17832:350::-;18034:2;18016:21;;;18073:2;18053:18;;;18046:30;18112:28;18107:2;18092:18;;18085:56;18173:2;18158:18;;18006:176::o;18187:414::-;18389:2;18371:21;;;18428:2;18408:18;;;18401:30;18467:34;18462:2;18447:18;;18440:62;-1:-1:-1;;;18533:2:1;18518:18;;18511:48;18591:3;18576:19;;18361:240::o;18606:346::-;18808:2;18790:21;;;18847:2;18827:18;;;18820:30;-1:-1:-1;;;18881:2:1;18866:18;;18859:52;18943:2;18928:18;;18780:172::o;18957:354::-;19159:2;19141:21;;;19198:2;19178:18;;;19171:30;19237:32;19232:2;19217:18;;19210:60;19302:2;19287:18;;19131:180::o;19316:338::-;19518:2;19500:21;;;19557:2;19537:18;;;19530:30;-1:-1:-1;;;19591:2:1;19576:18;;19569:44;19645:2;19630:18;;19490:164::o;19659:354::-;19861:2;19843:21;;;19900:2;19880:18;;;19873:30;19939:32;19934:2;19919:18;;19912:60;20004:2;19989:18;;19833:180::o;20018:398::-;20220:2;20202:21;;;20259:2;20239:18;;;20232:30;20298:34;20293:2;20278:18;;20271:62;-1:-1:-1;;;20364:2:1;20349:18;;20342:32;20406:3;20391:19;;20192:224::o;20421:345::-;20623:2;20605:21;;;20662:2;20642:18;;;20635:30;-1:-1:-1;;;20696:2:1;20681:18;;20674:51;20757:2;20742:18;;20595:171::o;20771:339::-;20973:2;20955:21;;;21012:2;20992:18;;;20985:30;-1:-1:-1;;;21046:2:1;21031:18;;21024:45;21101:2;21086:18;;20945:165::o;21115:415::-;21317:2;21299:21;;;21356:2;21336:18;;;21329:30;21395:34;21390:2;21375:18;;21368:62;-1:-1:-1;;;21461:2:1;21446:18;;21439:49;21520:3;21505:19;;21289:241::o;21535:353::-;21737:2;21719:21;;;21776:2;21756:18;;;21749:30;21815:31;21810:2;21795:18;;21788:59;21879:2;21864:18;;21709:179::o;21893:348::-;22095:2;22077:21;;;22134:2;22114:18;;;22107:30;22173:26;22168:2;22153:18;;22146:54;22232:2;22217:18;;22067:174::o;22246:397::-;22448:2;22430:21;;;22487:2;22467:18;;;22460:30;22526:34;22521:2;22506:18;;22499:62;-1:-1:-1;;;22592:2:1;22577:18;;22570:31;22633:3;22618:19;;22420:223::o;22648:330::-;22850:2;22832:21;;;22889:1;22869:18;;;22862:29;-1:-1:-1;;;22922:2:1;22907:18;;22900:37;22969:2;22954:18;;22822:156::o;22983:410::-;23185:2;23167:21;;;23224:2;23204:18;;;23197:30;23263:34;23258:2;23243:18;;23236:62;-1:-1:-1;;;23329:2:1;23314:18;;23307:44;23383:3;23368:19;;23157:236::o;23398:355::-;23600:2;23582:21;;;23639:2;23619:18;;;23612:30;23678:33;23673:2;23658:18;;23651:61;23744:2;23729:18;;23572:181::o;23758:341::-;23960:2;23942:21;;;23999:2;23979:18;;;23972:30;-1:-1:-1;;;24033:2:1;24018:18;;24011:47;24090:2;24075:18;;23932:167::o;24104:411::-;24306:2;24288:21;;;24345:2;24325:18;;;24318:30;24384:34;24379:2;24364:18;;24357:62;-1:-1:-1;;;24450:2:1;24435:18;;24428:45;24505:3;24490:19;;24278:237::o;24520:339::-;24722:2;24704:21;;;24761:2;24741:18;;;24734:30;-1:-1:-1;;;24795:2:1;24780:18;;24773:45;24850:2;24835:18;;24694:165::o;24864:409::-;25066:2;25048:21;;;25105:2;25085:18;;;25078:30;25144:34;25139:2;25124:18;;25117:62;-1:-1:-1;;;25210:2:1;25195:18;;25188:43;25263:3;25248:19;;25038:235::o;25278:398::-;25480:2;25462:21;;;25519:2;25499:18;;;25492:30;25558:34;25553:2;25538:18;;25531:62;-1:-1:-1;;;25624:2:1;25609:18;;25602:32;25666:3;25651:19;;25452:224::o;25863:129::-;;25931:17;;;25981:4;25965:21;;;25921:71::o;25997:253::-;;-1:-1:-1;;;;;26126:2:1;26123:1;26119:10;26156:2;26153:1;26149:10;26187:3;26183:2;26179:12;26174:3;26171:21;26168:2;;;26195:18;;:::i;:::-;26231:13;;26045:205;-1:-1:-1;;;;26045:205:1:o;26255:128::-;;26326:1;26322:6;26319:1;26316:13;26313:2;;;26332:18;;:::i;:::-;-1:-1:-1;26368:9:1;;26303:80::o;26388:120::-;;26454:1;26444:2;;26459:18;;:::i;:::-;-1:-1:-1;26493:9:1;;26434:74::o;26513:168::-;;26619:1;26615;26611:6;26607:14;26604:1;26601:21;26596:1;26589:9;26582:17;26578:45;26575:2;;;26626:18;;:::i;:::-;-1:-1:-1;26666:9:1;;26565:116::o;26686:246::-;;-1:-1:-1;;;;;26839:10:1;;;;26809;;26861:12;;;26858:2;;;26876:18;;:::i;:::-;26913:13;;26735:197;-1:-1:-1;;;26735:197:1:o;26937:125::-;;27005:1;27002;26999:8;26996:2;;;27010:18;;:::i;:::-;-1:-1:-1;27047:9:1;;26986:76::o;27067:258::-;27139:1;27149:113;27163:6;27160:1;27157:13;27149:113;;;27239:11;;;27233:18;27220:11;;;27213:39;27185:2;27178:10;27149:113;;;27280:6;27277:1;27274:13;27271:2;;;-1:-1:-1;;27315:1:1;27297:16;;27290:27;27120:205::o;27330:136::-;;27397:5;27387:2;;27406:18;;:::i;:::-;-1:-1:-1;;;27442:18:1;;27377:89::o;27471:380::-;27556:1;27546:12;;27603:1;27593:12;;;27614:2;;27668:4;27660:6;27656:17;27646:27;;27614:2;27721;27713:6;27710:14;27690:18;27687:38;27684:2;;;27767:10;27762:3;27758:20;27755:1;27748:31;27802:4;27799:1;27792:15;27830:4;27827:1;27820:15;27684:2;;27526:325;;;:::o;27856:135::-;;-1:-1:-1;;27916:17:1;;27913:2;;;27936:18;;:::i;:::-;-1:-1:-1;27983:1:1;27972:13;;27903:88::o;27996:112::-;;28054:1;28044:2;;28059:18;;:::i;:::-;-1:-1:-1;28093:9:1;;28034:74::o;28113:127::-;28174:10;28169:3;28165:20;28162:1;28155:31;28205:4;28202:1;28195:15;28229:4;28226:1;28219:15;28245:127;28306:10;28301:3;28297:20;28294:1;28287:31;28337:4;28334:1;28327:15;28361:4;28358:1;28351:15;28377:127;28438:10;28433:3;28429:20;28426:1;28419:31;28469:4;28466:1;28459:15;28493:4;28490:1;28483:15;28509:133;-1:-1:-1;;;;;28586:31:1;;28576:42;;28566:2;;28632:1;28629;28622:12;28647:133;-1:-1:-1;;;;;;28723:32:1;;28713:43;;28703:2;;28770:1;28767;28760:12

Swarm Source

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