ETH Price: $3,295.80 (-3.79%)
Gas: 12 Gwei

Token

Gonnies (GONNIES)
 

Overview

Max Total Supply

2,171 GONNIES

Holders

208

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
apestackin738.eth
Balance
3 GONNIES
0xa4e131a22df699e6b3ee2933b614bd75457f6bd7
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:
Gonnies

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: ERC721A.sol



pragma solidity ^0.8.0;




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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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



// File: Gonnies.sol
pragma solidity ^0.8.0;

abstract contract GONS {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

abstract contract AmberToken {
    function balanceOf(address account) external virtual view returns (uint256);
    function transferFrom(address sender, address recipient, uint256 amount) external virtual returns (bool);
}

contract Gonnies is Ownable, ERC721A, ReentrancyGuard {

    uint256 public constant MAX_GONNIES = 2171;
    uint256 public constant MAX_BATCH_SIZE = 10;
    uint256 public constant MAX_BATCH_SIZE_PRESALE = 3;

    uint256 public constant presalePrice = 50000000000000000000; // 50 $AMBER
    uint256 public constant salePrice = 100000000000000000000; // 100 $AMBER

    address constant public BurnAddress = 0x000000000000000000000000000000000000dEaD;

    address gonsContract = 0x984EEA281Bf65638ac6ed30C4FF7977EA7fe0433; //Gorilla Nemesis Contract

    GONS private gons;
    AmberToken public amberToken; 

    mapping(address => uint256) public presaleAddressMintCounter;

    bool public isPresalePhaseLive = false;
    bool public isSalePhaseLive = false;

    string private _baseTokenURI;

    
    constructor() ERC721A("Gonnies", "GONNIES", MAX_BATCH_SIZE, MAX_GONNIES) {
        gons = GONS(gonsContract);
    }


    modifier mintGuardPresale(uint256 tokenCount) {
        require(totalSupply() + tokenCount <= MAX_GONNIES, "The mint would exceed the max supply");
        require(tokenCount <= MAX_BATCH_SIZE_PRESALE, "Exceeds token txn limit - max 3 per txn");

        uint balanceAmberToken = amberToken.balanceOf(msg.sender);
        require(balanceAmberToken >= presalePrice * tokenCount, "Insufficient amount of $AMBER");
        _;
    }

    modifier mintGuard(uint256 tokenCount) {
        require(totalSupply() + tokenCount <= MAX_GONNIES, "The mint would exceed the max supply");
        require(tokenCount <= MAX_BATCH_SIZE, "Exceeds token txn limit - max 10 per txn");

        uint balanceAmberToken = amberToken.balanceOf(msg.sender);
        require(balanceAmberToken >= salePrice * tokenCount, "Insufficient amount of $AMBER");
        _;
    }


    function mintGonniesPresale(uint256 amount) external payable mintGuardPresale(amount) {
        require(isPresalePhaseLive, "Presale phase is not active");
        require(presaleAddressMintCounter[msg.sender] + amount <= MAX_BATCH_SIZE_PRESALE, "Address have already minted max allocation, please wait until the Sales phase is active to mint without limit");
        require (gons.balanceOf(msg.sender) > 0, "You need at least one Gorilla Nemesis in your wallet during the Presale phase");

        _safeMint(msg.sender, amount);

        presaleAddressMintCounter[msg.sender] += amount;
        amberToken.transferFrom(msg.sender, BurnAddress, presalePrice * amount);
    }

    function mintGonnies(uint256 amount) external payable mintGuard(amount) {
        require(isSalePhaseLive, "Sales phase is not active");

        _safeMint(msg.sender, amount);
        amberToken.transferFrom(msg.sender, BurnAddress, salePrice * amount);
    }


    function setAmberToken(address _amber) external onlyOwner {
      amberToken = AmberToken(_amber);
    }

    function flipPresaleState() external onlyOwner {
        isPresalePhaseLive = !isPresalePhaseLive;
    }

    function flipSaleState() external onlyOwner {
        isSalePhaseLive = !isSalePhaseLive;
    }

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"BurnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BATCH_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BATCH_SIZE_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GONNIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amberToken","outputs":[{"internalType":"contract AmberToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":"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":"isPresalePhaseLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalePhaseLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintGonnies","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintGonniesPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAddressMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_amber","type":"address"}],"name":"setAmberToken","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":"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"}]

