ETH Price: $3,155.15 (-4.34%)
Gas: 4 Gwei

Token

Meta Legends (LEGEND)
 

Overview

Max Total Supply

5,000 LEGEND

Holders

1,585

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 LEGEND
0x6d43c7629195876a78cfe7bcc97ac45b879087e3
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:
MetaLegends

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-05
*/

/**
 *Submitted for verification at Etherscan.io on 2023-11-01
*/


// SPDX-License-Identifier: MIT
// File: contracts/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: contracts/IERC165.sol



pragma solidity ^0.8.0;

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

// File: contracts/ERC165.sol



pragma solidity ^0.8.0;


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

// File: contracts/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

// File: contracts/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: contracts/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 make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File: contracts/Context.sol



pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

// File: contracts/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: contracts/MetaLegends.sol



pragma solidity ^0.8.0;





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


  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForDevs_
  ) ERC721A("Meta Legends", "LEGEND", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForDevs = amountForDevs_;
  }

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

  function mint(uint256 quantity) external callerIsUser {

    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
  }

  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600060015560006008553480156200001c57600080fd5b50604051620029b6380380620029b68339810160408190526200003f9162000200565b6040518060400160405280600c81526020016b4d657461204c6567656e647360a01b81525060405180604001604052806006815260200165131151d1539160d21b81525084846200009f62000099620001ac60201b60201c565b620001b0565b600081116200010c5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200016e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000103565b60026200017c8582620002d4565b5060036200018b8482620002d4565b5060a0919091526080525050600160095560c0929092525060e052620003a0565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000606084860312156200021657600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025a57607f821691505b6020821081036200027b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002cf57600081815260208120601f850160051c81016020861015620002aa5750805b601f850160051c820191505b81811015620002cb57828155600101620002b6565b5050505b505050565b81516001600160401b03811115620002f057620002f06200022f565b620003088162000301845462000245565b8462000281565b602080601f831160018114620003405760008415620003275750858301515b600019600386901b1c1916600185901b178555620002cb565b600085815260208120601f198616915b82811015620003715788860151825594840194600190910190840162000350565b5085821015620003905787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e05161259d620004196000396000818161045b015261096301526000818161031b0152610d7e0152600081816109f901528181610a8701528181610abf015281816117ec015281816118160152611cd1015260008181610d06015281816115d30152611605015261259d6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063ac446002116100a2578063dc33e68111610071578063dc33e681146103f4578063e985e9c514610407578063f2fde38b14610443578063fbe1aa511461045657600080fd5b8063ac446002146103bd578063b88d4fde146103c5578063c87b56dd146103d8578063d7224ba0146103eb57600080fd5b80639231ab2a116100de5780639231ab2a1461034e57806395d89b411461038f578063a0712d6814610397578063a22cb465146103aa57600080fd5b8063715018a61461030e5780638bc35c2f146103165780638da5cb5b1461033d57600080fd5b80632f745c59116101715780634f6ccce71161014b5780634f6ccce7146102c257806355f804b3146102d55780636352211e146102e857806370a08231146102fb57600080fd5b80632f745c5914610289578063375a069a1461029c57806342842e0e146102af57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c57806318160ddd1461025157806323b872dd146102635780632d20fb601461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004611f05565b61047d565b60405190151581526020015b60405180910390f35b6102046104ea565b6040516101f39190611f72565b61022461021f366004611f85565b61057c565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004611fba565b61060c565b005b6001545b6040519081526020016101f3565b61024f610271366004611fe4565b610723565b61024f610284366004611f85565b61072e565b610255610297366004611fba565b6107c0565b61024f6102aa366004611f85565b610937565b61024f6102bd366004611fe4565b610af5565b6102556102d0366004611f85565b610b10565b61024f6102e3366004612020565b610b79565b6102246102f6366004611f85565b610bb0565b610255610309366004612092565b610bc2565b61024f610c53565b6102557f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b0316610224565b61036161035c366004611f85565b610c89565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101f3565b610204610ca6565b61024f6103a5366004611f85565b610cb5565b61024f6103b83660046120ad565b610e05565b61024f610ec9565b61024f6103d33660046120ff565b610fd5565b6102046103e6366004611f85565b61100e565b61025560085481565b610255610402366004612092565b6110db565b6101e76104153660046121db565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61024f610451366004612092565b6110e6565b6102557f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b14806104ae57506001600160e01b03198216635b5e139f60e01b145b806104c957506001600160e01b0319821663780e9d6360e01b145b806104e457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104f99061220e565b80601f01602080910402602001604051908101604052809291908181526020018280546105259061220e565b80156105725780601f1061054757610100808354040283529160200191610572565b820191906000526020600020905b81548152906001019060200180831161055557829003601f168201915b5050505050905090565b6000610589826001541190565b6105f05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061061782610bb0565b9050806001600160a01b0316836001600160a01b0316036106855760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016105e7565b336001600160a01b03821614806106a157506106a18133610415565b6107135760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016105e7565b61071e83838361117e565b505050565b61071e8383836111da565b6000546001600160a01b031633146107585760405162461bcd60e51b81526004016105e790612248565b6002600954036107aa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105e7565b60026009556107b881611562565b506001600955565b60006107cb83610bc2565b82106108245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016105e7565b600061082f60015490565b905060008060005b838110156108d7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561088a57805192505b876001600160a01b0316836001600160a01b0316036108c4578684036108b6575093506104e492505050565b836108c081612293565b9450505b50806108cf81612293565b915050610837565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016105e7565b6000546001600160a01b031633146109615760405162461bcd60e51b81526004016105e790612248565b7f00000000000000000000000000000000000000000000000000000000000000008161098c60015490565b61099691906122ac565b11156109f45760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016105e7565b610a1e7f0000000000000000000000000000000000000000000000000000000000000000826122d5565b15610a805760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016105e7565b6000610aac7f0000000000000000000000000000000000000000000000000000000000000000836122e9565b905060005b8181101561071e57610ae3337f000000000000000000000000000000000000000000000000000000000000000061174c565b80610aed81612293565b915050610ab1565b61071e83838360405180602001604052806000815250610fd5565b6000610b1b60015490565b8210610b755760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016105e7565b5090565b6000546001600160a01b03163314610ba35760405162461bcd60e51b81526004016105e790612248565b600a61071e828483612343565b6000610bbb8261176a565b5192915050565b60006001600160a01b038216610c2e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016105e7565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016105e790612248565b610c876000611914565b565b60408051808201909152600080825260208201526104e48261176a565b6060600380546104f99061220e565b323314610d045760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016105e7565b7f000000000000000000000000000000000000000000000000000000000000000081610d2f60015490565b610d3991906122ac565b1115610d7c5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016105e7565b7f000000000000000000000000000000000000000000000000000000000000000081610da7336110db565b610db191906122ac565b1115610df85760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016105e7565b610e02338261174c565b50565b336001600160a01b03831603610e5d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016105e7565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610ef35760405162461bcd60e51b81526004016105e790612248565b600260095403610f455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105e7565b6002600955604051600090339047908381818185875af1925050503d8060008114610f8c576040519150601f19603f3d011682016040523d82523d6000602084013e610f91565b606091505b50509050806107b85760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016105e7565b610fe08484846111da565b610fec84848484611964565b6110085760405162461bcd60e51b81526004016105e790612404565b50505050565b606061101b826001541190565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e7565b6000611089611a66565b905060008151116110a957604051806020016040528060008152506110d4565b806110b384611a75565b6040516020016110c4929190612457565b6040516020818303038152906040525b9392505050565b60006104e482611b76565b6000546001600160a01b031633146111105760405162461bcd60e51b81526004016105e790612248565b6001600160a01b0381166111755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e7565b610e0281611914565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111e58261176a565b80519091506000906001600160a01b0316336001600160a01b0316148061121c5750336112118461057c565b6001600160a01b0316145b8061122e5750815161122e9033610415565b9050806112985760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105e7565b846001600160a01b031682600001516001600160a01b03161461130c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016105e7565b6001600160a01b0384166113705760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105e7565b611380600084846000015161117e565b6001600160a01b03851660009081526005602052604081208054600192906113b29084906001600160801b0316612486565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926113fe918591166124ad565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114868460016122ac565b6000818152600460205260409020549091506001600160a01b0316611518576114b0816001541190565b156115185760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816115b25760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016105e7565b600060016115c084846122ac565b6115ca91906124cd565b90506115f760017f00000000000000000000000000000000000000000000000000000000000000006124cd565b81111561162c5761162960017f00000000000000000000000000000000000000000000000000000000000000006124cd565b90505b611637816001541190565b6116925760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016105e7565b815b818111611738576000818152600460205260409020546001600160a01b03166117265760006116c28261176a565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061173081612293565b915050611694565b506117448160016122ac565b600855505050565b611766828260405180602001604052806000815250611c14565b5050565b6040805180820190915260008082526020820152611789826001541190565b6117e85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016105e7565b60007f000000000000000000000000000000000000000000000000000000000000000083106118495761183b7f0000000000000000000000000000000000000000000000000000000000000000846124cd565b6118469060016122ac565b90505b825b8181106118b3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118a057949350505050565b50806118ab816124e0565b91505061184b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016105e7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611a5a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119a89033908990889088906004016124f7565b6020604051808303816000875af19250505080156119e3575060408051601f3d908101601f191682019092526119e091810190612534565b60015b611a40573d808015611a11576040519150601f19603f3d011682016040523d82523d6000602084013e611a16565b606091505b508051600003611a385760405162461bcd60e51b81526004016105e790612404565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a5e565b5060015b949350505050565b6060600a80546104f99061220e565b606081600003611a9c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac65780611ab081612293565b9150611abf9050600a836122e9565b9150611aa0565b60008167ffffffffffffffff811115611ae157611ae16120e9565b6040519080825280601f01601f191660200182016040528015611b0b576020820181803683370190505b5090505b8415611a5e57611b206001836124cd565b9150611b2d600a866122d5565b611b389060306122ac565b60f81b818381518110611b4d57611b4d612551565b60200101906001600160f81b031916908160001a905350611b6f600a866122e9565b9450611b0f565b60006001600160a01b038216611be85760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016105e7565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611c775760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105e7565b611c82816001541190565b15611ccf5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016105e7565b7f0000000000000000000000000000000000000000000000000000000000000000831115611d4a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016105e7565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611da69087906124ad565b6001600160801b03168152602001858360200151611dc491906124ad565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ee45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ea86000888488611964565b611ec45760405162461bcd60e51b81526004016105e790612404565b81611ece81612293565b9250508080611edc90612293565b915050611e5b565b50600181905561155a565b6001600160e01b031981168114610e0257600080fd5b600060208284031215611f1757600080fd5b81356110d481611eef565b60005b83811015611f3d578181015183820152602001611f25565b50506000910152565b60008151808452611f5e816020860160208601611f22565b601f01601f19169290920160200192915050565b6020815260006110d46020830184611f46565b600060208284031215611f9757600080fd5b5035919050565b80356001600160a01b0381168114611fb557600080fd5b919050565b60008060408385031215611fcd57600080fd5b611fd683611f9e565b946020939093013593505050565b600080600060608486031215611ff957600080fd5b61200284611f9e565b925061201060208501611f9e565b9150604084013590509250925092565b6000806020838503121561203357600080fd5b823567ffffffffffffffff8082111561204b57600080fd5b818501915085601f83011261205f57600080fd5b81358181111561206e57600080fd5b86602082850101111561208057600080fd5b60209290920196919550909350505050565b6000602082840312156120a457600080fd5b6110d482611f9e565b600080604083850312156120c057600080fd5b6120c983611f9e565b9150602083013580151581146120de57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561211557600080fd5b61211e85611f9e565b935061212c60208601611f9e565b925060408501359150606085013567ffffffffffffffff8082111561215057600080fd5b818701915087601f83011261216457600080fd5b813581811115612176576121766120e9565b604051601f8201601f19908116603f0116810190838211818310171561219e5761219e6120e9565b816040528281528a60208487010111156121b757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156121ee57600080fd5b6121f783611f9e565b915061220560208401611f9e565b90509250929050565b600181811c9082168061222257607f821691505b60208210810361224257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016122a5576122a561227d565b5060010190565b808201808211156104e4576104e461227d565b634e487b7160e01b600052601260045260246000fd5b6000826122e4576122e46122bf565b500690565b6000826122f8576122f86122bf565b500490565b601f82111561071e57600081815260208120601f850160051c810160208610156123245750805b601f850160051c820191505b8181101561155a57828155600101612330565b67ffffffffffffffff83111561235b5761235b6120e9565b61236f83612369835461220e565b836122fd565b6000601f8411600181146123a3576000851561238b5750838201355b600019600387901b1c1916600186901b1783556123fd565b600083815260209020601f19861690835b828110156123d457868501358255602094850194600190920191016123b4565b50868210156123f15760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612469818460208801611f22565b83519083019061247d818360208801611f22565b01949350505050565b6001600160801b038281168282160390808211156124a6576124a661227d565b5092915050565b6001600160801b038181168382160190808211156124a6576124a661227d565b818103818111156104e4576104e461227d565b6000816124ef576124ef61227d565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061252a90830184611f46565b9695505050505050565b60006020828403121561254657600080fd5b81516110d481611eef565b634e487b7160e01b600052603260045260246000fdfea264697066735822122073800f29ebbb963dca49a63432ee5d4a9027639ff924becc9bd2ac0b4c71486e64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000005

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063ac446002116100a2578063dc33e68111610071578063dc33e681146103f4578063e985e9c514610407578063f2fde38b14610443578063fbe1aa511461045657600080fd5b8063ac446002146103bd578063b88d4fde146103c5578063c87b56dd146103d8578063d7224ba0146103eb57600080fd5b80639231ab2a116100de5780639231ab2a1461034e57806395d89b411461038f578063a0712d6814610397578063a22cb465146103aa57600080fd5b8063715018a61461030e5780638bc35c2f146103165780638da5cb5b1461033d57600080fd5b80632f745c59116101715780634f6ccce71161014b5780634f6ccce7146102c257806355f804b3146102d55780636352211e146102e857806370a08231146102fb57600080fd5b80632f745c5914610289578063375a069a1461029c57806342842e0e146102af57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c57806318160ddd1461025157806323b872dd146102635780632d20fb601461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004611f05565b61047d565b60405190151581526020015b60405180910390f35b6102046104ea565b6040516101f39190611f72565b61022461021f366004611f85565b61057c565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004611fba565b61060c565b005b6001545b6040519081526020016101f3565b61024f610271366004611fe4565b610723565b61024f610284366004611f85565b61072e565b610255610297366004611fba565b6107c0565b61024f6102aa366004611f85565b610937565b61024f6102bd366004611fe4565b610af5565b6102556102d0366004611f85565b610b10565b61024f6102e3366004612020565b610b79565b6102246102f6366004611f85565b610bb0565b610255610309366004612092565b610bc2565b61024f610c53565b6102557f000000000000000000000000000000000000000000000000000000000000000581565b6000546001600160a01b0316610224565b61036161035c366004611f85565b610c89565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101f3565b610204610ca6565b61024f6103a5366004611f85565b610cb5565b61024f6103b83660046120ad565b610e05565b61024f610ec9565b61024f6103d33660046120ff565b610fd5565b6102046103e6366004611f85565b61100e565b61025560085481565b610255610402366004612092565b6110db565b6101e76104153660046121db565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61024f610451366004612092565b6110e6565b6102557f000000000000000000000000000000000000000000000000000000000000000581565b60006001600160e01b031982166380ac58cd60e01b14806104ae57506001600160e01b03198216635b5e139f60e01b145b806104c957506001600160e01b0319821663780e9d6360e01b145b806104e457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104f99061220e565b80601f01602080910402602001604051908101604052809291908181526020018280546105259061220e565b80156105725780601f1061054757610100808354040283529160200191610572565b820191906000526020600020905b81548152906001019060200180831161055557829003601f168201915b5050505050905090565b6000610589826001541190565b6105f05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061061782610bb0565b9050806001600160a01b0316836001600160a01b0316036106855760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016105e7565b336001600160a01b03821614806106a157506106a18133610415565b6107135760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016105e7565b61071e83838361117e565b505050565b61071e8383836111da565b6000546001600160a01b031633146107585760405162461bcd60e51b81526004016105e790612248565b6002600954036107aa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105e7565b60026009556107b881611562565b506001600955565b60006107cb83610bc2565b82106108245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016105e7565b600061082f60015490565b905060008060005b838110156108d7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561088a57805192505b876001600160a01b0316836001600160a01b0316036108c4578684036108b6575093506104e492505050565b836108c081612293565b9450505b50806108cf81612293565b915050610837565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016105e7565b6000546001600160a01b031633146109615760405162461bcd60e51b81526004016105e790612248565b7f00000000000000000000000000000000000000000000000000000000000000058161098c60015490565b61099691906122ac565b11156109f45760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016105e7565b610a1e7f0000000000000000000000000000000000000000000000000000000000000005826122d5565b15610a805760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016105e7565b6000610aac7f0000000000000000000000000000000000000000000000000000000000000005836122e9565b905060005b8181101561071e57610ae3337f000000000000000000000000000000000000000000000000000000000000000561174c565b80610aed81612293565b915050610ab1565b61071e83838360405180602001604052806000815250610fd5565b6000610b1b60015490565b8210610b755760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016105e7565b5090565b6000546001600160a01b03163314610ba35760405162461bcd60e51b81526004016105e790612248565b600a61071e828483612343565b6000610bbb8261176a565b5192915050565b60006001600160a01b038216610c2e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016105e7565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016105e790612248565b610c876000611914565b565b60408051808201909152600080825260208201526104e48261176a565b6060600380546104f99061220e565b323314610d045760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016105e7565b7f000000000000000000000000000000000000000000000000000000000000138881610d2f60015490565b610d3991906122ac565b1115610d7c5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016105e7565b7f000000000000000000000000000000000000000000000000000000000000000581610da7336110db565b610db191906122ac565b1115610df85760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016105e7565b610e02338261174c565b50565b336001600160a01b03831603610e5d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016105e7565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610ef35760405162461bcd60e51b81526004016105e790612248565b600260095403610f455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105e7565b6002600955604051600090339047908381818185875af1925050503d8060008114610f8c576040519150601f19603f3d011682016040523d82523d6000602084013e610f91565b606091505b50509050806107b85760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016105e7565b610fe08484846111da565b610fec84848484611964565b6110085760405162461bcd60e51b81526004016105e790612404565b50505050565b606061101b826001541190565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e7565b6000611089611a66565b905060008151116110a957604051806020016040528060008152506110d4565b806110b384611a75565b6040516020016110c4929190612457565b6040516020818303038152906040525b9392505050565b60006104e482611b76565b6000546001600160a01b031633146111105760405162461bcd60e51b81526004016105e790612248565b6001600160a01b0381166111755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e7565b610e0281611914565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111e58261176a565b80519091506000906001600160a01b0316336001600160a01b0316148061121c5750336112118461057c565b6001600160a01b0316145b8061122e5750815161122e9033610415565b9050806112985760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105e7565b846001600160a01b031682600001516001600160a01b03161461130c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016105e7565b6001600160a01b0384166113705760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016105e7565b611380600084846000015161117e565b6001600160a01b03851660009081526005602052604081208054600192906113b29084906001600160801b0316612486565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926113fe918591166124ad565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114868460016122ac565b6000818152600460205260409020549091506001600160a01b0316611518576114b0816001541190565b156115185760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816115b25760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016105e7565b600060016115c084846122ac565b6115ca91906124cd565b90506115f760017f00000000000000000000000000000000000000000000000000000000000013886124cd565b81111561162c5761162960017f00000000000000000000000000000000000000000000000000000000000013886124cd565b90505b611637816001541190565b6116925760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016105e7565b815b818111611738576000818152600460205260409020546001600160a01b03166117265760006116c28261176a565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061173081612293565b915050611694565b506117448160016122ac565b600855505050565b611766828260405180602001604052806000815250611c14565b5050565b6040805180820190915260008082526020820152611789826001541190565b6117e85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016105e7565b60007f000000000000000000000000000000000000000000000000000000000000000583106118495761183b7f0000000000000000000000000000000000000000000000000000000000000005846124cd565b6118469060016122ac565b90505b825b8181106118b3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118a057949350505050565b50806118ab816124e0565b91505061184b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016105e7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611a5a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119a89033908990889088906004016124f7565b6020604051808303816000875af19250505080156119e3575060408051601f3d908101601f191682019092526119e091810190612534565b60015b611a40573d808015611a11576040519150601f19603f3d011682016040523d82523d6000602084013e611a16565b606091505b508051600003611a385760405162461bcd60e51b81526004016105e790612404565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a5e565b5060015b949350505050565b6060600a80546104f99061220e565b606081600003611a9c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac65780611ab081612293565b9150611abf9050600a836122e9565b9150611aa0565b60008167ffffffffffffffff811115611ae157611ae16120e9565b6040519080825280601f01601f191660200182016040528015611b0b576020820181803683370190505b5090505b8415611a5e57611b206001836124cd565b9150611b2d600a866122d5565b611b389060306122ac565b60f81b818381518110611b4d57611b4d612551565b60200101906001600160f81b031916908160001a905350611b6f600a866122e9565b9450611b0f565b60006001600160a01b038216611be85760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016105e7565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611c775760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105e7565b611c82816001541190565b15611ccf5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016105e7565b7f0000000000000000000000000000000000000000000000000000000000000005831115611d4a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016105e7565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611da69087906124ad565b6001600160801b03168152602001858360200151611dc491906124ad565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ee45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ea86000888488611964565b611ec45760405162461bcd60e51b81526004016105e790612404565b81611ece81612293565b9250508080611edc90612293565b915050611e5b565b50600181905561155a565b6001600160e01b031981168114610e0257600080fd5b600060208284031215611f1757600080fd5b81356110d481611eef565b60005b83811015611f3d578181015183820152602001611f25565b50506000910152565b60008151808452611f5e816020860160208601611f22565b601f01601f19169290920160200192915050565b6020815260006110d46020830184611f46565b600060208284031215611f9757600080fd5b5035919050565b80356001600160a01b0381168114611fb557600080fd5b919050565b60008060408385031215611fcd57600080fd5b611fd683611f9e565b946020939093013593505050565b600080600060608486031215611ff957600080fd5b61200284611f9e565b925061201060208501611f9e565b9150604084013590509250925092565b6000806020838503121561203357600080fd5b823567ffffffffffffffff8082111561204b57600080fd5b818501915085601f83011261205f57600080fd5b81358181111561206e57600080fd5b86602082850101111561208057600080fd5b60209290920196919550909350505050565b6000602082840312156120a457600080fd5b6110d482611f9e565b600080604083850312156120c057600080fd5b6120c983611f9e565b9150602083013580151581146120de57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561211557600080fd5b61211e85611f9e565b935061212c60208601611f9e565b925060408501359150606085013567ffffffffffffffff8082111561215057600080fd5b818701915087601f83011261216457600080fd5b813581811115612176576121766120e9565b604051601f8201601f19908116603f0116810190838211818310171561219e5761219e6120e9565b816040528281528a60208487010111156121b757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156121ee57600080fd5b6121f783611f9e565b915061220560208401611f9e565b90509250929050565b600181811c9082168061222257607f821691505b60208210810361224257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016122a5576122a561227d565b5060010190565b808201808211156104e4576104e461227d565b634e487b7160e01b600052601260045260246000fd5b6000826122e4576122e46122bf565b500690565b6000826122f8576122f86122bf565b500490565b601f82111561071e57600081815260208120601f850160051c810160208610156123245750805b601f850160051c820191505b8181101561155a57828155600101612330565b67ffffffffffffffff83111561235b5761235b6120e9565b61236f83612369835461220e565b836122fd565b6000601f8411600181146123a3576000851561238b5750838201355b600019600387901b1c1916600186901b1783556123fd565b600083815260209020601f19861690835b828110156123d457868501358255602094850194600190920191016123b4565b50868210156123f15760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612469818460208801611f22565b83519083019061247d818360208801611f22565b01949350505050565b6001600160801b038281168282160390808211156124a6576124a661227d565b5092915050565b6001600160801b038181168382160190808211156124a6576124a661227d565b818103818111156104e4576104e461227d565b6000816124ef576124ef61227d565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061252a90830184611f46565b9695505050505050565b60006020828403121561254657600080fd5b81516110d481611eef565b634e487b7160e01b600052603260045260246000fdfea264697066735822122073800f29ebbb963dca49a63432ee5d4a9027639ff924becc9bd2ac0b4c71486e64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000005

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : collectionSize_ (uint256): 5000
Arg [2] : amountForDevs_ (uint256): 5

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005