60c060405260006001819055600855600a80546001600160a01b03191673984eea281bf65638ac6ed30c4ff7977ea7fe0433179055600e805461ffff191690553480156200004c57600080fd5b5060405180604001604052806007815260200166476f6e6e69657360c81b81525060405180604001604052806007815260200166474f4e4e49455360c81b815250600a61087b620000ac620000a6620001df60201b60201c565b620001e3565b60008111620001195760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200017b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000110565b83516200019090600290602087019062000233565b508251620001a690600390602086019062000233565b5060a09190915260805250506001600955600a54600b80546001600160a01b0319166001600160a01b0390921691909117905562000316565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200024190620002d9565b90600052602060002090601f016020900481019282620002655760008555620002b0565b82601f106200028057805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002b057825182559160200191906001019062000293565b50620002be929150620002c2565b5090565b5b80821115620002be5760008155600101620002c3565b600181811c90821680620002ee57607f821691505b602082108114156200031057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516127d46200034760003960008181611a7601528181611aa00152611ec60152600050506127d46000f3fe60806040526004361061020e5760003560e01c8063715018a611610118578063cfdbf254116100a0578063ea330f801161006f578063ea330f80146105e2578063edb15584146105f5578063f2fde38b14610622578063f51f96dd14610642578063f81227d41461065f57600080fd5b8063cfdbf2541461054e578063d7224ba014610563578063e95c32df14610579578063e985e9c51461059957600080fd5b8063a22cb465116100e7578063a22cb465146104b8578063b88d4fde146104d8578063c0bfda92146104f8578063c87b56dd14610518578063cabcc7181461053857600080fd5b8063715018a61461045a57806371fc00e31461046f5780638da5cb5b1461048557806395d89b41146104a357600080fd5b80632f745c591161019b57806355f804b31161016a57806355f804b3146103c15780636352211e146103e15780636ca01dc2146104015780636ec3f6ac1461041b57806370a082311461043a57600080fd5b80632f745c591461034c57806334918dfd1461036c57806342842e0e146103815780634f6ccce7146103a157600080fd5b8063095ea7b3116101e2578063095ea7b3146102cd57806318160ddd146102ef57806318912e251461030457806323b872dd146103175780632bfdd4b21461033757600080fd5b80620e7fa81461021357806301ffc9a71461024357806306fdde0314610273578063081812fc14610295575b600080fd5b34801561021f57600080fd5b506102306802b5e3af16b188000081565b6040519081526020015b60405180910390f35b34801561024f57600080fd5b5061026361025e366004612374565b610674565b604051901515815260200161023a565b34801561027f57600080fd5b506102886106e1565b60405161023a91906124ea565b3480156102a157600080fd5b506102b56102b0366004612420565b610773565b6040516001600160a01b03909116815260200161023a565b3480156102d957600080fd5b506102ed6102e836600461232d565b610803565b005b3480156102fb57600080fd5b50600154610230565b6102ed610312366004612420565b61091b565b34801561032357600080fd5b506102ed6103323660046121de565b610ba9565b34801561034357600080fd5b50610230600381565b34801561035857600080fd5b5061023061036736600461232d565b610bb4565b34801561037857600080fd5b506102ed610d2d565b34801561038d57600080fd5b506102ed61039c3660046121de565b610d74565b3480156103ad57600080fd5b506102306103bc366004612420565b610d8f565b3480156103cd57600080fd5b506102ed6103dc3660046123ae565b610df8565b3480156103ed57600080fd5b506102b56103fc366004612420565b610e2e565b34801561040d57600080fd5b50600e546102639060ff1681565b34801561042757600080fd5b50600e5461026390610100900460ff1681565b34801561044657600080fd5b50610230610455366004612190565b610e40565b34801561046657600080fd5b506102ed610ed1565b34801561047b57600080fd5b5061023061087b81565b34801561049157600080fd5b506000546001600160a01b03166102b5565b3480156104af57600080fd5b50610288610f07565b3480156104c457600080fd5b506102ed6104d33660046122f6565b610f16565b3480156104e457600080fd5b506102ed6104f336600461221a565b610fdb565b34801561050457600080fd5b506102ed610513366004612190565b61100e565b34801561052457600080fd5b50610288610533366004612420565b61105a565b34801561054457600080fd5b506102b561dead81565b34801561055a57600080fd5b50610230600a81565b34801561056f57600080fd5b5061023060085481565b34801561058557600080fd5b50600c546102b5906001600160a01b031681565b3480156105a557600080fd5b506102636105b43660046121ab565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102ed6105f0366004612420565b611127565b34801561060157600080fd5b50610230610610366004612190565b600d6020526000908152604090205481565b34801561062e57600080fd5b506102ed61063d366004612190565b611519565b34801561064e57600080fd5b5061023068056bc75e2d6310000081565b34801561066b57600080fd5b506102ed6115b4565b60006001600160e01b031982166380ac58cd60e01b14806106a557506001600160e01b03198216635b5e139f60e01b145b806106c057506001600160e01b0319821663780e9d6360e01b145b806106db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106f0906126b8565b80601f016020809104026020016040519081016040528092919081815260200182805461071c906126b8565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b6000610780826001541190565b6107e75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061080e82610e2e565b9050806001600160a01b0316836001600160a01b0316141561087d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107de565b336001600160a01b0382161480610899575061089981336105b4565b61090b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107de565b6109168383836115f2565b505050565b8061087b8161092960015490565b61093391906125eb565b11156109515760405162461bcd60e51b81526004016107de906124fd565b600a8111156109b35760405162461bcd60e51b815260206004820152602860248201527f4578636565647320746f6b656e2074786e206c696d6974202d206d6178203130604482015267103832b9103a3c3760c11b60648201526084016107de565b600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156109f757600080fd5b505afa158015610a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2f9190612439565b9050610a448268056bc75e2d63100000612617565b811015610a935760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e7420616d6f756e74206f662024414d42455200000060448201526064016107de565b600e54610100900460ff16610aea5760405162461bcd60e51b815260206004820152601960248201527f53616c6573207068617365206973206e6f74206163746976650000000000000060448201526064016107de565b610af4338461164e565b600c546001600160a01b03166323b872dd3361dead610b1c8768056bc75e2d63100000612617565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015610b6b57600080fd5b505af1158015610b7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba39190612357565b50505050565b61091683838361166c565b6000610bbf83610e40565b8210610c185760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107de565b6000610c2360015490565b905060008060005b83811015610ccd576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c7e57805192505b876001600160a01b0316836001600160a01b03161415610cba5786841415610cac575093506106db92505050565b83610cb6816126f3565b9450505b5080610cc5816126f3565b915050610c2b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107de565b6000546001600160a01b03163314610d575760405162461bcd60e51b81526004016107de90612541565b600e805461ff001981166101009182900460ff1615909102179055565b61091683838360405180602001604052806000815250610fdb565b6000610d9a60015490565b8210610df45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107de565b5090565b6000546001600160a01b03163314610e225760405162461bcd60e51b81526004016107de90612541565b610916600f83836120e4565b6000610e39826119f4565b5192915050565b60006001600160a01b038216610eac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107de565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610efb5760405162461bcd60e51b81526004016107de90612541565b610f056000611b9e565b565b6060600380546106f0906126b8565b6001600160a01b038216331415610f6f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107de565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fe684848461166c565b610ff284848484611bee565b610ba35760405162461bcd60e51b81526004016107de90612576565b6000546001600160a01b031633146110385760405162461bcd60e51b81526004016107de90612541565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6060611067826001541190565b6110cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107de565b60006110d5611cfc565b905060008151116110f55760405180602001604052806000815250611120565b806110ff84611d0b565b60405160200161111092919061247e565b6040516020818303038152906040525b9392505050565b8061087b8161113560015490565b61113f91906125eb565b111561115d5760405162461bcd60e51b81526004016107de906124fd565b60038111156111be5760405162461bcd60e51b815260206004820152602760248201527f4578636565647320746f6b656e2074786e206c696d6974202d206d61782033206044820152663832b9103a3c3760c91b60648201526084016107de565b600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561120257600080fd5b505afa158015611216573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123a9190612439565b905061124f826802b5e3af16b1880000612617565b81101561129e5760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e7420616d6f756e74206f662024414d42455200000060448201526064016107de565b600e5460ff166112f05760405162461bcd60e51b815260206004820152601b60248201527f50726573616c65207068617365206973206e6f7420616374697665000000000060448201526064016107de565b336000908152600d602052604090205460039061130e9085906125eb565b11156113be5760405162461bcd60e51b815260206004820152606d60248201527f41646472657373206861766520616c7265616479206d696e746564206d61782060448201527f616c6c6f636174696f6e2c20706c65617365207761697420756e74696c20746860648201527f652053616c65732070686173652069732061637469766520746f206d696e742060848201526c1dda5d1a1bdd5d081b1a5b5a5d609a1b60a482015260c4016107de565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561140257600080fd5b505afa158015611416573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143a9190612439565b116114c35760405162461bcd60e51b815260206004820152604d60248201527f596f75206e656564206174206c65617374206f6e6520476f72696c6c61204e6560448201527f6d6573697320696e20796f75722077616c6c657420647572696e67207468652060648201526c50726573616c6520706861736560981b608482015260a4016107de565b6114cd338461164e565b336000908152600d6020526040812080548592906114ec9084906125eb565b9091555050600c546001600160a01b03166323b872dd3361dead610b1c876802b5e3af16b1880000612617565b6000546001600160a01b031633146115435760405162461bcd60e51b81526004016107de90612541565b6001600160a01b0381166115a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107de565b6115b181611b9e565b50565b6000546001600160a01b031633146115de5760405162461bcd60e51b81526004016107de90612541565b600e805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611668828260405180602001604052806000815250611e09565b5050565b6000611677826119f4565b80519091506000906001600160a01b0316336001600160a01b031614806116ae5750336116a384610773565b6001600160a01b0316145b806116c0575081516116c090336105b4565b90508061172a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107de565b846001600160a01b031682600001516001600160a01b03161461179e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107de565b6001600160a01b0384166118025760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107de565b61181260008484600001516115f2565b6001600160a01b03851660009081526005602052604081208054600192906118449084906001600160801b0316612636565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611890918591166125c9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119188460016125eb565b6000818152600460205260409020549091506001600160a01b03166119aa57611942816001541190565b156119aa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a13826001541190565b611a725760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107de565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ad357611ac57f00000000000000000000000000000000000000000000000000000000000000008461265e565b611ad09060016125eb565b90505b825b818110611b3d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2a57949350505050565b5080611b35816126a1565b915050611ad5565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107de565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611cf057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c329033908990889088906004016124ad565b602060405180830381600087803b158015611c4c57600080fd5b505af1925050508015611c7c575060408051601f3d908101601f19168201909252611c7991810190612391565b60015b611cd6573d808015611caa576040519150601f19603f3d011682016040523d82523d6000602084013e611caf565b606091505b508051611cce5760405162461bcd60e51b81526004016107de90612576565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cf4565b5060015b949350505050565b6060600f80546106f0906126b8565b606081611d2f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d595780611d43816126f3565b9150611d529050600a83612603565b9150611d33565b60008167ffffffffffffffff811115611d7457611d74612764565b6040519080825280601f01601f191660200182016040528015611d9e576020820181803683370190505b5090505b8415611cf457611db360018361265e565b9150611dc0600a8661270e565b611dcb9060306125eb565b60f81b818381518110611de057611de061274e565b60200101906001600160f81b031916908160001a905350611e02600a86612603565b9450611da2565b6001546001600160a01b038416611e6c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107de565b611e77816001541190565b15611ec45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107de565b7f0000000000000000000000000000000000000000000000000000000000000000831115611f3f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107de565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611f9b9087906125c9565b6001600160801b03168152602001858360200151611fb991906125c9565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120d95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461209d6000888488611bee565b6120b95760405162461bcd60e51b81526004016107de90612576565b816120c3816126f3565b92505080806120d1906126f3565b915050612050565b5060018190556119ec565b8280546120f0906126b8565b90600052602060002090601f0160209004810192826121125760008555612158565b82601f1061212b5782800160ff19823516178555612158565b82800160010185558215612158579182015b8281111561215857823582559160200191906001019061213d565b50610df49291505b80821115610df45760008155600101612160565b80356001600160a01b038116811461218b57600080fd5b919050565b6000602082840312156121a257600080fd5b61112082612174565b600080604083850312156121be57600080fd5b6121c783612174565b91506121d560208401612174565b90509250929050565b6000806000606084860312156121f357600080fd5b6121fc84612174565b925061220a60208501612174565b9150604084013590509250925092565b6000806000806080858703121561223057600080fd5b61223985612174565b935061224760208601612174565b925060408501359150606085013567ffffffffffffffff8082111561226b57600080fd5b818701915087601f83011261227f57600080fd5b81358181111561229157612291612764565b604051601f8201601f19908116603f011681019083821181831017156122b9576122b9612764565b816040528281528a60208487010111156122d257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561230957600080fd5b61231283612174565b915060208301356123228161277a565b809150509250929050565b6000806040838503121561234057600080fd5b61234983612174565b946020939093013593505050565b60006020828403121561236957600080fd5b81516111208161277a565b60006020828403121561238657600080fd5b813561112081612788565b6000602082840312156123a357600080fd5b815161112081612788565b600080602083850312156123c157600080fd5b823567ffffffffffffffff808211156123d957600080fd5b818501915085601f8301126123ed57600080fd5b8135818111156123fc57600080fd5b86602082850101111561240e57600080fd5b60209290920196919550909350505050565b60006020828403121561243257600080fd5b5035919050565b60006020828403121561244b57600080fd5b5051919050565b6000815180845261246a816020860160208601612675565b601f01601f19169290920160200192915050565b60008351612490818460208801612675565b8351908301906124a4818360208801612675565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e090830184612452565b9695505050505050565b6020815260006111206020830184612452565b60208082526024908201527f546865206d696e7420776f756c642065786365656420746865206d617820737560408201526370706c7960e01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124a4576124a4612722565b600082198211156125fe576125fe612722565b500190565b60008261261257612612612738565b500490565b600081600019048311821515161561263157612631612722565b500290565b60006001600160801b038381169083168181101561265657612656612722565b039392505050565b60008282101561267057612670612722565b500390565b60005b83811015612690578181015183820152602001612678565b83811115610ba35750506000910152565b6000816126b0576126b0612722565b506000190190565b600181811c908216806126cc57607f821691505b602082108114156126ed57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561270757612707612722565b5060010190565b60008261271d5761271d612738565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146115b157600080fd5b6001600160e01b0319811681146115b157600080fdfea2646970667358221220fd45b3ea8ef6a68fe8386d0a25d0589934d83cc7dc5e4cfb0dfeabd8a1c01ee264736f6c63430008060033

Deployed Bytecode

0x60806040526004361061020e5760003560e01c8063715018a611610118578063cfdbf254116100a0578063ea330f801161006f578063ea330f80146105e2578063edb15584146105f5578063f2fde38b14610622578063f51f96dd14610642578063f81227d41461065f57600080fd5b8063cfdbf2541461054e578063d7224ba014610563578063e95c32df14610579578063e985e9c51461059957600080fd5b8063a22cb465116100e7578063a22cb465146104b8578063b88d4fde146104d8578063c0bfda92146104f8578063c87b56dd14610518578063cabcc7181461053857600080fd5b8063715018a61461045a57806371fc00e31461046f5780638da5cb5b1461048557806395d89b41146104a357600080fd5b80632f745c591161019b57806355f804b31161016a57806355f804b3146103c15780636352211e146103e15780636ca01dc2146104015780636ec3f6ac1461041b57806370a082311461043a57600080fd5b80632f745c591461034c57806334918dfd1461036c57806342842e0e146103815780634f6ccce7146103a157600080fd5b8063095ea7b3116101e2578063095ea7b3146102cd57806318160ddd146102ef57806318912e251461030457806323b872dd146103175780632bfdd4b21461033757600080fd5b80620e7fa81461021357806301ffc9a71461024357806306fdde0314610273578063081812fc14610295575b600080fd5b34801561021f57600080fd5b506102306802b5e3af16b188000081565b6040519081526020015b60405180910390f35b34801561024f57600080fd5b5061026361025e366004612374565b610674565b604051901515815260200161023a565b34801561027f57600080fd5b506102886106e1565b60405161023a91906124ea565b3480156102a157600080fd5b506102b56102b0366004612420565b610773565b6040516001600160a01b03909116815260200161023a565b3480156102d957600080fd5b506102ed6102e836600461232d565b610803565b005b3480156102fb57600080fd5b50600154610230565b6102ed610312366004612420565b61091b565b34801561032357600080fd5b506102ed6103323660046121de565b610ba9565b34801561034357600080fd5b50610230600381565b34801561035857600080fd5b5061023061036736600461232d565b610bb4565b34801561037857600080fd5b506102ed610d2d565b34801561038d57600080fd5b506102ed61039c3660046121de565b610d74565b3480156103ad57600080fd5b506102306103bc366004612420565b610d8f565b3480156103cd57600080fd5b506102ed6103dc3660046123ae565b610df8565b3480156103ed57600080fd5b506102b56103fc366004612420565b610e2e565b34801561040d57600080fd5b50600e546102639060ff1681565b34801561042757600080fd5b50600e5461026390610100900460ff1681565b34801561044657600080fd5b50610230610455366004612190565b610e40565b34801561046657600080fd5b506102ed610ed1565b34801561047b57600080fd5b5061023061087b81565b34801561049157600080fd5b506000546001600160a01b03166102b5565b3480156104af57600080fd5b50610288610f07565b3480156104c457600080fd5b506102ed6104d33660046122f6565b610f16565b3480156104e457600080fd5b506102ed6104f336600461221a565b610fdb565b34801561050457600080fd5b506102ed610513366004612190565b61100e565b34801561052457600080fd5b50610288610533366004612420565b61105a565b34801561054457600080fd5b506102b561dead81565b34801561055a57600080fd5b50610230600a81565b34801561056f57600080fd5b5061023060085481565b34801561058557600080fd5b50600c546102b5906001600160a01b031681565b3480156105a557600080fd5b506102636105b43660046121ab565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102ed6105f0366004612420565b611127565b34801561060157600080fd5b50610230610610366004612190565b600d6020526000908152604090205481565b34801561062e57600080fd5b506102ed61063d366004612190565b611519565b34801561064e57600080fd5b5061023068056bc75e2d6310000081565b34801561066b57600080fd5b506102ed6115b4565b60006001600160e01b031982166380ac58cd60e01b14806106a557506001600160e01b03198216635b5e139f60e01b145b806106c057506001600160e01b0319821663780e9d6360e01b145b806106db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106f0906126b8565b80601f016020809104026020016040519081016040528092919081815260200182805461071c906126b8565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b6000610780826001541190565b6107e75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061080e82610e2e565b9050806001600160a01b0316836001600160a01b0316141561087d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107de565b336001600160a01b0382161480610899575061089981336105b4565b61090b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107de565b6109168383836115f2565b505050565b8061087b8161092960015490565b61093391906125eb565b11156109515760405162461bcd60e51b81526004016107de906124fd565b600a8111156109b35760405162461bcd60e51b815260206004820152602860248201527f4578636565647320746f6b656e2074786e206c696d6974202d206d6178203130604482015267103832b9103a3c3760c11b60648201526084016107de565b600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156109f757600080fd5b505afa158015610a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2f9190612439565b9050610a448268056bc75e2d63100000612617565b811015610a935760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e7420616d6f756e74206f662024414d42455200000060448201526064016107de565b600e54610100900460ff16610aea5760405162461bcd60e51b815260206004820152601960248201527f53616c6573207068617365206973206e6f74206163746976650000000000000060448201526064016107de565b610af4338461164e565b600c546001600160a01b03166323b872dd3361dead610b1c8768056bc75e2d63100000612617565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015610b6b57600080fd5b505af1158015610b7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba39190612357565b50505050565b61091683838361166c565b6000610bbf83610e40565b8210610c185760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107de565b6000610c2360015490565b905060008060005b83811015610ccd576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c7e57805192505b876001600160a01b0316836001600160a01b03161415610cba5786841415610cac575093506106db92505050565b83610cb6816126f3565b9450505b5080610cc5816126f3565b915050610c2b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107de565b6000546001600160a01b03163314610d575760405162461bcd60e51b81526004016107de90612541565b600e805461ff001981166101009182900460ff1615909102179055565b61091683838360405180602001604052806000815250610fdb565b6000610d9a60015490565b8210610df45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107de565b5090565b6000546001600160a01b03163314610e225760405162461bcd60e51b81526004016107de90612541565b610916600f83836120e4565b6000610e39826119f4565b5192915050565b60006001600160a01b038216610eac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107de565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610efb5760405162461bcd60e51b81526004016107de90612541565b610f056000611b9e565b565b6060600380546106f0906126b8565b6001600160a01b038216331415610f6f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107de565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fe684848461166c565b610ff284848484611bee565b610ba35760405162461bcd60e51b81526004016107de90612576565b6000546001600160a01b031633146110385760405162461bcd60e51b81526004016107de90612541565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6060611067826001541190565b6110cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107de565b60006110d5611cfc565b905060008151116110f55760405180602001604052806000815250611120565b806110ff84611d0b565b60405160200161111092919061247e565b6040516020818303038152906040525b9392505050565b8061087b8161113560015490565b61113f91906125eb565b111561115d5760405162461bcd60e51b81526004016107de906124fd565b60038111156111be5760405162461bcd60e51b815260206004820152602760248201527f4578636565647320746f6b656e2074786e206c696d6974202d206d61782033206044820152663832b9103a3c3760c91b60648201526084016107de565b600c546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561120257600080fd5b505afa158015611216573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123a9190612439565b905061124f826802b5e3af16b1880000612617565b81101561129e5760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e7420616d6f756e74206f662024414d42455200000060448201526064016107de565b600e5460ff166112f05760405162461bcd60e51b815260206004820152601b60248201527f50726573616c65207068617365206973206e6f7420616374697665000000000060448201526064016107de565b336000908152600d602052604090205460039061130e9085906125eb565b11156113be5760405162461bcd60e51b815260206004820152606d60248201527f41646472657373206861766520616c7265616479206d696e746564206d61782060448201527f616c6c6f636174696f6e2c20706c65617365207761697420756e74696c20746860648201527f652053616c65732070686173652069732061637469766520746f206d696e742060848201526c1dda5d1a1bdd5d081b1a5b5a5d609a1b60a482015260c4016107de565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561140257600080fd5b505afa158015611416573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143a9190612439565b116114c35760405162461bcd60e51b815260206004820152604d60248201527f596f75206e656564206174206c65617374206f6e6520476f72696c6c61204e6560448201527f6d6573697320696e20796f75722077616c6c657420647572696e67207468652060648201526c50726573616c6520706861736560981b608482015260a4016107de565b6114cd338461164e565b336000908152600d6020526040812080548592906114ec9084906125eb565b9091555050600c546001600160a01b03166323b872dd3361dead610b1c876802b5e3af16b1880000612617565b6000546001600160a01b031633146115435760405162461bcd60e51b81526004016107de90612541565b6001600160a01b0381166115a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107de565b6115b181611b9e565b50565b6000546001600160a01b031633146115de5760405162461bcd60e51b81526004016107de90612541565b600e805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611668828260405180602001604052806000815250611e09565b5050565b6000611677826119f4565b80519091506000906001600160a01b0316336001600160a01b031614806116ae5750336116a384610773565b6001600160a01b0316145b806116c0575081516116c090336105b4565b90508061172a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107de565b846001600160a01b031682600001516001600160a01b03161461179e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107de565b6001600160a01b0384166118025760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107de565b61181260008484600001516115f2565b6001600160a01b03851660009081526005602052604081208054600192906118449084906001600160801b0316612636565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611890918591166125c9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119188460016125eb565b6000818152600460205260409020549091506001600160a01b03166119aa57611942816001541190565b156119aa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a13826001541190565b611a725760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107de565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611ad357611ac57f000000000000000000000000000000000000000000000000000000000000000a8461265e565b611ad09060016125eb565b90505b825b818110611b3d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2a57949350505050565b5080611b35816126a1565b915050611ad5565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107de565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611cf057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c329033908990889088906004016124ad565b602060405180830381600087803b158015611c4c57600080fd5b505af1925050508015611c7c575060408051601f3d908101601f19168201909252611c7991810190612391565b60015b611cd6573d808015611caa576040519150601f19603f3d011682016040523d82523d6000602084013e611caf565b606091505b508051611cce5760405162461bcd60e51b81526004016107de90612576565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cf4565b5060015b949350505050565b6060600f80546106f0906126b8565b606081611d2f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d595780611d43816126f3565b9150611d529050600a83612603565b9150611d33565b60008167ffffffffffffffff811115611d7457611d74612764565b6040519080825280601f01601f191660200182016040528015611d9e576020820181803683370190505b5090505b8415611cf457611db360018361265e565b9150611dc0600a8661270e565b611dcb9060306125eb565b60f81b818381518110611de057611de061274e565b60200101906001600160f81b031916908160001a905350611e02600a86612603565b9450611da2565b6001546001600160a01b038416611e6c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107de565b611e77816001541190565b15611ec45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107de565b7f000000000000000000000000000000000000000000000000000000000000000a831115611f3f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107de565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611f9b9087906125c9565b6001600160801b03168152602001858360200151611fb991906125c9565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120d95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461209d6000888488611bee565b6120b95760405162461bcd60e51b81526004016107de90612576565b816120c3816126f3565b92505080806120d1906126f3565b915050612050565b5060018190556119ec565b8280546120f0906126b8565b90600052602060002090601f0160209004810192826121125760008555612158565b82601f1061212b5782800160ff19823516178555612158565b82800160010185558215612158579182015b8281111561215857823582559160200191906001019061213d565b50610df49291505b80821115610df45760008155600101612160565b80356001600160a01b038116811461218b57600080fd5b919050565b6000602082840312156121a257600080fd5b61112082612174565b600080604083850312156121be57600080fd5b6121c783612174565b91506121d560208401612174565b90509250929050565b6000806000606084860312156121f357600080fd5b6121fc84612174565b925061220a60208501612174565b9150604084013590509250925092565b6000806000806080858703121561223057600080fd5b61223985612174565b935061224760208601612174565b925060408501359150606085013567ffffffffffffffff8082111561226b57600080fd5b818701915087601f83011261227f57600080fd5b81358181111561229157612291612764565b604051601f8201601f19908116603f011681019083821181831017156122b9576122b9612764565b816040528281528a60208487010111156122d257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561230957600080fd5b61231283612174565b915060208301356123228161277a565b809150509250929050565b6000806040838503121561234057600080fd5b61234983612174565b946020939093013593505050565b60006020828403121561236957600080fd5b81516111208161277a565b60006020828403121561238657600080fd5b813561112081612788565b6000602082840312156123a357600080fd5b815161112081612788565b600080602083850312156123c157600080fd5b823567ffffffffffffffff808211156123d957600080fd5b818501915085601f8301126123ed57600080fd5b8135818111156123fc57600080fd5b86602082850101111561240e57600080fd5b60209290920196919550909350505050565b60006020828403121561243257600080fd5b5035919050565b60006020828403121561244b57600080fd5b5051919050565b6000815180845261246a816020860160208601612675565b601f01601f19169290920160200192915050565b60008351612490818460208801612675565b8351908301906124a4818360208801612675565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e090830184612452565b9695505050505050565b6020815260006111206020830184612452565b60208082526024908201527f546865206d696e7420776f756c642065786365656420746865206d617820737560408201526370706c7960e01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124a4576124a4612722565b600082198211156125fe576125fe612722565b500190565b60008261261257612612612738565b500490565b600081600019048311821515161561263157612631612722565b500290565b60006001600160801b038381169083168181101561265657612656612722565b039392505050565b60008282101561267057612670612722565b500390565b60005b83811015612690578181015183820152602001612678565b83811115610ba35750506000910152565b6000816126b0576126b0612722565b506000190190565b600181811c908216806126cc57607f821691505b602082108114156126ed57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561270757612707612722565b5060010190565b60008261271d5761271d612738565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b80151581146115b157600080fd5b6001600160e01b0319811681146115b157600080fdfea2646970667358221220fd45b3ea8ef6a68fe8386d0a25d0589934d83cc7dc5e4cfb0dfeabd8a1c01ee264736f6c63430008060033