Deployed Bytecode Sourcemap

40990:2157:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26352:370;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26352:370:0;;;;;;;;28078:94;;;:::i;:::-;;;;;;;:::i;29603:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;29603:204:0;1533:203:1;29166:379:0;;;;;;:::i;:::-;;:::i;:::-;;24913:94;24989:12;;24913:94;;;2324:25:1;;;2312:2;2297:18;24913:94:0;2178:177:1;30453:142:0;;;;;;:::i;:::-;;:::i;42758:118::-;;;;;;:::i;:::-;;:::i;25544:744::-;;;;;;:::i;:::-;;:::i;41846:442::-;;;;;;:::i;:::-;;:::i;30658:157::-;;;;;;:::i;:::-;;:::i;25076:177::-;;;;;;:::i;:::-;;:::i;42465:100::-;;;;;;:::i;:::-;;:::i;27901:118::-;;;;;;:::i;:::-;;:::i;26778:211::-;;;;;;:::i;:::-;;:::i;40284:94::-;;;:::i;41053:48::-;;;;;39633:87;39679:7;39706:6;-1:-1:-1;;;;;39706:6:0;39633:87;;42995:147;;;;;;:::i;:::-;;:::i;:::-;;;;3711:13:1;;-1:-1:-1;;;;;3707:39:1;3689:58;;3807:4;3795:17;;;3789:24;3815:18;3785:49;3763:20;;;3756:79;;;;3662:18;42995:147:0;3481:360:1;28233:98:0;;;:::i;41535:305::-;;;;;;:::i;:::-;;:::i;29871:274::-;;;;;;:::i;:::-;;:::i;42571:181::-;;;:::i;30878:311::-;;;;;;:::i;:::-;;:::i;28394:394::-;;;;;;:::i;:::-;;:::i;35293:43::-;;;;;;42882:107;;;;;;:::i;:::-;;:::i;30208:186::-;;;;;;:::i;:::-;-1:-1:-1;;;;;30353:25:0;;;30330:4;30353:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30208:186;40533:192;;;;;;:::i;:::-;;:::i;41106:38::-;;;;;26352:370;26479:4;-1:-1:-1;;;;;;26509:40:0;;-1:-1:-1;;;26509:40:0;;:99;;-1:-1:-1;;;;;;;26560:48:0;;-1:-1:-1;;;26560:48:0;26509:99;:160;;;-1:-1:-1;;;;;;;26619:50:0;;-1:-1:-1;;;26619:50:0;26509:160;:207;;;-1:-1:-1;;;;;;;;;;12633:40:0;;;26680:36;26495:221;26352:370;-1:-1:-1;;26352:370:0:o;28078:94::-;28132:13;28161:5;28154:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28078:94;:::o;29603:204::-;29671:7;29695:16;29703:7;31515:12;;-1:-1:-1;31505:22:0;31428:105;29695:16;29687:74;;;;-1:-1:-1;;;29687:74:0;;6325:2:1;29687:74:0;;;6307:21:1;6364:2;6344:18;;;6337:30;6403:34;6383:18;;;6376:62;-1:-1:-1;;;6454:18:1;;;6447:43;6507:19;;29687:74:0;;;;;;;;;-1:-1:-1;29777:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29777:24:0;;29603:204::o;29166:379::-;29235:13;29251:24;29267:7;29251:15;:24::i;:::-;29235:40;;29296:5;-1:-1:-1;;;;;29290:11:0;:2;-1:-1:-1;;;;;29290:11:0;;29282:58;;;;-1:-1:-1;;;29282:58:0;;6739:2:1;29282:58:0;;;6721:21:1;6778:2;6758:18;;;6751:30;6817:34;6797:18;;;6790:62;-1:-1:-1;;;6868:18:1;;;6861:32;6910:19;;29282:58:0;6537:398:1;29282:58:0;22463:10;-1:-1:-1;;;;;29365:21:0;;;;:62;;-1:-1:-1;29390:37:0;29407:5;22463:10;30208:186;:::i;29390:37::-;29349:153;;;;-1:-1:-1;;;29349:153:0;;7142:2:1;29349:153:0;;;7124:21:1;7181:2;7161:18;;;7154:30;7220:34;7200:18;;;7193:62;7291:27;7271:18;;;7264:55;7336:19;;29349:153:0;6940:421:1;29349:153:0;29511:28;29520:2;29524:7;29533:5;29511:8;:28::i;:::-;29228:317;29166:379;;:::o;30453:142::-;30561:28;30571:4;30577:2;30581:7;30561:9;:28::i;42758:118::-;39679:7;39706:6;-1:-1:-1;;;;;39706:6:0;22463:10;39853:23;39845:68;;;;-1:-1:-1;;;39845:68:0;;;;;;;:::i;:::-;20834:1:::1;21430:7;;:19:::0;21422:63:::1;;;::::0;-1:-1:-1;;;21422:63:0;;7929:2:1;21422:63:0::1;::::0;::::1;7911:21:1::0;7968:2;7948:18;;;7941:30;8007:33;7987:18;;;7980:61;8058:18;;21422:63:0::1;7727:355:1::0;21422:63:0::1;20834:1;21563:7;:18:::0;42842:28:::2;42861:8:::0;42842:18:::2;:28::i;:::-;-1:-1:-1::0;20790:1:0::1;21742:7;:22:::0;42758:118::o;25544:744::-;25653:7;25688:16;25698:5;25688:9;:16::i;:::-;25680:5;:24;25672:71;;;;-1:-1:-1;;;25672:71:0;;8289:2:1;25672:71:0;;;8271:21:1;8328:2;8308:18;;;8301:30;8367:34;8347:18;;;8340:62;-1:-1:-1;;;8418:18:1;;;8411:32;8460:19;;25672:71:0;8087:398:1;25672:71:0;25750:22;25775:13;24989:12;;;24913:94;25775:13;25750:38;;25795:19;25825:25;25875:9;25870:350;25894:14;25890:1;:18;25870:350;;;25924:31;25958:14;;;:11;:14;;;;;;;;;25924:48;;;;;;;;;-1:-1:-1;;;;;25924:48:0;;;;;-1:-1:-1;;;25924:48:0;;;;;;;;;;;;25985:28;25981:89;;26046:14;;;-1:-1:-1;25981:89:0;26103:5;-1:-1:-1;;;;;26082:26:0;:17;-1:-1:-1;;;;;26082:26:0;;26078:135;;26140:5;26125:11;:20;26121:59;;-1:-1:-1;26167:1:0;-1:-1:-1;26160:8:0;;-1:-1:-1;;;26160:8:0;26121:59;26190:13;;;;:::i;:::-;;;;26078:135;-1:-1:-1;25910:3:0;;;;:::i;:::-;;;;25870:350;;;-1:-1:-1;26226:56:0;;-1:-1:-1;;;26226:56:0;;8964:2:1;26226:56:0;;;8946:21:1;9003:2;8983:18;;;8976:30;9042:34;9022:18;;;9015:62;-1:-1:-1;;;9093:18:1;;;9086:44;9147:19;;26226:56:0;8762:410:1;41846:442:0;39679:7;39706:6;-1:-1:-1;;;;;39706:6:0;22463:10;39853:23;39845:68;;;;-1:-1:-1;;;39845:68:0;;;;;;;:::i;:::-;41951:13:::1;41939:8;41923:13;24989:12:::0;;;24913:94;41923:13:::1;:24;;;;:::i;:::-;:41;;41907:114;;;::::0;-1:-1:-1;;;41907:114:0;;9509:2:1;41907:114:0::1;::::0;::::1;9491:21:1::0;9548:2;9528:18;;;9521:30;9587:34;9567:18;;;9560:62;-1:-1:-1;;;9638:18:1;;;9631:37;9685:19;;41907:114:0::1;9307:403:1::0;41907:114:0::1;42044:23;42055:12;42044:8:::0;:23:::1;:::i;:::-;:28:::0;42028:106:::1;;;::::0;-1:-1:-1;;;42028:106:0;;10166:2:1;42028:106:0::1;::::0;::::1;10148:21:1::0;10205:2;10185:18;;;10178:30;10244:34;10224:18;;;10217:62;-1:-1:-1;;;10295:18:1;;;10288:42;10347:19;;42028:106:0::1;9964:408:1::0;42028:106:0::1;42141:17;42161:23;42172:12;42161:8:::0;:23:::1;:::i;:::-;42141:43;;42196:9;42191:92;42215:9;42211:1;:13;42191:92;;;42240:35;42250:10;42262:12;42240:9;:35::i;:::-;42226:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42191:92;;30658:157:::0;30770:39;30787:4;30793:2;30797:7;30770:39;;;;;;;;;;;;:16;:39::i;25076:177::-;25143:7;25175:13;24989:12;;;24913:94;25175:13;25167:5;:21;25159:69;;;;-1:-1:-1;;;25159:69:0;;10704:2:1;25159:69:0;;;10686:21:1;10743:2;10723:18;;;10716:30;10782:34;10762:18;;;10755:62;-1:-1:-1;;;10833:18:1;;;10826:33;10876:19;;25159:69:0;10502:399:1;25159:69:0;-1:-1:-1;25242:5:0;25076:177::o;42465:100::-;39679:7;39706:6;-1:-1:-1;;;;;39706:6:0;22463:10;39853:23;39845:68;;;;-1:-1:-1;;;39845:68:0;;;;;;;:::i;:::-;42536:13:::1;:23;42552:7:::0;;42536:13;:23:::1;:::i;27901:118::-:0;27965:7;27988:20;28000:7;27988:11;:20::i;:::-;:25;;27901:118;-1:-1:-1;;27901:118:0:o;26778:211::-;26842:7;-1:-1:-1;;;;;26866:19:0;;26858:75;;;;-1:-1:-1;;;26858:75:0;;13166:2:1;26858:75:0;;;13148:21:1;13205:2;13185:18;;;13178:30;13244:34;13224:18;;;13217:62;-1:-1:-1;;;13295:18:1;;;13288:41;13346:19;;26858:75:0;12964:407:1;26858:75:0;-1:-1:-1;;;;;;26955:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26955:27:0;;26778:211::o;40284:94::-;39679:7;39706:6;-1:-1:-1;;;;;39706:6:0;22463:10;39853:23;39845:68;;;;-1:-1:-1;;;39845:68:0;;;;;;;:::i;:::-;40349:21:::1;40367:1;40349:9;:21::i;:::-;40284:94::o:0;42995:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;43116:20:0;43128:7;43116:11;:20::i;28233:98::-;28289:13;28318:7;28311:14;;;;;:::i;41535:305::-;41457:9;41470:10;41457:23;41449:66;;;;-1:-1:-1;;;41449:66:0;;13578:2:1;41449:66:0;;;13560:21:1;13617:2;13597:18;;;13590:30;13656:32;13636:18;;;13629:60;13706:18;;41449:66:0;13376:354:1;41449:66:0;41634:14:::1;41622:8;41606:13;24989:12:::0;;;24913:94;41606:13:::1;:24;;;;:::i;:::-;:42;;41598:73;;;::::0;-1:-1:-1;;;41598:73:0;;13937:2:1;41598:73:0::1;::::0;::::1;13919:21:1::0;13976:2;13956:18;;;13949:30;-1:-1:-1;;;13995:18:1;;;13988:48;14053:18;;41598:73:0::1;13735:342:1::0;41598:73:0::1;41733:23;41721:8;41694:24;41707:10;41694:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;41678:118;;;::::0;-1:-1:-1;;;41678:118:0;;14284:2:1;41678:118:0::1;::::0;::::1;14266:21:1::0;14323:2;14303:18;;;14296:30;-1:-1:-1;;;14342:18:1;;;14335:52;14404:18;;41678:118:0::1;14082:346:1::0;41678:118:0::1;41803:31;41813:10;41825:8;41803:9;:31::i;:::-;41535:305:::0;:::o;29871:274::-;22463:10;-1:-1:-1;;;;;29962:24:0;;;29954:63;;;;-1:-1:-1;;;29954:63:0;;14635:2:1;29954:63:0;;;14617:21:1;14674:2;14654:18;;;14647:30;14713:28;14693:18;;;14686:56;14759:18;;29954:63:0;14433:350:1;29954:63:0;22463:10;30026:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30026:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30026:53:0;;;;;;;;;;30091:48;;540:41:1;;;30026:42:0;;22463:10;30091:48;;513:18:1;30091:48:0;;;;;;;29871:274;;:::o;42571:181::-;39679:7;39706:6;-1:-1:-1;;;;;39706:6:0;22463:10;39853:23;39845:68;;;;-1:-1:-1;;;39845:68:0;;;;;;;:::i;:::-;20834:1:::1;21430:7;;:19:::0;21422:63:::1;;;::::0;-1:-1:-1;;;21422:63:0;;7929:2:1;21422:63:0::1;::::0;::::1;7911:21:1::0;7968:2;7948:18;;;7941:30;8007:33;7987:18;;;7980:61;8058:18;;21422:63:0::1;7727:355:1::0;21422:63:0::1;20834:1;21563:7;:18:::0;42654:49:::2;::::0;42636:12:::2;::::0;42654:10:::2;::::0;42677:21:::2;::::0;42636:12;42654:49;42636:12;42654:49;42677:21;42654:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42635:68;;;42718:7;42710:36;;;::::0;-1:-1:-1;;;42710:36:0;;15200:2:1;42710:36:0::2;::::0;::::2;15182:21:1::0;15239:2;15219:18;;;15212:30;-1:-1:-1;;;15258:18:1;;;15251:46;15314:18;;42710:36:0::2;14998:340:1::0;30878:311:0;31015:28;31025:4;31031:2;31035:7;31015:9;:28::i;:::-;31066:48;31089:4;31095:2;31099:7;31108:5;31066:22;:48::i;:::-;31050:133;;;;-1:-1:-1;;;31050:133:0;;;;;;;:::i;:::-;30878:311;;;;:::o;28394:394::-;28492:13;28533:16;28541:7;31515:12;;-1:-1:-1;31505:22:0;31428:105;28533:16;28517:97;;;;-1:-1:-1;;;28517:97:0;;15965:2:1;28517:97:0;;;15947:21:1;16004:2;15984:18;;;15977:30;16043:34;16023:18;;;16016:62;-1:-1:-1;;;16094:18:1;;;16087:45;16149:19;;28517:97:0;15763:411:1;28517:97:0;28623:21;28647:10;:8;:10::i;:::-;28623:34;;28702:1;28684:7;28678:21;:25;:104;;;;;;;;;;;;;;;;;28739:7;28748:18;:7;:16;:18::i;:::-;28722:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28678:104;28664:118;28394:394;-1:-1:-1;;;28394:394:0:o;42882:107::-;42940:7;42963:20;42977:5;42963:13;:20::i;40533:192::-;39679:7;39706:6;-1:-1:-1;;;;;39706:6:0;22463:10;39853:23;39845:68;;;;-1:-1:-1;;;39845:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40622:22:0;::::1;40614:73;;;::::0;-1:-1:-1;;;40614:73:0;;16882:2:1;40614:73:0::1;::::0;::::1;16864:21:1::0;16921:2;16901:18;;;16894:30;16960:34;16940:18;;;16933:62;-1:-1:-1;;;17011:18:1;;;17004:36;17057:19;;40614:73:0::1;16680:402:1::0;40614:73:0::1;40698:19;40708:8;40698:9;:19::i;35115:172::-:0;35212:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35212:29:0;-1:-1:-1;;;;;35212:29:0;;;;;;;;;35253:28;;35212:24;;35253:28;;;;;;;35115:172;;;:::o;33480:1529::-;33577:35;33615:20;33627:7;33615:11;:20::i;:::-;33686:18;;33577:58;;-1:-1:-1;33644:22:0;;-1:-1:-1;;;;;33670:34:0;22463:10;-1:-1:-1;;;;;33670:34:0;;:81;;;-1:-1:-1;22463:10:0;33715:20;33727:7;33715:11;:20::i;:::-;-1:-1:-1;;;;;33715:36:0;;33670:81;:142;;;-1:-1:-1;33779:18:0;;33762:50;;22463:10;30208:186;:::i;33762:50::-;33644:169;;33838:17;33822:101;;;;-1:-1:-1;;;33822:101:0;;17289:2:1;33822:101:0;;;17271:21:1;17328:2;17308:18;;;17301:30;17367:34;17347:18;;;17340:62;-1:-1:-1;;;17418:18:1;;;17411:48;17476:19;;33822:101:0;17087:414:1;33822:101:0;33970:4;-1:-1:-1;;;;;33948:26:0;:13;:18;;;-1:-1:-1;;;;;33948:26:0;;33932:98;;;;-1:-1:-1;;;33932:98:0;;17708:2:1;33932:98:0;;;17690:21:1;17747:2;17727:18;;;17720:30;17786:34;17766:18;;;17759:62;-1:-1:-1;;;17837:18:1;;;17830:36;17883:19;;33932:98:0;17506:402:1;33932:98:0;-1:-1:-1;;;;;34045:16:0;;34037:66;;;;-1:-1:-1;;;34037:66:0;;18115:2:1;34037:66:0;;;18097:21:1;18154:2;18134:18;;;18127:30;18193:34;18173:18;;;18166:62;-1:-1:-1;;;18244:18:1;;;18237:35;18289:19;;34037:66:0;17913:401:1;34037:66:0;34212:49;34229:1;34233:7;34242:13;:18;;;34212:8;:49::i;:::-;-1:-1:-1;;;;;34270:18:0;;;;;;:12;:18;;;;;:31;;34300:1;;34270:18;:31;;34300:1;;-1:-1:-1;;;;;34270:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;34270:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34308:16:0;;-1:-1:-1;34308:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;34308:16:0;;:29;;-1:-1:-1;;34308:29:0;;:::i;:::-;;;-1:-1:-1;;;;;34308:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34367:43:0;;;;;;;;-1:-1:-1;;;;;34367:43:0;;;;;;34393:15;34367:43;;;;;;;;;-1:-1:-1;34344:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;34344:66:0;-1:-1:-1;;;;;;34344:66:0;;;;;;;;;;;34660:11;34356:7;-1:-1:-1;34660:11:0;:::i;:::-;34723:1;34682:24;;;:11;:24;;;;;:29;34638:33;;-1:-1:-1;;;;;;34682:29:0;34678:236;;34740:20;34748:11;31515:12;;-1:-1:-1;31505:22:0;31428:105;34740:20;34736:171;;;34800:97;;;;;;;;34827:18;;-1:-1:-1;;;;;34800:97:0;;;;;;34858:28;;;;34800:97;;;;;;;;;;-1:-1:-1;34773:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;34773:124:0;-1:-1:-1;;;;;;34773:124:0;;;;;;;;;;;;34736:171;34946:7;34942:2;-1:-1:-1;;;;;34927:27:0;34936:4;-1:-1:-1;;;;;34927:27:0;;;;;;;;;;;34961:42;33570:1439;;;33480:1529;;;:::o;35441:846::-;35531:24;;35570:12;35562:49;;;;-1:-1:-1;;;35562:49:0;;18928:2:1;35562:49:0;;;18910:21:1;18967:2;18947:18;;;18940:30;19006:26;18986:18;;;18979:54;19050:18;;35562:49:0;18726:348:1;35562:49:0;35618:16;35668:1;35637:28;35657:8;35637:17;:28;:::i;:::-;:32;;;;:::i;:::-;35618:51;-1:-1:-1;35691:18:0;35708:1;35691:14;:18;:::i;:::-;35680:8;:29;35676:81;;;35731:18;35748:1;35731:14;:18;:::i;:::-;35720:29;;35676:81;35872:17;35880:8;31515:12;;-1:-1:-1;31505:22:0;31428:105;35872:17;35864:68;;;;-1:-1:-1;;;35864:68:0;;19414:2:1;35864:68:0;;;19396:21:1;19453:2;19433:18;;;19426:30;19492:34;19472:18;;;19465:62;-1:-1:-1;;;19543:18:1;;;19536:36;19589:19;;35864:68:0;19212:402:1;35864:68:0;35956:17;35939:297;35980:8;35975:1;:13;35939:297;;36039:1;36008:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;36008:19:0;36004:225;;36054:31;36088:14;36100:1;36088:11;:14::i;:::-;36130:89;;;;;;;;36157:14;;-1:-1:-1;;;;;36130:89:0;;;;;;36184:24;;;;36130:89;;;;;;;;;;-1:-1:-1;36113:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;36113:106:0;-1:-1:-1;;;;;;36113:106:0;;;;;;;;;;;;-1:-1:-1;36004:225:0;35990:3;;;;:::i;:::-;;;;35939:297;;;-1:-1:-1;36269:12:0;:8;36280:1;36269:12;:::i;:::-;36242:24;:39;-1:-1:-1;;;35441:846:0:o;31539:98::-;31604:27;31614:2;31618:8;31604:27;;;;;;;;;;;;:9;:27::i;:::-;31539:98;;:::o;27241:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;27358:16:0;27366:7;31515:12;;-1:-1:-1;31505:22:0;31428:105;27358:16;27350:71;;;;-1:-1:-1;;;27350:71:0;;19821:2:1;27350:71:0;;;19803:21:1;19860:2;19840:18;;;19833:30;19899:34;19879:18;;;19872:62;-1:-1:-1;;;19950:18:1;;;19943:40;20000:19;;27350:71:0;19619:406:1;27350:71:0;27430:26;27478:12;27467:7;:23;27463:93;;27522:22;27532:12;27522:7;:22;:::i;:::-;:26;;27547:1;27522:26;:::i;:::-;27501:47;;27463:93;27584:7;27564:212;27601:18;27593:4;:26;27564:212;;27638:31;27672:17;;;:11;:17;;;;;;;;;27638:51;;;;;;;;;-1:-1:-1;;;;;27638:51:0;;;;;-1:-1:-1;;;27638:51:0;;;;;;;;;;;;27702:28;27698:71;;27750:9;27241:606;-1:-1:-1;;;;27241:606:0:o;27698:71::-;-1:-1:-1;27621:6:0;;;;:::i;:::-;;;;27564:212;;;-1:-1:-1;27784:57:0;;-1:-1:-1;;;27784:57:0;;20373:2:1;27784:57:0;;;20355:21:1;20412:2;20392:18;;;20385:30;20451:34;20431:18;;;20424:62;-1:-1:-1;;;20502:18:1;;;20495:45;20557:19;;27784:57:0;20171:411:1;40733:173:0;40789:16;40808:6;;-1:-1:-1;;;;;40825:17:0;;;-1:-1:-1;;;;;;40825:17:0;;;;;;40858:40;;40808:6;;;;;;;40858:40;;40789:16;40858:40;40778:128;40733:173;:::o;36830:690::-;36967:4;-1:-1:-1;;;;;36984:13:0;;3219:20;3267:8;36980:535;;37023:72;;-1:-1:-1;;;37023:72:0;;-1:-1:-1;;;;;37023:36:0;;;;;:72;;22463:10;;37074:4;;37080:7;;37089:5;;37023:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37023:72:0;;;;;;;;-1:-1:-1;;37023:72:0;;;;;;;;;;;;:::i;:::-;;;37010:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37254:6;:13;37271:1;37254:18;37250:215;;37287:61;;-1:-1:-1;;;37287:61:0;;;;;;;:::i;37250:215::-;37433:6;37427:13;37418:6;37414:2;37410:15;37403:38;37010:464;-1:-1:-1;;;;;;37145:55:0;-1:-1:-1;;;37145:55:0;;-1:-1:-1;37138:62:0;;36980:535;-1:-1:-1;37503:4:0;36980:535;36830:690;;;;;;:::o;42351:108::-;42411:13;42440;42433:20;;;;;:::i;391:723::-;447:13;668:5;677:1;668:10;664:53;;-1:-1:-1;;695:10:0;;;;;;;;;;;;-1:-1:-1;;;695:10:0;;;;;391:723::o;664:53::-;742:5;727:12;783:78;790:9;;783:78;;816:8;;;;:::i;:::-;;-1:-1:-1;839:10:0;;-1:-1:-1;847:2:0;839:10;;:::i;:::-;;;783:78;;;871:19;903:6;893:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;893:17:0;;871:39;;921:154;928:10;;921:154;;955:11;965:1;955:11;;:::i;:::-;;-1:-1:-1;1024:10:0;1032:2;1024:5;:10;:::i;:::-;1011:24;;:2;:24;:::i;:::-;998:39;;981:6;988;981:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;981:56:0;;;;;;;;-1:-1:-1;1052:11:0;1061:2;1052:11;;:::i;:::-;;;921:154;;26995:240;27056:7;-1:-1:-1;;;;;27088:19:0;;27072:102;;;;-1:-1:-1;;;27072:102:0;;21669:2:1;27072:102:0;;;21651:21:1;21708:2;21688:18;;;21681:30;21747:34;21727:18;;;21720:62;-1:-1:-1;;;21798:18:1;;;21791:47;21855:19;;27072:102:0;21467:413:1;27072:102:0;-1:-1:-1;;;;;;27196:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;27196:32:0;;-1:-1:-1;;;;;27196:32:0;;26995:240::o;31976:1272::-;32104:12;;-1:-1:-1;;;;;32131:16:0;;32123:62;;;;-1:-1:-1;;;32123:62:0;;22087:2:1;32123:62:0;;;22069:21:1;22126:2;22106:18;;;22099:30;22165:34;22145:18;;;22138:62;-1:-1:-1;;;22216:18:1;;;22209:31;22257:19;;32123:62:0;21885:397:1;32123:62:0;32322:21;32330:12;31515;;-1:-1:-1;31505:22:0;31428:105;32322:21;32321:22;32313:64;;;;-1:-1:-1;;;32313:64:0;;22489:2:1;32313:64:0;;;22471:21:1;22528:2;22508:18;;;22501:30;22567:31;22547:18;;;22540:59;22616:18;;32313:64:0;22287:353:1;32313:64:0;32404:12;32392:8;:24;;32384:71;;;;-1:-1:-1;;;32384:71:0;;22847:2:1;32384:71:0;;;22829:21:1;22886:2;22866:18;;;22859:30;22925:34;22905:18;;;22898:62;-1:-1:-1;;;22976:18:1;;;22969:32;23018:19;;32384:71:0;22645:398:1;32384:71:0;-1:-1:-1;;;;;32567:16:0;;32534:30;32567:16;;;:12;:16;;;;;;;;;32534:49;;;;;;;;;-1:-1:-1;;;;;32534:49:0;;;;;-1:-1:-1;;;32534:49:0;;;;;;;;;;;32609:119;;;;;;;;32629:19;;32534:49;;32609:119;;;32629:39;;32659:8;;32629:39;:::i;:::-;-1:-1:-1;;;;;32609:119:0;;;;;32712:8;32677:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32609:119:0;;;;;;-1:-1:-1;;;;;32590:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;32590:138:0;;;;;;;;;;;;32763:43;;;;;;;;;;;32789:15;32763:43;;;;;;;;32735:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32735:71:0;-1:-1:-1;;;;;;32735:71:0;;;;;;;;;;;;;;;;;;32747:12;;32859:281;32883:8;32879:1;:12;32859:281;;;32912:38;;32937:12;;-1:-1:-1;;;;;32912:38:0;;;32929:1;;32912:38;;32929:1;;32912:38;32977:59;33008:1;33012:2;33016:12;33030:5;32977:22;:59::i;:::-;32959:150;;;;-1:-1:-1;;;32959:150:0;;;;;;;:::i;:::-;33118:14;;;;:::i;:::-;;;;32893:3;;;;;:::i;:::-;;;;32859:281;;;-1:-1:-1;33148:12:0;:27;;;33182:60;30878:311;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:592::-;2764:6;2772;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2881:9;2868:23;2910:18;2951:2;2943:6;2940:14;2937:34;;;2967:1;2964;2957:12;2937:34;3005:6;2994:9;2990:22;2980:32;;3050:7;3043:4;3039:2;3035:13;3031:27;3021:55;;3072:1;3069;3062:12;3021:55;3112:2;3099:16;3138:2;3130:6;3127:14;3124:34;;;3154:1;3151;3144:12;3124:34;3199:7;3194:2;3185:6;3181:2;3177:15;3173:24;3170:37;3167:57;;;3220:1;3217;3210:12;3167:57;3251:2;3243:11;;;;;3273:6;;-1:-1:-1;2693:592:1;;-1:-1:-1;;;;2693:592:1:o;3290:186::-;3349:6;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3441:29;3460:9;3441:29;:::i;3846:347::-;3911:6;3919;3972:2;3960:9;3951:7;3947:23;3943:32;3940:52;;;3988:1;3985;3978:12;3940:52;4011:29;4030:9;4011:29;:::i;:::-;4001:39;;4090:2;4079:9;4075:18;4062:32;4137:5;4130:13;4123:21;4116:5;4113:32;4103:60;;4159:1;4156;4149:12;4103:60;4182:5;4172:15;;;3846:347;;;;;:::o;4198:127::-;4259:10;4254:3;4250:20;4247:1;4240:31;4290:4;4287:1;4280:15;4314:4;4311:1;4304:15;4330:1138;4425:6;4433;4441;4449;4502:3;4490:9;4481:7;4477:23;4473:33;4470:53;;;4519:1;4516;4509:12;4470:53;4542:29;4561:9;4542:29;:::i;:::-;4532:39;;4590:38;4624:2;4613:9;4609:18;4590:38;:::i;:::-;4580:48;;4675:2;4664:9;4660:18;4647:32;4637:42;;4730:2;4719:9;4715:18;4702:32;4753:18;4794:2;4786:6;4783:14;4780:34;;;4810:1;4807;4800:12;4780:34;4848:6;4837:9;4833:22;4823:32;;4893:7;4886:4;4882:2;4878:13;4874:27;4864:55;;4915:1;4912;4905:12;4864:55;4951:2;4938:16;4973:2;4969;4966:10;4963:36;;;4979:18;;:::i;:::-;5054:2;5048:9;5022:2;5108:13;;-1:-1:-1;;5104:22:1;;;5128:2;5100:31;5096:40;5084:53;;;5152:18;;;5172:22;;;5149:46;5146:72;;;5198:18;;:::i;:::-;5238:10;5234:2;5227:22;5273:2;5265:6;5258:18;5313:7;5308:2;5303;5299;5295:11;5291:20;5288:33;5285:53;;;5334:1;5331;5324:12;5285:53;5390:2;5385;5381;5377:11;5372:2;5364:6;5360:15;5347:46;5435:1;5430:2;5425;5417:6;5413:15;5409:24;5402:35;5456:6;5446:16;;;;;;;4330:1138;;;;;;;:::o;5473:260::-;5541:6;5549;5602:2;5590:9;5581:7;5577:23;5573:32;5570:52;;;5618:1;5615;5608:12;5570:52;5641:29;5660:9;5641:29;:::i;:::-;5631:39;;5689:38;5723:2;5712:9;5708:18;5689:38;:::i;:::-;5679:48;;5473:260;;;;;:::o;5738:380::-;5817:1;5813:12;;;;5860;;;5881:61;;5935:4;5927:6;5923:17;5913:27;;5881:61;5988:2;5980:6;5977:14;5957:18;5954:38;5951:161;;6034:10;6029:3;6025:20;6022:1;6015:31;6069:4;6066:1;6059:15;6097:4;6094:1;6087:15;5951:161;;5738:380;;;:::o;7366:356::-;7568:2;7550:21;;;7587:18;;;7580:30;7646:34;7641:2;7626:18;;7619:62;7713:2;7698:18;;7366:356::o;8490:127::-;8551:10;8546:3;8542:20;8539:1;8532:31;8582:4;8579:1;8572:15;8606:4;8603:1;8596:15;8622:135;8661:3;8682:17;;;8679:43;;8702:18;;:::i;:::-;-1:-1:-1;8749:1:1;8738:13;;8622:135::o;9177:125::-;9242:9;;;9263:10;;;9260:36;;;9276:18;;:::i;9715:127::-;9776:10;9771:3;9767:20;9764:1;9757:31;9807:4;9804:1;9797:15;9831:4;9828:1;9821:15;9847:112;9879:1;9905;9895:35;;9910:18;;:::i;:::-;-1:-1:-1;9944:9:1;;9847:112::o;10377:120::-;10417:1;10443;10433:35;;10448:18;;:::i;:::-;-1:-1:-1;10482:9:1;;10377:120::o;11032:545::-;11134:2;11129:3;11126:11;11123:448;;;11170:1;11195:5;11191:2;11184:17;11240:4;11236:2;11226:19;11310:2;11298:10;11294:19;11291:1;11287:27;11281:4;11277:38;11346:4;11334:10;11331:20;11328:47;;;-1:-1:-1;11369:4:1;11328:47;11424:2;11419:3;11415:12;11412:1;11408:20;11402:4;11398:31;11388:41;;11479:82;11497:2;11490:5;11487:13;11479:82;;;11542:17;;;11523:1;11512:13;11479:82;;11753:1206;11877:18;11872:3;11869:27;11866:53;;;11899:18;;:::i;:::-;11928:94;12018:3;11978:38;12010:4;12004:11;11978:38;:::i;:::-;11972:4;11928:94;:::i;:::-;12048:1;12073:2;12068:3;12065:11;12090:1;12085:616;;;;12745:1;12762:3;12759:93;;;-1:-1:-1;12818:19:1;;;12805:33;12759:93;-1:-1:-1;;11710:1:1;11706:11;;;11702:24;11698:29;11688:40;11734:1;11730:11;;;11685:57;12865:78;;12058:895;;12085:616;10979:1;10972:14;;;11016:4;11003:18;;-1:-1:-1;;12121:17:1;;;12222:9;12244:229;12258:7;12255:1;12252:14;12244:229;;;12347:19;;;12334:33;12319:49;;12454:4;12439:20;;;;12407:1;12395:14;;;;12274:12;12244:229;;;12248:3;12501;12492:7;12489:16;12486:159;;;12625:1;12621:6;12615:3;12609;12606:1;12602:11;12598:21;12594:34;12590:39;12577:9;12572:3;12568:19;12555:33;12551:79;12543:6;12536:95;12486:159;;;12688:1;12682:3;12679:1;12675:11;12671:19;12665:4;12658:33;12058:895;;;11753:1206;;;:::o;15343:415::-;15545:2;15527:21;;;15584:2;15564:18;;;15557:30;15623:34;15618:2;15603:18;;15596:62;-1:-1:-1;;;15689:2:1;15674:18;;15667:49;15748:3;15733:19;;15343:415::o;16179:496::-;16358:3;16396:6;16390:13;16412:66;16471:6;16466:3;16459:4;16451:6;16447:17;16412:66;:::i;:::-;16541:13;;16500:16;;;;16563:70;16541:13;16500:16;16610:4;16598:17;;16563:70;:::i;:::-;16649:20;;16179:496;-1:-1:-1;;;;16179:496:1:o;18319:200::-;-1:-1:-1;;;;;18455:10:1;;;18443;;;18439:27;;18478:12;;;18475:38;;;18493:18;;:::i;:::-;18475:38;18319:200;;;;:::o;18524:197::-;-1:-1:-1;;;;;18646:10:1;;;18658;;;18642:27;;18681:11;;;18678:37;;;18695:18;;:::i;19079:128::-;19146:9;;;19167:11;;;19164:37;;;19181:18;;:::i;20030:136::-;20069:3;20097:5;20087:39;;20106:18;;:::i;:::-;-1:-1:-1;;;20142:18:1;;20030:136::o;20587:489::-;-1:-1:-1;;;;;20856:15:1;;;20838:34;;20908:15;;20903:2;20888:18;;20881:43;20955:2;20940:18;;20933:34;;;21003:3;20998:2;20983:18;;20976:31;;;20781:4;;21024:46;;21050:19;;21042:6;21024:46;:::i;:::-;21016:54;20587:489;-1:-1:-1;;;;;;20587:489:1:o;21081:249::-;21150:6;21203:2;21191:9;21182:7;21178:23;21174:32;21171:52;;;21219:1;21216;21209:12;21171:52;21251:9;21245:16;21270:30;21294:5;21270:30;:::i;21335:127::-;21396:10;21391:3;21387:20;21384:1;21377:31;21427:4;21424:1;21417:15;21451:4;21448:1;21441:15

Swarm Source

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