Deployed Bytecode Sourcemap

42719:3364:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42940:59;;;;;;;;;;;;42979:20;42940:59;;;;;18428:25:1;;;18416:2;18401:18;42940:59:0;;;;;;;;27310:370;;;;;;;;;;-1:-1:-1;27310:370:0;;;;;:::i;:::-;;:::i;:::-;;;6411:14:1;;6404:22;6386:41;;6374:2;6359:18;27310:370:0;6341:92:1;29036:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30561:204::-;;;;;;;;;;-1:-1:-1;30561:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5329:32:1;;;5311:51;;5299:2;5284:18;30561:204:0;5266:102:1;30124:379:0;;;;;;;;;;-1:-1:-1;30124:379:0;;;;;:::i;:::-;;:::i;:::-;;25871:94;;;;;;;;;;-1:-1:-1;25947:12:0;;25871:94;;45242:265;;;;;;:::i;:::-;;:::i;31411:142::-;;;;;;;;;;-1:-1:-1;31411:142:0;;;;;:::i;:::-;;:::i;42881:50::-;;;;;;;;;;;;42930:1;42881:50;;26502:744;;;;;;;;;;-1:-1:-1;26502:744:0;;;;;:::i;:::-;;:::i;45745:97::-;;;;;;;;;;;;;:::i;31616:157::-;;;;;;;;;;-1:-1:-1;31616:157:0;;;;;:::i;:::-;;:::i;26034:177::-;;;;;;;;;;-1:-1:-1;26034:177:0;;;;;:::i;:::-;;:::i;45850:106::-;;;;;;;;;;-1:-1:-1;45850:106:0;;;;;:::i;:::-;;:::i;28859:118::-;;;;;;;;;;-1:-1:-1;28859:118:0;;;;;:::i;:::-;;:::i;43420:38::-;;;;;;;;;;-1:-1:-1;43420:38:0;;;;;;;;43465:35;;;;;;;;;;-1:-1:-1;43465:35:0;;;;;;;;;;;27736:211;;;;;;;;;;-1:-1:-1;27736:211:0;;;;;:::i;:::-;;:::i;41325:103::-;;;;;;;;;;;;;:::i;42782:42::-;;;;;;;;;;;;42820:4;42782:42;;40674:87;;;;;;;;;;-1:-1:-1;40720:7:0;40747:6;-1:-1:-1;;;;;40747:6:0;40674:87;;29191:98;;;;;;;;;;;;;:::i;30829:274::-;;;;;;;;;;-1:-1:-1;30829:274:0;;;;;:::i;:::-;;:::i;31836:311::-;;;;;;;;;;-1:-1:-1;31836:311:0;;;;;:::i;:::-;;:::i;45517:106::-;;;;;;;;;;-1:-1:-1;45517:106:0;;;;;:::i;:::-;;:::i;29352:394::-;;;;;;;;;;-1:-1:-1;29352:394:0;;;;;:::i;:::-;;:::i;43099:80::-;;;;;;;;;;;;43137:42;43099:80;;42831:43;;;;;;;;;;;;42872:2;42831:43;;36251;;;;;;;;;;;;;;;;43313:28;;;;;;;;;;-1:-1:-1;43313:28:0;;;;-1:-1:-1;;;;;43313:28:0;;;31166:186;;;;;;;;;;-1:-1:-1;31166:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31311:25:0;;;31288:4;31311:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31166:186;44550:684;;;;;;:::i;:::-;;:::i;43351:60::-;;;;;;;;;;-1:-1:-1;43351:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;41583:201;;;;;;;;;;-1:-1:-1;41583:201:0;;;;;:::i;:::-;;:::i;43019:57::-;;;;;;;;;;;;43055:21;43019:57;;45631:106;;;;;;;;;;;;;:::i;27310:370::-;27437:4;-1:-1:-1;;;;;;27467:40:0;;-1:-1:-1;;;27467:40:0;;:99;;-1:-1:-1;;;;;;;27518:48:0;;-1:-1:-1;;;27518:48:0;27467:99;:160;;;-1:-1:-1;;;;;;;27577:50:0;;-1:-1:-1;;;27577:50:0;27467:160;:207;;;-1:-1:-1;;;;;;;;;;10996:40:0;;;27638:36;27453:221;27310:370;-1:-1:-1;;27310:370:0:o;29036:94::-;29090:13;29119:5;29112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29036:94;:::o;30561:204::-;30629:7;30653:16;30661:7;32473:12;;-1:-1:-1;32463:22:0;32386:105;30653:16;30645:74;;;;-1:-1:-1;;;30645:74:0;;17667:2:1;30645:74:0;;;17649:21:1;17706:2;17686:18;;;17679:30;17745:34;17725:18;;;17718:62;-1:-1:-1;;;17796:18:1;;;17789:43;17849:19;;30645:74:0;;;;;;;;;-1:-1:-1;30735:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30735:24:0;;30561:204::o;30124:379::-;30193:13;30209:24;30225:7;30209:15;:24::i;:::-;30193:40;;30254:5;-1:-1:-1;;;;;30248:11:0;:2;-1:-1:-1;;;;;30248:11:0;;;30240:58;;;;-1:-1:-1;;;30240:58:0;;15253:2:1;30240:58:0;;;15235:21:1;15292:2;15272:18;;;15265:30;15331:34;15311:18;;;15304:62;-1:-1:-1;;;15382:18:1;;;15375:32;15424:19;;30240:58:0;15225:224:1;30240:58:0;23441:10;-1:-1:-1;;;;;30323:21:0;;;;:62;;-1:-1:-1;30348:37:0;30365:5;23441:10;31166:186;:::i;30348:37::-;30307:153;;;;-1:-1:-1;;;30307:153:0;;12049:2:1;30307:153:0;;;12031:21:1;12088:2;12068:18;;;12061:30;12127:34;12107:18;;;12100:62;12198:27;12178:18;;;12171:55;12243:19;;30307:153:0;12021:247:1;30307:153:0;30469:28;30478:2;30482:7;30491:5;30469:8;:28::i;:::-;30186:317;30124:379;;:::o;45242:265::-;45306:6;42820:4;44196:10;44180:13;25947:12;;;25871:94;44180:13;:26;;;;:::i;:::-;:41;;44172:90;;;;-1:-1:-1;;;44172:90:0;;;;;;;:::i;:::-;42872:2;44281:10;:28;;44273:81;;;;-1:-1:-1;;;44273:81:0;;7494:2:1;44273:81:0;;;7476:21:1;7533:2;7513:18;;;7506:30;7572:34;7552:18;;;7545:62;-1:-1:-1;;;7623:18:1;;;7616:38;7671:19;;44273:81:0;7466:230:1;44273:81:0;44392:10;;:32;;-1:-1:-1;;;44392:32:0;;44413:10;44392:32;;;5311:51:1;44367:22:0;;-1:-1:-1;;;;;44392:10:0;;:20;;5284:18:1;;44392:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44367:57;-1:-1:-1;44464:22:0;44476:10;43055:21;44464:22;:::i;:::-;44443:17;:43;;44435:85;;;;-1:-1:-1;;;44435:85:0;;11335:2:1;44435:85:0;;;11317:21:1;11374:2;11354:18;;;11347:30;11413:31;11393:18;;;11386:59;11462:18;;44435:85:0;11307:179:1;44435:85:0;45333:15:::1;::::0;::::1;::::0;::::1;;;45325:53;;;::::0;-1:-1:-1;;;45325:53:0;;9125:2:1;45325:53:0::1;::::0;::::1;9107:21:1::0;9164:2;9144:18;;;9137:30;9203:27;9183:18;;;9176:55;9248:18;;45325:53:0::1;9097:175:1::0;45325:53:0::1;45391:29;45401:10;45413:6;45391:9;:29::i;:::-;45431:10;::::0;-1:-1:-1;;;;;45431:10:0::1;:23;45455:10;43137:42;45480:18;45492:6:::0;43055:21:::1;45480:18;:::i;:::-;45431:68;::::0;-1:-1:-1;;;;;;45431:68:0::1;::::0;;;;;;-1:-1:-1;;;;;5631:15:1;;;45431:68:0::1;::::0;::::1;5613:34:1::0;5683:15;;;;5663:18;;;5656:43;5715:18;;;5708:34;5548:18;;45431:68:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44161:379:::0;45242:265;;:::o;31411:142::-;31519:28;31529:4;31535:2;31539:7;31519:9;:28::i;26502:744::-;26611:7;26646:16;26656:5;26646:9;:16::i;:::-;26638:5;:24;26630:71;;;;-1:-1:-1;;;26630:71:0;;7091:2:1;26630:71:0;;;7073:21:1;7130:2;7110:18;;;7103:30;7169:34;7149:18;;;7142:62;-1:-1:-1;;;7220:18:1;;;7213:32;7262:19;;26630:71:0;7063:224:1;26630:71:0;26708:22;26733:13;25947:12;;;25871:94;26733:13;26708:38;;26753:19;26783:25;26833:9;26828:350;26852:14;26848:1;:18;26828:350;;;26882:31;26916:14;;;:11;:14;;;;;;;;;26882:48;;;;;;;;;-1:-1:-1;;;;;26882:48:0;;;;;-1:-1:-1;;;26882:48:0;;;;;;;;;;;;26943:28;26939:89;;27004:14;;;-1:-1:-1;26939:89:0;27061:5;-1:-1:-1;;;;;27040:26:0;:17;-1:-1:-1;;;;;27040:26:0;;27036:135;;;27098:5;27083:11;:20;27079:59;;;-1:-1:-1;27125:1:0;-1:-1:-1;27118:8:0;;-1:-1:-1;;;27118:8:0;27079:59;27148:13;;;;:::i;:::-;;;;27036:135;-1:-1:-1;26868:3:0;;;;:::i;:::-;;;;26828:350;;;-1:-1:-1;27184:56:0;;-1:-1:-1;;;27184:56:0;;16836:2:1;27184:56:0;;;16818:21:1;16875:2;16855:18;;;16848:30;16914:34;16894:18;;;16887:62;-1:-1:-1;;;16965:18:1;;;16958:44;17019:19;;27184:56:0;16808:236:1;45745:97:0;40720:7;40747:6;-1:-1:-1;;;;;40747:6:0;23441:10;40894:23;40886:68;;;;-1:-1:-1;;;40886:68:0;;;;;;;:::i;:::-;45819:15:::1;::::0;;-1:-1:-1;;45800:34:0;::::1;45819:15;::::0;;;::::1;;;45818:16;45800:34:::0;;::::1;;::::0;;45745:97::o;31616:157::-;31728:39;31745:4;31751:2;31755:7;31728:39;;;;;;;;;;;;:16;:39::i;26034:177::-;26101:7;26133:13;25947:12;;;25871:94;26133:13;26125:5;:21;26117:69;;;;-1:-1:-1;;;26117:69:0;;8721:2:1;26117:69:0;;;8703:21:1;8760:2;8740:18;;;8733:30;8799:34;8779:18;;;8772:62;-1:-1:-1;;;8850:18:1;;;8843:33;8893:19;;26117:69:0;8693:225:1;26117:69:0;-1:-1:-1;26200:5:0;26034:177::o;45850:106::-;40720:7;40747:6;-1:-1:-1;;;;;40747:6:0;23441:10;40894:23;40886:68;;;;-1:-1:-1;;;40886:68:0;;;;;;;:::i;:::-;45925:23:::1;:13;45941:7:::0;;45925:23:::1;:::i;28859:118::-:0;28923:7;28946:20;28958:7;28946:11;:20::i;:::-;:25;;28859:118;-1:-1:-1;;28859:118:0:o;27736:211::-;27800:7;-1:-1:-1;;;;;27824:19:0;;27816:75;;;;-1:-1:-1;;;27816:75:0;;12475:2:1;27816:75:0;;;12457:21:1;12514:2;12494:18;;;12487:30;12553:34;12533:18;;;12526:62;-1:-1:-1;;;12604:18:1;;;12597:41;12655:19;;27816:75:0;12447:233:1;27816:75:0;-1:-1:-1;;;;;;27913:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27913:27:0;;27736:211::o;41325:103::-;40720:7;40747:6;-1:-1:-1;;;;;40747:6:0;23441:10;40894:23;40886:68;;;;-1:-1:-1;;;40886:68:0;;;;;;;:::i;:::-;41390:30:::1;41417:1;41390:18;:30::i;:::-;41325:103::o:0;29191:98::-;29247:13;29276:7;29269:14;;;;;:::i;30829:274::-;-1:-1:-1;;;;;30920:24:0;;23441:10;30920:24;;30912:63;;;;-1:-1:-1;;;30912:63:0;;14071:2:1;30912:63:0;;;14053:21:1;14110:2;14090:18;;;14083:30;14149:28;14129:18;;;14122:56;14195:18;;30912:63:0;14043:176:1;30912:63:0;23441:10;30984:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30984:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30984:53:0;;;;;;;;;;31049:48;;6386:41:1;;;30984:42:0;;23441:10;31049:48;;6359:18:1;31049:48:0;;;;;;;30829:274;;:::o;31836:311::-;31973:28;31983:4;31989:2;31993:7;31973:9;:28::i;:::-;32024:48;32047:4;32053:2;32057:7;32066:5;32024:22;:48::i;:::-;32008:133;;;;-1:-1:-1;;;32008:133:0;;;;;;;:::i;45517:106::-;40720:7;40747:6;-1:-1:-1;;;;;40747:6:0;23441:10;40894:23;40886:68;;;;-1:-1:-1;;;40886:68:0;;;;;;;:::i;:::-;45584:10:::1;:31:::0;;-1:-1:-1;;;;;;45584:31:0::1;-1:-1:-1::0;;;;;45584:31:0;;;::::1;::::0;;;::::1;::::0;;45517:106::o;29352:394::-;29450:13;29491:16;29499:7;32473:12;;-1:-1:-1;32463:22:0;32386:105;29491:16;29475:97;;;;-1:-1:-1;;;29475:97:0;;13655:2:1;29475:97:0;;;13637:21:1;13694:2;13674:18;;;13667:30;13733:34;13713:18;;;13706:62;-1:-1:-1;;;13784:18:1;;;13777:45;13839:19;;29475:97:0;13627:237:1;29475:97:0;29581:21;29605:10;:8;:10::i;:::-;29581:34;;29660:1;29642:7;29636:21;:25;:104;;;;;;;;;;;;;;;;;29697:7;29706:18;:7;:16;:18::i;:::-;29680:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29636:104;29622:118;29352:394;-1:-1:-1;;;29352:394:0:o;44550:684::-;44628:6;42820:4;43760:10;43744:13;25947:12;;;25871:94;43744:13;:26;;;;:::i;:::-;:41;;43736:90;;;;-1:-1:-1;;;43736:90:0;;;;;;;:::i;:::-;42930:1;43845:10;:36;;43837:88;;;;-1:-1:-1;;;43837:88:0;;14845:2:1;43837:88:0;;;14827:21:1;14884:2;14864:18;;;14857:30;14923:34;14903:18;;;14896:62;-1:-1:-1;;;14974:18:1;;;14967:37;15021:19;;43837:88:0;14817:229:1;43837:88:0;43963:10;;:32;;-1:-1:-1;;;43963:32:0;;43984:10;43963:32;;;5311:51:1;43938:22:0;;-1:-1:-1;;;;;43963:10:0;;:20;;5284:18:1;;43963:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43938:57;-1:-1:-1;44035:25:0;44050:10;42979:20;44035:25;:::i;:::-;44014:17;:46;;44006:88;;;;-1:-1:-1;;;44006:88:0;;11335:2:1;44006:88:0;;;11317:21:1;11374:2;11354:18;;;11347:30;11413:31;11393:18;;;11386:59;11462:18;;44006:88:0;11307:179:1;44006:88:0;44655:18:::1;::::0;::::1;;44647:58;;;::::0;-1:-1:-1;;;44647:58:0;;11693:2:1;44647:58:0::1;::::0;::::1;11675:21:1::0;11732:2;11712:18;;;11705:30;11771:29;11751:18;;;11744:57;11818:18;;44647:58:0::1;11665:177:1::0;44647:58:0::1;44750:10;44724:37;::::0;;;:25:::1;:37;::::0;;;;;42930:1:::1;::::0;44724:46:::1;::::0;44764:6;;44724:46:::1;:::i;:::-;:72;;44716:194;;;::::0;-1:-1:-1;;;44716:194:0;;10776:2:1;44716:194:0::1;::::0;::::1;10758:21:1::0;10815:3;10795:18;;;10788:31;10855:34;10835:18;;;10828:62;10926:34;10906:18;;;10899:62;10998:34;10977:19;;;10970:63;-1:-1:-1;;;11049:19:1;;;11042:44;11103:19;;44716:194:0::1;10748:380:1::0;44716:194:0::1;44930:4;::::0;:26:::1;::::0;-1:-1:-1;;;44930:26:0;;44945:10:::1;44930:26;::::0;::::1;5311:51:1::0;44959:1:0::1;::::0;-1:-1:-1;;;;;44930:4:0::1;::::0;:14:::1;::::0;5284:18:1;;44930:26:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;44921:121;;;::::0;-1:-1:-1;;;44921:121:0;;10290:2:1;44921:121:0::1;::::0;::::1;10272:21:1::0;10329:2;10309:18;;;10302:30;10368:34;10348:18;;;10341:62;10439:34;10419:18;;;10412:62;-1:-1:-1;;;10490:19:1;;;10483:44;10544:19;;44921:121:0::1;10262:307:1::0;44921:121:0::1;45055:29;45065:10;45077:6;45055:9;:29::i;:::-;45123:10;45097:37;::::0;;;:25:::1;:37;::::0;;;;:47;;45138:6;;45097:37;:47:::1;::::0;45138:6;;45097:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;45155:10:0::1;::::0;-1:-1:-1;;;;;45155:10:0::1;:23;45179:10;43137:42;45204:21;45219:6:::0;42979:20:::1;45204:21;:::i;41583:201::-:0;40720:7;40747:6;-1:-1:-1;;;;;40747:6:0;23441:10;40894:23;40886:68;;;;-1:-1:-1;;;40886:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41672:22:0;::::1;41664:73;;;::::0;-1:-1:-1;;;41664:73:0;;7903:2:1;41664:73:0::1;::::0;::::1;7885:21:1::0;7942:2;7922:18;;;7915:30;7981:34;7961:18;;;7954:62;-1:-1:-1;;;8032:18:1;;;8025:36;8078:19;;41664:73:0::1;7875:228:1::0;41664:73:0::1;41748:28;41767:8;41748:18;:28::i;:::-;41583:201:::0;:::o;45631:106::-;40720:7;40747:6;-1:-1:-1;;;;;40747:6:0;23441:10;40894:23;40886:68;;;;-1:-1:-1;;;40886:68:0;;;;;;;:::i;:::-;45711:18:::1;::::0;;-1:-1:-1;;45689:40:0;::::1;45711:18;::::0;;::::1;45710:19;45689:40;::::0;;45631:106::o;36073:172::-;36170:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36170:29:0;-1:-1:-1;;;;;36170:29:0;;;;;;;;;36211:28;;36170:24;;36211:28;;;;;;;36073:172;;;:::o;32497:98::-;32562:27;32572:2;32576:8;32562:27;;;;;;;;;;;;:9;:27::i;:::-;32497:98;;:::o;34438:1529::-;34535:35;34573:20;34585:7;34573:11;:20::i;:::-;34644:18;;34535:58;;-1:-1:-1;34602:22:0;;-1:-1:-1;;;;;34628:34:0;23441:10;-1:-1:-1;;;;;34628:34:0;;:81;;;-1:-1:-1;23441:10:0;34673:20;34685:7;34673:11;:20::i;:::-;-1:-1:-1;;;;;34673:36:0;;34628:81;:142;;;-1:-1:-1;34737:18:0;;34720:50;;23441:10;31166:186;:::i;34720:50::-;34602:169;;34796:17;34780:101;;;;-1:-1:-1;;;34780:101:0;;14426:2:1;34780:101:0;;;14408:21:1;14465:2;14445:18;;;14438:30;14504:34;14484:18;;;14477:62;-1:-1:-1;;;14555:18:1;;;14548:48;14613:19;;34780:101:0;14398:240:1;34780:101:0;34928:4;-1:-1:-1;;;;;34906:26:0;:13;:18;;;-1:-1:-1;;;;;34906:26:0;;34890:98;;;;-1:-1:-1;;;34890:98:0;;12887:2:1;34890:98:0;;;12869:21:1;12926:2;12906:18;;;12899:30;12965:34;12945:18;;;12938:62;-1:-1:-1;;;13016:18:1;;;13009:36;13062:19;;34890:98:0;12859:228:1;34890:98:0;-1:-1:-1;;;;;35003:16:0;;34995:66;;;;-1:-1:-1;;;34995:66:0;;9479:2:1;34995:66:0;;;9461:21:1;9518:2;9498:18;;;9491:30;9557:34;9537:18;;;9530:62;-1:-1:-1;;;9608:18:1;;;9601:35;9653:19;;34995:66:0;9451:227:1;34995:66:0;35170:49;35187:1;35191:7;35200:13;:18;;;35170:8;:49::i;:::-;-1:-1:-1;;;;;35228:18:0;;;;;;:12;:18;;;;;:31;;35258:1;;35228:18;:31;;35258:1;;-1:-1:-1;;;;;35228:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35228:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35266:16:0;;-1:-1:-1;35266:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35266:16:0;;:29;;-1:-1:-1;;35266:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35266:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35325:43:0;;;;;;;;-1:-1:-1;;;;;35325:43:0;;;;;;35351:15;35325:43;;;;;;;;;-1:-1:-1;35302:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35302:66:0;-1:-1:-1;;;;;;35302:66:0;;;;;;;;;;;35618:11;35314:7;-1:-1:-1;35618:11:0;:::i;:::-;35681:1;35640:24;;;:11;:24;;;;;:29;35596:33;;-1:-1:-1;;;;;;35640:29:0;35636:236;;35698:20;35706:11;32473:12;;-1:-1:-1;32463:22:0;32386:105;35698:20;35694:171;;;35758:97;;;;;;;;35785:18;;-1:-1:-1;;;;;35758:97:0;;;;;;35816:28;;;;35758:97;;;;;;;;;;-1:-1:-1;35731:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;35731:124:0;-1:-1:-1;;;;;;35731:124:0;;;;;;;;;;;;35694:171;35904:7;35900:2;-1:-1:-1;;;;;35885:27:0;35894:4;-1:-1:-1;;;;;35885:27:0;;;;;;;;;;;35919:42;34528:1439;;;34438:1529;;;:::o;28199:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28316:16:0;28324:7;32473:12;;-1:-1:-1;32463:22:0;32386:105;28316:16;28308:71;;;;-1:-1:-1;;;28308:71:0;;8310:2:1;28308:71:0;;;8292:21:1;8349:2;8329:18;;;8322:30;8388:34;8368:18;;;8361:62;-1:-1:-1;;;8439:18:1;;;8432:40;8489:19;;28308:71:0;8282:232:1;28308:71:0;28388:26;28436:12;28425:7;:23;28421:93;;28480:22;28490:12;28480:7;:22;:::i;:::-;:26;;28505:1;28480:26;:::i;:::-;28459:47;;28421:93;28542:7;28522:212;28559:18;28551:4;:26;28522:212;;28596:31;28630:17;;;:11;:17;;;;;;;;;28596:51;;;;;;;;;-1:-1:-1;;;;;28596:51:0;;;;;-1:-1:-1;;;28596:51:0;;;;;;;;;;;;28660:28;28656:71;;28708:9;28199:606;-1:-1:-1;;;;28199:606:0:o;28656:71::-;-1:-1:-1;28579:6:0;;;;:::i;:::-;;;;28522:212;;;-1:-1:-1;28742:57:0;;-1:-1:-1;;;28742:57:0;;17251:2:1;28742:57:0;;;17233:21:1;17290:2;17270:18;;;17263:30;17329:34;17309:18;;;17302:62;-1:-1:-1;;;17380:18:1;;;17373:45;17435:19;;28742:57:0;17223:237:1;41944:191:0;42018:16;42037:6;;-1:-1:-1;;;;;42054:17:0;;;-1:-1:-1;;;;;;42054:17:0;;;;;;42087:40;;42037:6;;;;;;;42087:40;;42018:16;42087:40;42007:128;41944:191;:::o;37788:690::-;37925:4;-1:-1:-1;;;;;37942:13:0;;1066:20;1114:8;37938:535;;37981:72;;-1:-1:-1;;;37981:72:0;;-1:-1:-1;;;;;37981:36:0;;;;;:72;;23441:10;;38032:4;;38038:7;;38047:5;;37981:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37981:72:0;;;;;;;;-1:-1:-1;;37981:72:0;;;;;;;;;;;;:::i;:::-;;;37968:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38212:13:0;;38208:215;;38245:61;;-1:-1:-1;;;38245:61:0;;;;;;;:::i;38208:215::-;38391:6;38385:13;38376:6;38372:2;38368:15;38361:38;37968:464;-1:-1:-1;;;;;;38103:55:0;-1:-1:-1;;;38103:55:0;;-1:-1:-1;38096:62:0;;37938:535;-1:-1:-1;38461:4:0;37938:535;37788:690;;;;;;:::o;45964:114::-;46024:13;46057;46050:20;;;;;:::i;18164:723::-;18220:13;18441:10;18437:53;;-1:-1:-1;;18468:10:0;;;;;;;;;;;;-1:-1:-1;;;18468:10:0;;;;;18164:723::o;18437:53::-;18515:5;18500:12;18556:78;18563:9;;18556:78;;18589:8;;;;:::i;:::-;;-1:-1:-1;18612:10:0;;-1:-1:-1;18620:2:0;18612:10;;:::i;:::-;;;18556:78;;;18644:19;18676:6;18666:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18666:17:0;;18644:39;;18694:154;18701:10;;18694:154;;18728:11;18738:1;18728:11;;:::i;:::-;;-1:-1:-1;18797:10:0;18805:2;18797:5;:10;:::i;:::-;18784:24;;:2;:24;:::i;:::-;18771:39;;18754:6;18761;18754:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18754:56:0;;;;;;;;-1:-1:-1;18825:11:0;18834:2;18825:11;;:::i;:::-;;;18694:154;;32934:1272;33062:12;;-1:-1:-1;;;;;33089:16:0;;33081:62;;;;-1:-1:-1;;;33081:62:0;;16434:2:1;33081:62:0;;;16416:21:1;16473:2;16453:18;;;16446:30;16512:34;16492:18;;;16485:62;-1:-1:-1;;;16563:18:1;;;16556:31;16604:19;;33081:62:0;16406:223:1;33081:62:0;33280:21;33288:12;32473;;-1:-1:-1;32463:22:0;32386:105;33280:21;33279:22;33271:64;;;;-1:-1:-1;;;33271:64:0;;16076:2:1;33271:64:0;;;16058:21:1;16115:2;16095:18;;;16088:30;16154:31;16134:18;;;16127:59;16203:18;;33271:64:0;16048:179:1;33271:64:0;33362:12;33350:8;:24;;33342:71;;;;-1:-1:-1;;;33342:71:0;;18081:2:1;33342:71:0;;;18063:21:1;18120:2;18100:18;;;18093:30;18159:34;18139:18;;;18132:62;-1:-1:-1;;;18210:18:1;;;18203:32;18252:19;;33342:71:0;18053:224:1;33342:71:0;-1:-1:-1;;;;;33525:16:0;;33492:30;33525:16;;;:12;:16;;;;;;;;;33492:49;;;;;;;;;-1:-1:-1;;;;;33492:49:0;;;;;-1:-1:-1;;;33492:49:0;;;;;;;;;;;33567:119;;;;;;;;33587:19;;33492:49;;33567:119;;;33587:39;;33617:8;;33587:39;:::i;:::-;-1:-1:-1;;;;;33567:119:0;;;;;33670:8;33635:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33567:119:0;;;;;;-1:-1:-1;;;;;33548:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33548:138:0;;;;;;;;;;;;33721:43;;;;;;;;;;;33747:15;33721:43;;;;;;;;33693:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33693:71:0;-1:-1:-1;;;;;;33693:71:0;;;;;;;;;;;;;;;;;;33705:12;;33817:281;33841:8;33837:1;:12;33817:281;;;33870:38;;33895:12;;-1:-1:-1;;;;;33870:38:0;;;33887:1;;33870:38;;33887:1;;33870:38;33935:59;33966:1;33970:2;33974:12;33988:5;33935:22;:59::i;:::-;33917:150;;;;-1:-1:-1;;;33917:150:0;;;;;;;:::i;:::-;34076:14;;;;:::i;:::-;;;;33851:3;;;;;:::i;:::-;;;;33817:281;;;-1:-1:-1;34106:12:0;:27;;;34140:60;45242:265;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:2;;;1170:1;1167;1160:12;1121:2;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:2;;;1461:1;1458;1451:12;1431:2;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:2;;1566:1;1563;1556:12;1515:2;1602;1589:16;1624:2;1620;1617:10;1614:2;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:2;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:2;;;1985:1;1982;1975:12;1936:2;2041;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;1111:1008;;;;;;;:::o;2124:315::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:2;;;2266:1;2263;2256:12;2218:2;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2381:28;2403:5;2381:28;:::i;:::-;2428:5;2418:15;;;2208:231;;;;;:::o;2444:254::-;2512:6;2520;2573:2;2561:9;2552:7;2548:23;2544:32;2541:2;;;2589:1;2586;2579:12;2541:2;2612:29;2631:9;2612:29;:::i;:::-;2602:39;2688:2;2673:18;;;;2660:32;;-1:-1:-1;;;2531:167:1:o;2703:245::-;2770:6;2823:2;2811:9;2802:7;2798:23;2794:32;2791:2;;;2839:1;2836;2829:12;2791:2;2871:9;2865:16;2890:28;2912:5;2890:28;:::i;2953:245::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:2;;;3080:1;3077;3070:12;3032:2;3119:9;3106:23;3138:30;3162:5;3138:30;:::i;3203:249::-;3272:6;3325:2;3313:9;3304:7;3300:23;3296:32;3293:2;;;3341:1;3338;3331:12;3293:2;3373:9;3367:16;3392:30;3416:5;3392:30;:::i;3457:592::-;3528:6;3536;3589:2;3577:9;3568:7;3564:23;3560:32;3557:2;;;3605:1;3602;3595:12;3557:2;3645:9;3632:23;3674:18;3715:2;3707:6;3704:14;3701:2;;;3731:1;3728;3721:12;3701:2;3769:6;3758:9;3754:22;3744:32;;3814:7;3807:4;3803:2;3799:13;3795:27;3785:2;;3836:1;3833;3826:12;3785:2;3876;3863:16;3902:2;3894:6;3891:14;3888:2;;;3918:1;3915;3908:12;3888:2;3963:7;3958:2;3949:6;3945:2;3941:15;3937:24;3934:37;3931:2;;;3984:1;3981;3974:12;3931:2;4015;4007:11;;;;;4037:6;;-1:-1:-1;3547:502:1;;-1:-1:-1;;;;3547:502:1:o;4054:180::-;4113:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4182:1;4179;4172:12;4134:2;-1:-1:-1;4205:23:1;;4124:110;-1:-1:-1;4124:110:1:o;4239:184::-;4309:6;4362:2;4350:9;4341:7;4337:23;4333:32;4330:2;;;4378:1;4375;4368:12;4330:2;-1:-1:-1;4401:16:1;;4320:103;-1:-1:-1;4320:103:1:o;4428:257::-;4469:3;4507:5;4501:12;4534:6;4529:3;4522:19;4550:63;4606:6;4599:4;4594:3;4590:14;4583:4;4576:5;4572:16;4550:63;:::i;:::-;4667:2;4646:15;-1:-1:-1;;4642:29:1;4633:39;;;;4674:4;4629:50;;4477:208;-1:-1:-1;;4477:208:1:o;4690:470::-;4869:3;4907:6;4901:13;4923:53;4969:6;4964:3;4957:4;4949:6;4945:17;4923:53;:::i;:::-;5039:13;;4998:16;;;;5061:57;5039:13;4998:16;5095:4;5083:17;;5061:57;:::i;:::-;5134:20;;4877:283;-1:-1:-1;;;;4877:283:1:o;5753:488::-;-1:-1:-1;;;;;6022:15:1;;;6004:34;;6074:15;;6069:2;6054:18;;6047:43;6121:2;6106:18;;6099:34;;;6169:3;6164:2;6149:18;;6142:31;;;5947:4;;6190:45;;6215:19;;6207:6;6190:45;:::i;:::-;6182:53;5956:285;-1:-1:-1;;;;;;5956:285:1:o;6665:219::-;6814:2;6803:9;6796:21;6777:4;6834:44;6874:2;6863:9;6859:18;6851:6;6834:44;:::i;9683:400::-;9885:2;9867:21;;;9924:2;9904:18;;;9897:30;9963:34;9958:2;9943:18;;9936:62;-1:-1:-1;;;10029:2:1;10014:18;;10007:34;10073:3;10058:19;;9857:226::o;13092:356::-;13294:2;13276:21;;;13313:18;;;13306:30;13372:34;13367:2;13352:18;;13345:62;13439:2;13424:18;;13266:182::o;15454:415::-;15656:2;15638:21;;;15695:2;15675:18;;;15668:30;15734:34;15729:2;15714:18;;15707:62;-1:-1:-1;;;15800:2:1;15785:18;;15778:49;15859:3;15844:19;;15628:241::o;18464:253::-;18504:3;-1:-1:-1;;;;;18593:2:1;18590:1;18586:10;18623:2;18620:1;18616:10;18654:3;18650:2;18646:12;18641:3;18638:21;18635:2;;;18662:18;;:::i;18722:128::-;18762:3;18793:1;18789:6;18786:1;18783:13;18780:2;;;18799:18;;:::i;:::-;-1:-1:-1;18835:9:1;;18770:80::o;18855:120::-;18895:1;18921;18911:2;;18926:18;;:::i;:::-;-1:-1:-1;18960:9:1;;18901:74::o;18980:168::-;19020:7;19086:1;19082;19078:6;19074:14;19071:1;19068:21;19063:1;19056:9;19049:17;19045:45;19042:2;;;19093:18;;:::i;:::-;-1:-1:-1;19133:9:1;;19032:116::o;19153:246::-;19193:4;-1:-1:-1;;;;;19306:10:1;;;;19276;;19328:12;;;19325:2;;;19343:18;;:::i;:::-;19380:13;;19202:197;-1:-1:-1;;;19202:197:1:o;19404:125::-;19444:4;19472:1;19469;19466:8;19463:2;;;19477:18;;:::i;:::-;-1:-1:-1;19514:9:1;;19453:76::o;19534:258::-;19606:1;19616:113;19630:6;19627:1;19624:13;19616:113;;;19706:11;;;19700:18;19687:11;;;19680:39;19652:2;19645:10;19616:113;;;19747:6;19744:1;19741:13;19738:2;;;-1:-1:-1;;19782:1:1;19764:16;;19757:27;19587:205::o;19797:136::-;19836:3;19864:5;19854:2;;19873:18;;:::i;:::-;-1:-1:-1;;;19909:18:1;;19844:89::o;19938:380::-;20017:1;20013:12;;;;20060;;;20081:2;;20135:4;20127:6;20123:17;20113:27;;20081:2;20188;20180:6;20177:14;20157:18;20154:38;20151:2;;;20234:10;20229:3;20225:20;20222:1;20215:31;20269:4;20266:1;20259:15;20297:4;20294:1;20287:15;20151:2;;19993:325;;;:::o;20323:135::-;20362:3;-1:-1:-1;;20383:17:1;;20380:2;;;20403:18;;:::i;:::-;-1:-1:-1;20450:1:1;20439:13;;20370:88::o;20463:112::-;20495:1;20521;20511:2;;20526:18;;:::i;:::-;-1:-1:-1;20560:9:1;;20501:74::o;20580:127::-;20641:10;20636:3;20632:20;20629:1;20622:31;20672:4;20669:1;20662:15;20696:4;20693:1;20686:15;20712:127;20773:10;20768:3;20764:20;20761:1;20754:31;20804:4;20801:1;20794:15;20828:4;20825:1;20818:15;20844:127;20905:10;20900:3;20896:20;20893:1;20886:31;20936:4;20933:1;20926:15;20960:4;20957:1;20950:15;20976:127;21037:10;21032:3;21028:20;21025:1;21018:31;21068:4;21065:1;21058:15;21092:4;21089:1;21082:15;21108:118;21194:5;21187:13;21180:21;21173:5;21170:32;21160:2;;21216:1;21213;21206:12;21231:131;-1:-1:-1;;;;;;21305:32:1;;21295:43;;21285:2;;21352:1;21349;21342:12

Swarm Source

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