ETH Price: $3,431.40 (+2.38%)
Gas: 4 Gwei

Token

Cyberpunk Bounty (Cyberpunk Bounty)
 

Overview

Max Total Supply

35 Cyberpunk Bounty

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Cyberpunk Bounty
0xb2468676460e8e52fc9ef286992e5991e05e00e5
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:
CYBERPUNKBOUNTY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-27
*/

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: DUNDEAD.sol



pragma solidity ^0.8.0;




contract CYBERPUNKBOUNTY is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public WalletMint;
    bool public MintStartEnabled  = false;
    uint public MintPrice = 0.0009 ether; 
    string public baseURI;  
    uint public freeMint = 1;
    uint public maxMintPerTx = 50;  
    uint public maxSupply = 9999;

    constructor() ERC721A("Cyberpunk Bounty", "Cyberpunk Bounty",69,6969)
    {
        baseURI = "ipfs://QmQDCYhcF9MBdWEQfpCXyoNnNd1cVkJwuhdsUvbLqSoR4g/";
        MintStartEnabled = true;
    }

    function mint(uint256 qty) external payable
    {
        require(MintStartEnabled , "Cyber Info:  Minting Public Pause");
        require(qty <= maxMintPerTx, "Cyber Info:  Limit Per Transaction");
        require(totalSupply() + qty <= maxSupply,"Cyber Info:  Soldout");
        _safemint(qty);
    }

    function _safemint(uint256 qty) internal
    {
        if(qty <= freeMint) qty = freeMint;
        require(msg.value >= (qty - freeMint) * MintPrice,"Cyber Info:  Fund not enough");
        WalletMint[msg.sender] += qty;
        _safeMint(msg.sender, qty); 
    }


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

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

    function airdropNFT(address to ,uint256 qty) external onlyOwner
    {
        _safeMint(to, qty);
    }

    function OwnerBatchMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

    function setPublicMinting() external onlyOwner {
        MintStartEnabled  = !MintStartEnabled ;
    }
    
    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        MintPrice = price_;
    }

    function setmaxMintPerTx(uint256 maxMintPerTx_) external onlyOwner {
        maxMintPerTx = maxMintPerTx_;
    }

    function setMaxFreeMint(uint256 qty_) external onlyOwner {
        freeMint = qty_;
    }

    function setmaxMint(uint256 maxMint_) external onlyOwner {
        maxSupply = maxMint_;
    }

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

}

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":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintStartEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdropNFT","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setmaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx_","type":"uint256"}],"name":"setmaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000808055600755600b805460ff191690556603328b944c4000600c556001600e556032600f5561270f6010553480156200003e57600080fd5b5060408051808201825260108082526f437962657270756e6b20426f756e747960801b6020808401829052845180860190955291845290830152906045611b396200008d565b60405180910390fd5b60008211620000ef5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000084565b835162000104906001906020870190620001cc565b5082516200011a906002906020860190620001cc565b5060a09190915260805250620001329050336200017a565b600160095560408051606081019091526036808252620026b0602083013980516200016691600d91602090910190620001cc565b50600b805460ff19166001179055620002af565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001da9062000272565b90600052602060002090601f016020900481019282620001fe576000855562000249565b82601f106200021957805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002495782518255916020019190600101906200022c565b50620002579291506200025b565b5090565b5b808211156200025757600081556001016200025c565b600181811c908216806200028757607f821691505b60208210811415620002a957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516123d0620002e0600039600081816115cb015281816115f50152611b610152600050506123d06000f3fe6080604052600436106102255760003560e01c806379f34a1011610123578063bc46081b116100ab578063de7fcb1d1161006f578063de7fcb1d14610610578063e645f70814610626578063e985e9c514610653578063f2fde38b1461069c578063fdbf9ef2146106bc57600080fd5b8063bc46081b1461058a578063c87b56dd146105a4578063d5abeb01146105c4578063d7224ba0146105da578063dc33e681146105f057600080fd5b806395d89b41116100f257806395d89b411461050d578063a0712d6814610522578063a22cb46514610535578063ac915c0614610555578063b88d4fde1461056a57600080fd5b806379f34a101461048f5780638171609b146104af5780638da5cb5b146104cf57806391b7f5ed146104ed57600080fd5b80633ccfd60b116101b15780636352211e116101755780636352211e146104055780636c0360eb1461042557806370a082311461043a578063715018a61461045a578063742a4c9b1461046f57600080fd5b80633ccfd60b1461037a57806342842e0e1461038f5780634f6ccce7146103af57806355f804b3146103cf5780635b70ea9f146103ef57600080fd5b806318160ddd116101f857806318160ddd146102db57806323b872dd146102fa5780632f745c591461031a5780632fc2e29c1461033a57806337e36f791461035a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611ff7565b6106d2565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461073f565b6040516102569190612164565b34801561028d57600080fd5b506102a161029c3660046120a3565b6107d1565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611fcd565b610861565b005b3480156102e757600080fd5b506000545b604051908152602001610256565b34801561030657600080fd5b506102d9610315366004611e79565b610979565b34801561032657600080fd5b506102ec610335366004611fcd565b610984565b34801561034657600080fd5b506102d96103553660046120a3565b610af2565b34801561036657600080fd5b506102d9610375366004611fcd565b610aff565b34801561038657600080fd5b506102d9610b15565b34801561039b57600080fd5b506102d96103aa366004611e79565b610b4d565b3480156103bb57600080fd5b506102ec6103ca3660046120a3565b610b68565b3480156103db57600080fd5b506102d96103ea366004612031565b610bca565b3480156103fb57600080fd5b506102ec600e5481565b34801561041157600080fd5b506102a16104203660046120a3565b610bde565b34801561043157600080fd5b50610274610bf0565b34801561044657600080fd5b506102ec610455366004611e2b565b610c7e565b34801561046657600080fd5b506102d9610d0f565b34801561047b57600080fd5b506102d961048a3660046120a3565b610d23565b34801561049b57600080fd5b506102d96104aa3660046120a3565b610d30565b3480156104bb57600080fd5b506102d96104ca3660046120a3565b610d3d565b3480156104db57600080fd5b506008546001600160a01b03166102a1565b3480156104f957600080fd5b506102d96105083660046120a3565b610d4f565b34801561051957600080fd5b50610274610d5c565b6102d96105303660046120a3565b610d6b565b34801561054157600080fd5b506102d9610550366004611f91565b610e89565b34801561056157600080fd5b506102d9610f4e565b34801561057657600080fd5b506102d9610585366004611eb5565b610f6a565b34801561059657600080fd5b50600b5461024a9060ff1681565b3480156105b057600080fd5b506102746105bf3660046120a3565b610fa3565b3480156105d057600080fd5b506102ec60105481565b3480156105e657600080fd5b506102ec60075481565b3480156105fc57600080fd5b506102ec61060b366004611e2b565b611070565b34801561061c57600080fd5b506102ec600f5481565b34801561063257600080fd5b506102ec610641366004611e2b565b600a6020526000908152604090205481565b34801561065f57600080fd5b5061024a61066e366004611e46565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106a857600080fd5b506102d96106b7366004611e2b565b61107b565b3480156106c857600080fd5b506102ec600c5481565b60006001600160e01b031982166380ac58cd60e01b148061070357506001600160e01b03198216635b5e139f60e01b145b8061071e57506001600160e01b0319821663780e9d6360e01b145b8061073957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461074e906122c2565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906122c2565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107de826000541190565b6108455760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061086c82610bde565b9050806001600160a01b0316836001600160a01b031614156108db5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161083c565b336001600160a01b03821614806108f757506108f7813361066e565b6109695760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161083c565b6109748383836110f1565b505050565b61097483838361114d565b600061098f83610c7e565b82106109e85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161083c565b600080549080805b83811015610a92576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4357805192505b876001600160a01b0316836001600160a01b03161415610a7f5786841415610a715750935061073992505050565b83610a7b816122fd565b9450505b5080610a8a816122fd565b9150506109f0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161083c565b610afa6114d5565b601055565b610b076114d5565b610b11828261152f565b5050565b610b1d6114d5565b6040513390303180156108fc02916000818181858888f19350505050158015610b4a573d6000803e3d6000fd5b50565b61097483838360405180602001604052806000815250610f6a565b600080548210610bc65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161083c565b5090565b610bd26114d5565b610974600d8383611d7f565b6000610be982611549565b5192915050565b600d8054610bfd906122c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c29906122c2565b8015610c765780601f10610c4b57610100808354040283529160200191610c76565b820191906000526020600020905b815481529060010190602001808311610c5957829003601f168201915b505050505081565b60006001600160a01b038216610cea5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161083c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610d176114d5565b610d2160006116f3565b565b610d2b6114d5565b600e55565b610d386114d5565b600f55565b610d456114d5565b610b4a338261152f565b610d576114d5565b600c55565b60606002805461074e906122c2565b600b5460ff16610dc75760405162461bcd60e51b815260206004820152602160248201527f437962657220496e666f3a20204d696e74696e67205075626c696320506175736044820152606560f81b606482015260840161083c565b600f54811115610e245760405162461bcd60e51b815260206004820152602260248201527f437962657220496e666f3a20204c696d697420506572205472616e736163746960448201526137b760f11b606482015260840161083c565b60105481610e3160005490565b610e3b91906121f5565b1115610e805760405162461bcd60e51b815260206004820152601460248201527310de58995c88125b999bce880814dbdb191bdd5d60621b604482015260640161083c565b610b4a81611745565b6001600160a01b038216331415610ee25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161083c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f566114d5565b600b805460ff19811660ff90911615179055565b610f7584848461114d565b610f81848484846117eb565b610f9d5760405162461bcd60e51b815260040161083c90612177565b50505050565b6060610fb0826000541190565b6110145760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083c565b600061101e6118f9565b9050600081511161103e5760405180602001604052806000815250611069565b8061104884611908565b6040516020016110599291906120e8565b6040516020818303038152906040525b9392505050565b600061073982611a06565b6110836114d5565b6001600160a01b0381166110e85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083c565b610b4a816116f3565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061115882611549565b80519091506000906001600160a01b0316336001600160a01b0316148061118f575033611184846107d1565b6001600160a01b0316145b806111a1575081516111a1903361066e565b90508061120b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161083c565b846001600160a01b031682600001516001600160a01b03161461127f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161083c565b6001600160a01b0384166112e35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161083c565b6112f360008484600001516110f1565b6001600160a01b03851660009081526004602052604081208054600192906113259084906001600160801b0316612240565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611371918591166121ca565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556113f98460016121f5565b6000818152600360205260409020549091506001600160a01b031661148b57611423816000541190565b1561148b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610d215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161083c565b610b11828260405180602001604052806000815250611aa4565b6040805180820190915260008082526020820152611568826000541190565b6115c75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161083c565b60007f000000000000000000000000000000000000000000000000000000000000000083106116285761161a7f000000000000000000000000000000000000000000000000000000000000000084612268565b6116259060016121f5565b90505b825b818110611692576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561167f57949350505050565b508061168a816122ab565b91505061162a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161083c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e5481116117535750600e545b600c54600e546117639083612268565b61176d9190612221565b3410156117bc5760405162461bcd60e51b815260206004820152601c60248201527f437962657220496e666f3a202046756e64206e6f7420656e6f75676800000000604482015260640161083c565b336000908152600a6020526040812080548392906117db9084906121f5565b90915550610b4a9050338261152f565b60006001600160a01b0384163b156118ed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061182f903390899088908890600401612127565b602060405180830381600087803b15801561184957600080fd5b505af1925050508015611879575060408051601f3d908101601f1916820190925261187691810190612014565b60015b6118d3573d8080156118a7576040519150601f19603f3d011682016040523d82523d6000602084013e6118ac565b606091505b5080516118cb5760405162461bcd60e51b815260040161083c90612177565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118f1565b5060015b949350505050565b6060600d805461074e906122c2565b60608161192c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119565780611940816122fd565b915061194f9050600a8361220d565b9150611930565b60008167ffffffffffffffff8111156119715761197161236e565b6040519080825280601f01601f19166020018201604052801561199b576020820181803683370190505b5090505b84156118f1576119b0600183612268565b91506119bd600a86612318565b6119c89060306121f5565b60f81b8183815181106119dd576119dd612358565b60200101906001600160f81b031916908160001a9053506119ff600a8661220d565b945061199f565b60006001600160a01b038216611a785760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161083c565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b038416611b075760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161083c565b611b12816000541190565b15611b5f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161083c565b7f0000000000000000000000000000000000000000000000000000000000000000831115611bda5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161083c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c369087906121ca565b6001600160801b03168152602001858360200151611c5491906121ca565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d745760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d3860008884886117eb565b611d545760405162461bcd60e51b815260040161083c90612177565b81611d5e816122fd565b9250508080611d6c906122fd565b915050611ceb565b5060008190556114cd565b828054611d8b906122c2565b90600052602060002090601f016020900481019282611dad5760008555611df3565b82601f10611dc65782800160ff19823516178555611df3565b82800160010185558215611df3579182015b82811115611df3578235825591602001919060010190611dd8565b50610bc69291505b80821115610bc65760008155600101611dfb565b80356001600160a01b0381168114611e2657600080fd5b919050565b600060208284031215611e3d57600080fd5b61106982611e0f565b60008060408385031215611e5957600080fd5b611e6283611e0f565b9150611e7060208401611e0f565b90509250929050565b600080600060608486031215611e8e57600080fd5b611e9784611e0f565b9250611ea560208501611e0f565b9150604084013590509250925092565b60008060008060808587031215611ecb57600080fd5b611ed485611e0f565b9350611ee260208601611e0f565b925060408501359150606085013567ffffffffffffffff80821115611f0657600080fd5b818701915087601f830112611f1a57600080fd5b813581811115611f2c57611f2c61236e565b604051601f8201601f19908116603f01168101908382118183101715611f5457611f5461236e565b816040528281528a6020848701011115611f6d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fa457600080fd5b611fad83611e0f565b915060208301358015158114611fc257600080fd5b809150509250929050565b60008060408385031215611fe057600080fd5b611fe983611e0f565b946020939093013593505050565b60006020828403121561200957600080fd5b813561106981612384565b60006020828403121561202657600080fd5b815161106981612384565b6000806020838503121561204457600080fd5b823567ffffffffffffffff8082111561205c57600080fd5b818501915085601f83011261207057600080fd5b81358181111561207f57600080fd5b86602082850101111561209157600080fd5b60209290920196919550909350505050565b6000602082840312156120b557600080fd5b5035919050565b600081518084526120d481602086016020860161227f565b601f01601f19169290920160200192915050565b600083516120fa81846020880161227f565b83519083019061210e81836020880161227f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061215a908301846120bc565b9695505050505050565b60208152600061106960208301846120bc565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156121ec576121ec61232c565b01949350505050565b600082198211156122085761220861232c565b500190565b60008261221c5761221c612342565b500490565b600081600019048311821515161561223b5761223b61232c565b500290565b60006001600160801b03838116908316818110156122605761226061232c565b039392505050565b60008282101561227a5761227a61232c565b500390565b60005b8381101561229a578181015183820152602001612282565b83811115610f9d5750506000910152565b6000816122ba576122ba61232c565b506000190190565b600181811c908216806122d657607f821691505b602082108114156122f757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123115761231161232c565b5060010190565b60008261232757612327612342565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4a57600080fdfea26469706673582212202ff0f2e32235ea6a4885b7f7ca31121693e7675b9d39c8397fe4bb674fa54c0764736f6c63430008070033697066733a2f2f516d51444359686346394d426457455166704358796f4e6e4e643163566b4a77756864735576624c71536f5234672f

Deployed Bytecode

0x6080604052600436106102255760003560e01c806379f34a1011610123578063bc46081b116100ab578063de7fcb1d1161006f578063de7fcb1d14610610578063e645f70814610626578063e985e9c514610653578063f2fde38b1461069c578063fdbf9ef2146106bc57600080fd5b8063bc46081b1461058a578063c87b56dd146105a4578063d5abeb01146105c4578063d7224ba0146105da578063dc33e681146105f057600080fd5b806395d89b41116100f257806395d89b411461050d578063a0712d6814610522578063a22cb46514610535578063ac915c0614610555578063b88d4fde1461056a57600080fd5b806379f34a101461048f5780638171609b146104af5780638da5cb5b146104cf57806391b7f5ed146104ed57600080fd5b80633ccfd60b116101b15780636352211e116101755780636352211e146104055780636c0360eb1461042557806370a082311461043a578063715018a61461045a578063742a4c9b1461046f57600080fd5b80633ccfd60b1461037a57806342842e0e1461038f5780634f6ccce7146103af57806355f804b3146103cf5780635b70ea9f146103ef57600080fd5b806318160ddd116101f857806318160ddd146102db57806323b872dd146102fa5780632f745c591461031a5780632fc2e29c1461033a57806337e36f791461035a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611ff7565b6106d2565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461073f565b6040516102569190612164565b34801561028d57600080fd5b506102a161029c3660046120a3565b6107d1565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611fcd565b610861565b005b3480156102e757600080fd5b506000545b604051908152602001610256565b34801561030657600080fd5b506102d9610315366004611e79565b610979565b34801561032657600080fd5b506102ec610335366004611fcd565b610984565b34801561034657600080fd5b506102d96103553660046120a3565b610af2565b34801561036657600080fd5b506102d9610375366004611fcd565b610aff565b34801561038657600080fd5b506102d9610b15565b34801561039b57600080fd5b506102d96103aa366004611e79565b610b4d565b3480156103bb57600080fd5b506102ec6103ca3660046120a3565b610b68565b3480156103db57600080fd5b506102d96103ea366004612031565b610bca565b3480156103fb57600080fd5b506102ec600e5481565b34801561041157600080fd5b506102a16104203660046120a3565b610bde565b34801561043157600080fd5b50610274610bf0565b34801561044657600080fd5b506102ec610455366004611e2b565b610c7e565b34801561046657600080fd5b506102d9610d0f565b34801561047b57600080fd5b506102d961048a3660046120a3565b610d23565b34801561049b57600080fd5b506102d96104aa3660046120a3565b610d30565b3480156104bb57600080fd5b506102d96104ca3660046120a3565b610d3d565b3480156104db57600080fd5b506008546001600160a01b03166102a1565b3480156104f957600080fd5b506102d96105083660046120a3565b610d4f565b34801561051957600080fd5b50610274610d5c565b6102d96105303660046120a3565b610d6b565b34801561054157600080fd5b506102d9610550366004611f91565b610e89565b34801561056157600080fd5b506102d9610f4e565b34801561057657600080fd5b506102d9610585366004611eb5565b610f6a565b34801561059657600080fd5b50600b5461024a9060ff1681565b3480156105b057600080fd5b506102746105bf3660046120a3565b610fa3565b3480156105d057600080fd5b506102ec60105481565b3480156105e657600080fd5b506102ec60075481565b3480156105fc57600080fd5b506102ec61060b366004611e2b565b611070565b34801561061c57600080fd5b506102ec600f5481565b34801561063257600080fd5b506102ec610641366004611e2b565b600a6020526000908152604090205481565b34801561065f57600080fd5b5061024a61066e366004611e46565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106a857600080fd5b506102d96106b7366004611e2b565b61107b565b3480156106c857600080fd5b506102ec600c5481565b60006001600160e01b031982166380ac58cd60e01b148061070357506001600160e01b03198216635b5e139f60e01b145b8061071e57506001600160e01b0319821663780e9d6360e01b145b8061073957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461074e906122c2565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906122c2565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107de826000541190565b6108455760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061086c82610bde565b9050806001600160a01b0316836001600160a01b031614156108db5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161083c565b336001600160a01b03821614806108f757506108f7813361066e565b6109695760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161083c565b6109748383836110f1565b505050565b61097483838361114d565b600061098f83610c7e565b82106109e85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161083c565b600080549080805b83811015610a92576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4357805192505b876001600160a01b0316836001600160a01b03161415610a7f5786841415610a715750935061073992505050565b83610a7b816122fd565b9450505b5080610a8a816122fd565b9150506109f0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161083c565b610afa6114d5565b601055565b610b076114d5565b610b11828261152f565b5050565b610b1d6114d5565b6040513390303180156108fc02916000818181858888f19350505050158015610b4a573d6000803e3d6000fd5b50565b61097483838360405180602001604052806000815250610f6a565b600080548210610bc65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161083c565b5090565b610bd26114d5565b610974600d8383611d7f565b6000610be982611549565b5192915050565b600d8054610bfd906122c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c29906122c2565b8015610c765780601f10610c4b57610100808354040283529160200191610c76565b820191906000526020600020905b815481529060010190602001808311610c5957829003601f168201915b505050505081565b60006001600160a01b038216610cea5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161083c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610d176114d5565b610d2160006116f3565b565b610d2b6114d5565b600e55565b610d386114d5565b600f55565b610d456114d5565b610b4a338261152f565b610d576114d5565b600c55565b60606002805461074e906122c2565b600b5460ff16610dc75760405162461bcd60e51b815260206004820152602160248201527f437962657220496e666f3a20204d696e74696e67205075626c696320506175736044820152606560f81b606482015260840161083c565b600f54811115610e245760405162461bcd60e51b815260206004820152602260248201527f437962657220496e666f3a20204c696d697420506572205472616e736163746960448201526137b760f11b606482015260840161083c565b60105481610e3160005490565b610e3b91906121f5565b1115610e805760405162461bcd60e51b815260206004820152601460248201527310de58995c88125b999bce880814dbdb191bdd5d60621b604482015260640161083c565b610b4a81611745565b6001600160a01b038216331415610ee25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161083c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f566114d5565b600b805460ff19811660ff90911615179055565b610f7584848461114d565b610f81848484846117eb565b610f9d5760405162461bcd60e51b815260040161083c90612177565b50505050565b6060610fb0826000541190565b6110145760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083c565b600061101e6118f9565b9050600081511161103e5760405180602001604052806000815250611069565b8061104884611908565b6040516020016110599291906120e8565b6040516020818303038152906040525b9392505050565b600061073982611a06565b6110836114d5565b6001600160a01b0381166110e85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083c565b610b4a816116f3565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061115882611549565b80519091506000906001600160a01b0316336001600160a01b0316148061118f575033611184846107d1565b6001600160a01b0316145b806111a1575081516111a1903361066e565b90508061120b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161083c565b846001600160a01b031682600001516001600160a01b03161461127f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161083c565b6001600160a01b0384166112e35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161083c565b6112f360008484600001516110f1565b6001600160a01b03851660009081526004602052604081208054600192906113259084906001600160801b0316612240565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611371918591166121ca565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556113f98460016121f5565b6000818152600360205260409020549091506001600160a01b031661148b57611423816000541190565b1561148b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610d215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161083c565b610b11828260405180602001604052806000815250611aa4565b6040805180820190915260008082526020820152611568826000541190565b6115c75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161083c565b60007f000000000000000000000000000000000000000000000000000000000000004583106116285761161a7f000000000000000000000000000000000000000000000000000000000000004584612268565b6116259060016121f5565b90505b825b818110611692576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561167f57949350505050565b508061168a816122ab565b91505061162a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161083c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e5481116117535750600e545b600c54600e546117639083612268565b61176d9190612221565b3410156117bc5760405162461bcd60e51b815260206004820152601c60248201527f437962657220496e666f3a202046756e64206e6f7420656e6f75676800000000604482015260640161083c565b336000908152600a6020526040812080548392906117db9084906121f5565b90915550610b4a9050338261152f565b60006001600160a01b0384163b156118ed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061182f903390899088908890600401612127565b602060405180830381600087803b15801561184957600080fd5b505af1925050508015611879575060408051601f3d908101601f1916820190925261187691810190612014565b60015b6118d3573d8080156118a7576040519150601f19603f3d011682016040523d82523d6000602084013e6118ac565b606091505b5080516118cb5760405162461bcd60e51b815260040161083c90612177565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118f1565b5060015b949350505050565b6060600d805461074e906122c2565b60608161192c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119565780611940816122fd565b915061194f9050600a8361220d565b9150611930565b60008167ffffffffffffffff8111156119715761197161236e565b6040519080825280601f01601f19166020018201604052801561199b576020820181803683370190505b5090505b84156118f1576119b0600183612268565b91506119bd600a86612318565b6119c89060306121f5565b60f81b8183815181106119dd576119dd612358565b60200101906001600160f81b031916908160001a9053506119ff600a8661220d565b945061199f565b60006001600160a01b038216611a785760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161083c565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b038416611b075760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161083c565b611b12816000541190565b15611b5f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161083c565b7f0000000000000000000000000000000000000000000000000000000000000045831115611bda5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161083c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c369087906121ca565b6001600160801b03168152602001858360200151611c5491906121ca565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d745760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d3860008884886117eb565b611d545760405162461bcd60e51b815260040161083c90612177565b81611d5e816122fd565b9250508080611d6c906122fd565b915050611ceb565b5060008190556114cd565b828054611d8b906122c2565b90600052602060002090601f016020900481019282611dad5760008555611df3565b82601f10611dc65782800160ff19823516178555611df3565b82800160010185558215611df3579182015b82811115611df3578235825591602001919060010190611dd8565b50610bc69291505b80821115610bc65760008155600101611dfb565b80356001600160a01b0381168114611e2657600080fd5b919050565b600060208284031215611e3d57600080fd5b61106982611e0f565b60008060408385031215611e5957600080fd5b611e6283611e0f565b9150611e7060208401611e0f565b90509250929050565b600080600060608486031215611e8e57600080fd5b611e9784611e0f565b9250611ea560208501611e0f565b9150604084013590509250925092565b60008060008060808587031215611ecb57600080fd5b611ed485611e0f565b9350611ee260208601611e0f565b925060408501359150606085013567ffffffffffffffff80821115611f0657600080fd5b818701915087601f830112611f1a57600080fd5b813581811115611f2c57611f2c61236e565b604051601f8201601f19908116603f01168101908382118183101715611f5457611f5461236e565b816040528281528a6020848701011115611f6d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fa457600080fd5b611fad83611e0f565b915060208301358015158114611fc257600080fd5b809150509250929050565b60008060408385031215611fe057600080fd5b611fe983611e0f565b946020939093013593505050565b60006020828403121561200957600080fd5b813561106981612384565b60006020828403121561202657600080fd5b815161106981612384565b6000806020838503121561204457600080fd5b823567ffffffffffffffff8082111561205c57600080fd5b818501915085601f83011261207057600080fd5b81358181111561207f57600080fd5b86602082850101111561209157600080fd5b60209290920196919550909350505050565b6000602082840312156120b557600080fd5b5035919050565b600081518084526120d481602086016020860161227f565b601f01601f19169290920160200192915050565b600083516120fa81846020880161227f565b83519083019061210e81836020880161227f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061215a908301846120bc565b9695505050505050565b60208152600061106960208301846120bc565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156121ec576121ec61232c565b01949350505050565b600082198211156122085761220861232c565b500190565b60008261221c5761221c612342565b500490565b600081600019048311821515161561223b5761223b61232c565b500290565b60006001600160801b03838116908316818110156122605761226061232c565b039392505050565b60008282101561227a5761227a61232c565b500390565b60005b8381101561229a578181015183820152602001612282565b83811115610f9d5750506000910152565b6000816122ba576122ba61232c565b506000190190565b600181811c908216806122d657607f821691505b602082108114156122f757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123115761231161232c565b5060010190565b60008261232757612327612342565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4a57600080fdfea26469706673582212202ff0f2e32235ea6a4885b7f7ca31121693e7675b9d39c8397fe4bb674fa54c0764736f6c63430008070033

Deployed Bytecode Sourcemap

43388:2380:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28316:370;;;;;;;;;;-1:-1:-1;28316:370:0;;;;;:::i;:::-;;:::i;:::-;;;5791:14:1;;5784:22;5766:41;;5754:2;5739:18;28316:370:0;;;;;;;;30042:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31576:204::-;;;;;;;;;;-1:-1:-1;31576:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5089:32:1;;;5071:51;;5059:2;5044:18;31576:204:0;4925:203:1;31139:379:0;;;;;;;;;;-1:-1:-1;31139:379:0;;;;;:::i;:::-;;:::i;:::-;;26877:94;;;;;;;;;;-1:-1:-1;26930:7:0;26953:12;26877:94;;;16175:25:1;;;16163:2;16148:18;26877:94:0;16029:177:1;32426:142:0;;;;;;;;;;-1:-1:-1;32426:142:0;;;;;:::i;:::-;;:::i;27508:744::-;;;;;;;;;;-1:-1:-1;27508:744:0;;;;;:::i;:::-;;:::i;45543:96::-;;;;;;;;;;-1:-1:-1;45543:96:0;;;;;:::i;:::-;;:::i;44770:106::-;;;;;;;;;;-1:-1:-1;44770:106:0;;;;;:::i;:::-;;:::i;45647:116::-;;;;;;;;;;;;;:::i;32631:157::-;;;;;;;;;;-1:-1:-1;32631:157:0;;;;;:::i;:::-;;:::i;27040:177::-;;;;;;;;;;-1:-1:-1;27040:177:0;;;;;:::i;:::-;;:::i;45114:102::-;;;;;;;;;;-1:-1:-1;45114:102:0;;;;;:::i;:::-;;:::i;43630:24::-;;;;;;;;;;;;;;;;29865:118;;;;;;;;;;-1:-1:-1;29865:118:0;;;;;:::i;:::-;;:::i;43600:21::-;;;;;;;;;;;;;:::i;28742:211::-;;;;;;;;;;-1:-1:-1;28742:211:0;;;;;:::i;:::-;;:::i;42510:103::-;;;;;;;;;;;;;:::i;45444:91::-;;;;;;;;;;-1:-1:-1;45444:91:0;;;;;:::i;:::-;;:::i;45322:114::-;;;;;;;;;;-1:-1:-1;45322:114:0;;;;;:::i;:::-;;:::i;44884:106::-;;;;;;;;;;-1:-1:-1;44884:106:0;;;;;:::i;:::-;;:::i;41862:87::-;;;;;;;;;;-1:-1:-1;41935:6:0;;-1:-1:-1;;;;;41935:6:0;41862:87;;45224:90;;;;;;;;;;-1:-1:-1;45224:90:0;;;;;:::i;:::-;;:::i;30197:98::-;;;;;;;;;;;;;:::i;43938:308::-;;;;;;:::i;:::-;;:::i;31844:274::-;;;;;;;;;;-1:-1:-1;31844:274:0;;;;;:::i;:::-;;:::i;44998:104::-;;;;;;;;;;;;;:::i;32851:311::-;;;;;;;;;;-1:-1:-1;32851:311:0;;;;;:::i;:::-;;:::i;43512:37::-;;;;;;;;;;-1:-1:-1;43512:37:0;;;;;;;;30358:403;;;;;;;;;;-1:-1:-1;30358:403:0;;;;;:::i;:::-;;:::i;43699:28::-;;;;;;;;;;;;;;;;37266:43;;;;;;;;;;;;;;;;44533:113;;;;;;;;;;-1:-1:-1;44533:113:0;;;;;:::i;:::-;;:::i;43661:29::-;;;;;;;;;;;;;;;;43459:46;;;;;;;;;;-1:-1:-1;43459:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;32181:186;;;;;;;;;;-1:-1:-1;32181:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;32326:25:0;;;32303:4;32326:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32181:186;42768:201;;;;;;;;;;-1:-1:-1;42768:201:0;;;;;:::i;:::-;;:::i;43556:36::-;;;;;;;;;;;;;;;;28316:370;28443:4;-1:-1:-1;;;;;;28473:40:0;;-1:-1:-1;;;28473:40:0;;:99;;-1:-1:-1;;;;;;;28524:48:0;;-1:-1:-1;;;28524:48:0;28473:99;:160;;;-1:-1:-1;;;;;;;28583:50:0;;-1:-1:-1;;;28583:50:0;28473:160;:207;;;-1:-1:-1;;;;;;;;;;14097:40:0;;;28644:36;28459:221;28316:370;-1:-1:-1;;28316:370:0:o;30042:94::-;30096:13;30125:5;30118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30042:94;:::o;31576:204::-;31644:7;31668:16;31676:7;33458:4;33488:12;-1:-1:-1;33478:22:0;33401:105;31668:16;31660:74;;;;-1:-1:-1;;;31660:74:0;;15414:2:1;31660:74:0;;;15396:21:1;15453:2;15433:18;;;15426:30;15492:34;15472:18;;;15465:62;-1:-1:-1;;;15543:18:1;;;15536:43;15596:19;;31660:74:0;;;;;;;;;-1:-1:-1;31750:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31750:24:0;;31576:204::o;31139:379::-;31208:13;31224:24;31240:7;31224:15;:24::i;:::-;31208:40;;31269:5;-1:-1:-1;;;;;31263:11:0;:2;-1:-1:-1;;;;;31263:11:0;;;31255:58;;;;-1:-1:-1;;;31255:58:0;;12249:2:1;31255:58:0;;;12231:21:1;12288:2;12268:18;;;12261:30;12327:34;12307:18;;;12300:62;-1:-1:-1;;;12378:18:1;;;12371:32;12420:19;;31255:58:0;12047:398:1;31255:58:0;24437:10;-1:-1:-1;;;;;31338:21:0;;;;:62;;-1:-1:-1;31363:37:0;31380:5;24437:10;32181:186;:::i;31363:37::-;31322:153;;;;-1:-1:-1;;;31322:153:0;;9096:2:1;31322:153:0;;;9078:21:1;9135:2;9115:18;;;9108:30;9174:34;9154:18;;;9147:62;9245:27;9225:18;;;9218:55;9290:19;;31322:153:0;8894:421:1;31322:153:0;31484:28;31493:2;31497:7;31506:5;31484:8;:28::i;:::-;31201:317;31139:379;;:::o;32426:142::-;32534:28;32544:4;32550:2;32554:7;32534:9;:28::i;27508:744::-;27617:7;27652:16;27662:5;27652:9;:16::i;:::-;27644:5;:24;27636:71;;;;-1:-1:-1;;;27636:71:0;;6244:2:1;27636:71:0;;;6226:21:1;6283:2;6263:18;;;6256:30;6322:34;6302:18;;;6295:62;-1:-1:-1;;;6373:18:1;;;6366:32;6415:19;;27636:71:0;6042:398:1;27636:71:0;27714:22;26953:12;;;27714:22;;27834:350;27858:14;27854:1;:18;27834:350;;;27888:31;27922:14;;;:11;:14;;;;;;;;;27888:48;;;;;;;;;-1:-1:-1;;;;;27888:48:0;;;;;-1:-1:-1;;;27888:48:0;;;;;;;;;;;;27949:28;27945:89;;28010:14;;;-1:-1:-1;27945:89:0;28067:5;-1:-1:-1;;;;;28046:26:0;:17;-1:-1:-1;;;;;28046:26:0;;28042:135;;;28104:5;28089:11;:20;28085:59;;;-1:-1:-1;28131:1:0;-1:-1:-1;28124:8:0;;-1:-1:-1;;;28124:8:0;28085:59;28154:13;;;;:::i;:::-;;;;28042:135;-1:-1:-1;27874:3:0;;;;:::i;:::-;;;;27834:350;;;-1:-1:-1;28190:56:0;;-1:-1:-1;;;28190:56:0;;13832:2:1;28190:56:0;;;13814:21:1;13871:2;13851:18;;;13844:30;13910:34;13890:18;;;13883:62;-1:-1:-1;;;13961:18:1;;;13954:44;14015:19;;28190:56:0;13630:410:1;45543:96:0;41748:13;:11;:13::i;:::-;45611:9:::1;:20:::0;45543:96::o;44770:106::-;41748:13;:11;:13::i;:::-;44850:18:::1;44860:2;44864:3;44850:9;:18::i;:::-;44770:106:::0;;:::o;45647:116::-;41748:13;:11;:13::i;:::-;45695:60:::1;::::0;45703:10:::1;::::0;45740:4:::1;45724:30;45695:60:::0;::::1;;;::::0;::::1;::::0;;;45724:30;45703:10;45695:60;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45647:116::o:0;32631:157::-;32743:39;32760:4;32766:2;32770:7;32743:39;;;;;;;;;;;;:16;:39::i;27040:177::-;27107:7;26953:12;;27131:5;:21;27123:69;;;;-1:-1:-1;;;27123:69:0;;7868:2:1;27123:69:0;;;7850:21:1;7907:2;7887:18;;;7880:30;7946:34;7926:18;;;7919:62;-1:-1:-1;;;7997:18:1;;;7990:33;8040:19;;27123:69:0;7666:399:1;27123:69:0;-1:-1:-1;27206:5:0;27040:177::o;45114:102::-;41748:13;:11;:13::i;:::-;45190:18:::1;:7;45200:8:::0;;45190:18:::1;:::i;29865:118::-:0;29929:7;29952:20;29964:7;29952:11;:20::i;:::-;:25;;29865:118;-1:-1:-1;;29865:118:0:o;43600:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28742:211::-;28806:7;-1:-1:-1;;;;;28830:19:0;;28822:75;;;;-1:-1:-1;;;28822:75:0;;9522:2:1;28822:75:0;;;9504:21:1;9561:2;9541:18;;;9534:30;9600:34;9580:18;;;9573:62;-1:-1:-1;;;9651:18:1;;;9644:41;9702:19;;28822:75:0;9320:407:1;28822:75:0;-1:-1:-1;;;;;;28919:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28919:27:0;;28742:211::o;42510:103::-;41748:13;:11;:13::i;:::-;42575:30:::1;42602:1;42575:18;:30::i;:::-;42510:103::o:0;45444:91::-;41748:13;:11;:13::i;:::-;45512:8:::1;:15:::0;45444:91::o;45322:114::-;41748:13;:11;:13::i;:::-;45400:12:::1;:28:::0;45322:114::o;44884:106::-;41748:13;:11;:13::i;:::-;44956:26:::1;44966:10;44978:3;44956:9;:26::i;45224:90::-:0;41748:13;:11;:13::i;:::-;45288:9:::1;:18:::0;45224:90::o;30197:98::-;30253:13;30282:7;30275:14;;;;;:::i;43938:308::-;44006:16;;;;43998:63;;;;-1:-1:-1;;;43998:63:0;;14596:2:1;43998:63:0;;;14578:21:1;14635:2;14615:18;;;14608:30;14674:34;14654:18;;;14647:62;-1:-1:-1;;;14725:18:1;;;14718:31;14766:19;;43998:63:0;14394:397:1;43998:63:0;44087:12;;44080:3;:19;;44072:66;;;;-1:-1:-1;;;44072:66:0;;7465:2:1;44072:66:0;;;7447:21:1;7504:2;7484:18;;;7477:30;7543:34;7523:18;;;7516:62;-1:-1:-1;;;7594:18:1;;;7587:32;7636:19;;44072:66:0;7263:398:1;44072:66:0;44180:9;;44173:3;44157:13;26930:7;26953:12;;26877:94;44157:13;:19;;;;:::i;:::-;:32;;44149:64;;;;-1:-1:-1;;;44149:64:0;;14247:2:1;44149:64:0;;;14229:21:1;14286:2;14266:18;;;14259:30;-1:-1:-1;;;14305:18:1;;;14298:50;14365:18;;44149:64:0;14045:344:1;44149:64:0;44224:14;44234:3;44224:9;:14::i;31844:274::-;-1:-1:-1;;;;;31935:24:0;;24437:10;31935:24;;31927:63;;;;-1:-1:-1;;;31927:63:0;;11475:2:1;31927:63:0;;;11457:21:1;11514:2;11494:18;;;11487:30;11553:28;11533:18;;;11526:56;11599:18;;31927:63:0;11273:350:1;31927:63:0;24437:10;31999:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31999:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31999:53:0;;;;;;;;;;32064:48;;5766:41:1;;;31999:42:0;;24437:10;32064:48;;5739:18:1;32064:48:0;;;;;;;31844:274;;:::o;44998:104::-;41748:13;:11;:13::i;:::-;45077:16:::1;::::0;;-1:-1:-1;;45056:37:0;::::1;45077:16;::::0;;::::1;45076:17;45056:37;::::0;;44998:104::o;32851:311::-;32988:28;32998:4;33004:2;33008:7;32988:9;:28::i;:::-;33039:48;33062:4;33068:2;33072:7;33081:5;33039:22;:48::i;:::-;33023:133;;;;-1:-1:-1;;;33023:133:0;;;;;;;:::i;:::-;32851:311;;;;:::o;30358:403::-;30456:13;30497:16;30505:7;33458:4;33488:12;-1:-1:-1;33478:22:0;33401:105;30497:16;30481:97;;;;-1:-1:-1;;;30481:97:0;;11059:2:1;30481:97:0;;;11041:21:1;11098:2;11078:18;;;11071:30;11137:34;11117:18;;;11110:62;-1:-1:-1;;;11188:18:1;;;11181:45;11243:19;;30481:97:0;10857:411:1;30481:97:0;30587:21;30611:10;:8;:10::i;:::-;30587:34;;30666:1;30648:7;30642:21;:25;:113;;;;;;;;;;;;;;;;;30703:7;30712:18;:7;:16;:18::i;:::-;30686:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30642:113;30628:127;30358:403;-1:-1:-1;;;30358:403:0:o;44533:113::-;44591:7;44618:20;44632:5;44618:13;:20::i;42768:201::-;41748:13;:11;:13::i;:::-;-1:-1:-1;;;;;42857:22:0;::::1;42849:73;;;::::0;-1:-1:-1;;;42849:73:0;;6647:2:1;42849:73:0::1;::::0;::::1;6629:21:1::0;6686:2;6666:18;;;6659:30;6725:34;6705:18;;;6698:62;-1:-1:-1;;;6776:18:1;;;6769:36;6822:19;;42849:73:0::1;6445:402:1::0;42849:73:0::1;42933:28;42952:8;42933:18;:28::i;37088:172::-:0;37185:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37185:29:0;-1:-1:-1;;;;;37185:29:0;;;;;;;;;37226:28;;37185:24;;37226:28;;;;;;;37088:172;;;:::o;35453:1529::-;35550:35;35588:20;35600:7;35588:11;:20::i;:::-;35659:18;;35550:58;;-1:-1:-1;35617:22:0;;-1:-1:-1;;;;;35643:34:0;24437:10;-1:-1:-1;;;;;35643:34:0;;:81;;;-1:-1:-1;24437:10:0;35688:20;35700:7;35688:11;:20::i;:::-;-1:-1:-1;;;;;35688:36:0;;35643:81;:142;;;-1:-1:-1;35752:18:0;;35735:50;;24437:10;32181:186;:::i;35735:50::-;35617:169;;35811:17;35795:101;;;;-1:-1:-1;;;35795:101:0;;11830:2:1;35795:101:0;;;11812:21:1;11869:2;11849:18;;;11842:30;11908:34;11888:18;;;11881:62;-1:-1:-1;;;11959:18:1;;;11952:48;12017:19;;35795:101:0;11628:414:1;35795:101:0;35943:4;-1:-1:-1;;;;;35921:26:0;:13;:18;;;-1:-1:-1;;;;;35921:26:0;;35905:98;;;;-1:-1:-1;;;35905:98:0;;9934:2:1;35905:98:0;;;9916:21:1;9973:2;9953:18;;;9946:30;10012:34;9992:18;;;9985:62;-1:-1:-1;;;10063:18:1;;;10056:36;10109:19;;35905:98:0;9732:402:1;35905:98:0;-1:-1:-1;;;;;36018:16:0;;36010:66;;;;-1:-1:-1;;;36010:66:0;;8272:2:1;36010:66:0;;;8254:21:1;8311:2;8291:18;;;8284:30;8350:34;8330:18;;;8323:62;-1:-1:-1;;;8401:18:1;;;8394:35;8446:19;;36010:66:0;8070:401:1;36010:66:0;36185:49;36202:1;36206:7;36215:13;:18;;;36185:8;:49::i;:::-;-1:-1:-1;;;;;36243:18:0;;;;;;:12;:18;;;;;:31;;36273:1;;36243:18;:31;;36273:1;;-1:-1:-1;;;;;36243:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;36243:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36281:16:0;;-1:-1:-1;36281:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;36281:16:0;;:29;;-1:-1:-1;;36281:29:0;;:::i;:::-;;;-1:-1:-1;;;;;36281:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36340:43:0;;;;;;;;-1:-1:-1;;;;;36340:43:0;;;;;;36366:15;36340:43;;;;;;;;;-1:-1:-1;36317:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;36317:66:0;-1:-1:-1;;;;;;36317:66:0;;;;;;;;;;;36633:11;36329:7;-1:-1:-1;36633:11:0;:::i;:::-;36696:1;36655:24;;;:11;:24;;;;;:29;36611:33;;-1:-1:-1;;;;;;36655:29:0;36651:236;;36713:20;36721:11;33458:4;33488:12;-1:-1:-1;33478:22:0;33401:105;36713:20;36709:171;;;36773:97;;;;;;;;36800:18;;-1:-1:-1;;;;;36773:97:0;;;;;;36831:28;;;;36773:97;;;;;;;;;;-1:-1:-1;36746:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;36746:124:0;-1:-1:-1;;;;;;36746:124:0;;;;;;;;;;;;36709:171;36919:7;36915:2;-1:-1:-1;;;;;36900:27:0;36909:4;-1:-1:-1;;;;;36900:27:0;;;;;;;;;;;36934:42;35543:1439;;;35453:1529;;;:::o;42027:132::-;41935:6;;-1:-1:-1;;;;;41935:6:0;24437:10;42091:23;42083:68;;;;-1:-1:-1;;;42083:68:0;;10698:2:1;42083:68:0;;;10680:21:1;;;10717:18;;;10710:30;10776:34;10756:18;;;10749:62;10828:18;;42083:68:0;10496:356:1;33512:98:0;33577:27;33587:2;33591:8;33577:27;;;;;;;;;;;;:9;:27::i;29205:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;29322:16:0;29330:7;33458:4;33488:12;-1:-1:-1;33478:22:0;33401:105;29322:16;29314:71;;;;-1:-1:-1;;;29314:71:0;;7054:2:1;29314:71:0;;;7036:21:1;7093:2;7073:18;;;7066:30;7132:34;7112:18;;;7105:62;-1:-1:-1;;;7183:18:1;;;7176:40;7233:19;;29314:71:0;6852:406:1;29314:71:0;29394:26;29442:12;29431:7;:23;29427:93;;29486:22;29496:12;29486:7;:22;:::i;:::-;:26;;29511:1;29486:26;:::i;:::-;29465:47;;29427:93;29548:7;29528:212;29565:18;29557:4;:26;29528:212;;29602:31;29636:17;;;:11;:17;;;;;;;;;29602:51;;;;;;;;;-1:-1:-1;;;;;29602:51:0;;;;;-1:-1:-1;;;29602:51:0;;;;;;;;;;;;29666:28;29662:71;;29714:9;29205:606;-1:-1:-1;;;;29205:606:0:o;29662:71::-;-1:-1:-1;29585:6:0;;;;:::i;:::-;;;;29528:212;;;-1:-1:-1;29748:57:0;;-1:-1:-1;;;29748:57:0;;14998:2:1;29748:57:0;;;14980:21:1;15037:2;15017:18;;;15010:30;15076:34;15056:18;;;15049:62;-1:-1:-1;;;15127:18:1;;;15120:45;15182:19;;29748:57:0;14796:411:1;43129:191:0;43222:6;;;-1:-1:-1;;;;;43239:17:0;;;-1:-1:-1;;;;;;43239:17:0;;;;;;;43272:40;;43222:6;;;43239:17;43222:6;;43272:40;;43203:16;;43272:40;43192:128;43129:191;:::o;44254:269::-;44321:8;;44314:3;:15;44311:34;;-1:-1:-1;44337:8:0;;44311:34;44396:9;;44384:8;;44378:14;;:3;:14;:::i;:::-;44377:28;;;;:::i;:::-;44364:9;:41;;44356:81;;;;-1:-1:-1;;;44356:81:0;;10341:2:1;44356:81:0;;;10323:21:1;10380:2;10360:18;;;10353:30;10419;10399:18;;;10392:58;10467:18;;44356:81:0;10139:352:1;44356:81:0;44459:10;44448:22;;;;:10;:22;;;;;:29;;44474:3;;44448:22;:29;;44474:3;;44448:29;:::i;:::-;;;;-1:-1:-1;44488:26:0;;-1:-1:-1;44498:10:0;44510:3;44488:9;:26::i;38803:690::-;38940:4;-1:-1:-1;;;;;38957:13:0;;4127:19;:23;38953:535;;38996:72;;-1:-1:-1;;;38996:72:0;;-1:-1:-1;;;;;38996:36:0;;;;;:72;;24437:10;;39047:4;;39053:7;;39062:5;;38996:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38996:72:0;;;;;;;;-1:-1:-1;;38996:72:0;;;;;;;;;;;;:::i;:::-;;;38983:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39227:13:0;;39223:215;;39260:61;;-1:-1:-1;;;39260:61:0;;;;;;;:::i;39223:215::-;39406:6;39400:13;39391:6;39387:2;39383:15;39376:38;38983:464;-1:-1:-1;;;;;;39118:55:0;-1:-1:-1;;;39118:55:0;;-1:-1:-1;39111:62:0;;38953:535;-1:-1:-1;39476:4:0;38953:535;38803:690;;;;;;:::o;44654:108::-;44714:13;44747:7;44740:14;;;;;:::i;532:723::-;588:13;809:10;805:53;;-1:-1:-1;;836:10:0;;;;;;;;;;;;-1:-1:-1;;;836:10:0;;;;;532:723::o;805:53::-;883:5;868:12;924:78;931:9;;924:78;;957:8;;;;:::i;:::-;;-1:-1:-1;980:10:0;;-1:-1:-1;988:2:0;980:10;;:::i;:::-;;;924:78;;;1012:19;1044:6;1034:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1034:17:0;;1012:39;;1062:154;1069:10;;1062:154;;1096:11;1106:1;1096:11;;:::i;:::-;;-1:-1:-1;1165:10:0;1173:2;1165:5;:10;:::i;:::-;1152:24;;:2;:24;:::i;:::-;1139:39;;1122:6;1129;1122:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1122:56:0;;;;;;;;-1:-1:-1;1193:11:0;1202:2;1193:11;;:::i;:::-;;;1062:154;;28959:240;29020:7;-1:-1:-1;;;;;29052:19:0;;29036:102;;;;-1:-1:-1;;;29036:102:0;;8678:2:1;29036:102:0;;;8660:21:1;8717:2;8697:18;;;8690:30;8756:34;8736:18;;;8729:62;-1:-1:-1;;;8807:18:1;;;8800:47;8864:19;;29036:102:0;8476:413:1;29036:102:0;-1:-1:-1;;;;;;29160:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;29160:32:0;;-1:-1:-1;;;;;29160:32:0;;28959:240::o;33949:1272::-;34054:20;34077:12;-1:-1:-1;;;;;34104:16:0;;34096:62;;;;-1:-1:-1;;;34096:62:0;;13430:2:1;34096:62:0;;;13412:21:1;13469:2;13449:18;;;13442:30;13508:34;13488:18;;;13481:62;-1:-1:-1;;;13559:18:1;;;13552:31;13600:19;;34096:62:0;13228:397:1;34096:62:0;34295:21;34303:12;33458:4;33488:12;-1:-1:-1;33478:22:0;33401:105;34295:21;34294:22;34286:64;;;;-1:-1:-1;;;34286:64:0;;13072:2:1;34286:64:0;;;13054:21:1;13111:2;13091:18;;;13084:30;13150:31;13130:18;;;13123:59;13199:18;;34286:64:0;12870:353:1;34286:64:0;34377:12;34365:8;:24;;34357:71;;;;-1:-1:-1;;;34357:71:0;;15828:2:1;34357:71:0;;;15810:21:1;15867:2;15847:18;;;15840:30;15906:34;15886:18;;;15879:62;-1:-1:-1;;;15957:18:1;;;15950:32;15999:19;;34357:71:0;15626:398:1;34357:71:0;-1:-1:-1;;;;;34540:16:0;;34507:30;34540:16;;;:12;:16;;;;;;;;;34507:49;;;;;;;;;-1:-1:-1;;;;;34507:49:0;;;;;-1:-1:-1;;;34507:49:0;;;;;;;;;;;34582:119;;;;;;;;34602:19;;34507:49;;34582:119;;;34602:39;;34632:8;;34602:39;:::i;:::-;-1:-1:-1;;;;;34582:119:0;;;;;34685:8;34650:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34582:119:0;;;;;;-1:-1:-1;;;;;34563:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;34563:138:0;;;;;;;;;;;;34736:43;;;;;;;;;;;34762:15;34736:43;;;;;;;;34708:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34708:71:0;-1:-1:-1;;;;;;34708:71:0;;;;;;;;;;;;;;;;;;34720:12;;34832:281;34856:8;34852:1;:12;34832:281;;;34885:38;;34910:12;;-1:-1:-1;;;;;34885:38:0;;;34902:1;;34885:38;;34902:1;;34885:38;34950:59;34981:1;34985:2;34989:12;35003:5;34950:22;:59::i;:::-;34932:150;;;;-1:-1:-1;;;34932:150:0;;;;;;;:::i;:::-;35091:14;;;;:::i;:::-;;;;34866:3;;;;;:::i;:::-;;;;34832:281;;;-1:-1:-1;35121:12:0;:27;;;35155:60;32851:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;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;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;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:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;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:72;;;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:53;;;1985:1;1982;1975:12;1936:53;2041:2;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;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:637::-;4563:3;4601:6;4595:13;4617:53;4663:6;4658:3;4651:4;4643:6;4639:17;4617:53;:::i;:::-;4733:13;;4692:16;;;;4755:57;4733:13;4692:16;4789:4;4777:17;;4755:57;:::i;:::-;-1:-1:-1;;;4834:20:1;;4863:22;;;4912:1;4901:13;;4283:637;-1:-1:-1;;;;4283:637:1:o;5133:488::-;-1:-1:-1;;;;;5402:15:1;;;5384:34;;5454:15;;5449:2;5434:18;;5427:43;5501:2;5486:18;;5479:34;;;5549:3;5544:2;5529:18;;5522:31;;;5327:4;;5570:45;;5595:19;;5587:6;5570:45;:::i;:::-;5562:53;5133:488;-1:-1:-1;;;;;;5133:488:1:o;5818:219::-;5967:2;5956:9;5949:21;5930:4;5987:44;6027:2;6016:9;6012:18;6004:6;5987:44;:::i;12450:415::-;12652:2;12634:21;;;12691:2;12671:18;;;12664:30;12730:34;12725:2;12710:18;;12703:62;-1:-1:-1;;;12796:2:1;12781:18;;12774:49;12855:3;12840:19;;12450:415::o;16211:253::-;16251:3;-1:-1:-1;;;;;16340:2:1;16337:1;16333:10;16370:2;16367:1;16363:10;16401:3;16397:2;16393:12;16388:3;16385:21;16382:47;;;16409:18;;:::i;:::-;16445:13;;16211:253;-1:-1:-1;;;;16211:253:1:o;16469:128::-;16509:3;16540:1;16536:6;16533:1;16530:13;16527:39;;;16546:18;;:::i;:::-;-1:-1:-1;16582:9:1;;16469:128::o;16602:120::-;16642:1;16668;16658:35;;16673:18;;:::i;:::-;-1:-1:-1;16707:9:1;;16602:120::o;16727:168::-;16767:7;16833:1;16829;16825:6;16821:14;16818:1;16815:21;16810:1;16803:9;16796:17;16792:45;16789:71;;;16840:18;;:::i;:::-;-1:-1:-1;16880:9:1;;16727:168::o;16900:246::-;16940:4;-1:-1:-1;;;;;17053:10:1;;;;17023;;17075:12;;;17072:38;;;17090:18;;:::i;:::-;17127:13;;16900:246;-1:-1:-1;;;16900:246:1:o;17151:125::-;17191:4;17219:1;17216;17213:8;17210:34;;;17224:18;;:::i;:::-;-1:-1:-1;17261:9:1;;17151:125::o;17281:258::-;17353:1;17363:113;17377:6;17374:1;17371:13;17363:113;;;17453:11;;;17447:18;17434:11;;;17427:39;17399:2;17392:10;17363:113;;;17494:6;17491:1;17488:13;17485:48;;;-1:-1:-1;;17529:1:1;17511:16;;17504:27;17281:258::o;17544:136::-;17583:3;17611:5;17601:39;;17620:18;;:::i;:::-;-1:-1:-1;;;17656:18:1;;17544:136::o;17685:380::-;17764:1;17760:12;;;;17807;;;17828:61;;17882:4;17874:6;17870:17;17860:27;;17828:61;17935:2;17927:6;17924:14;17904:18;17901:38;17898:161;;;17981:10;17976:3;17972:20;17969:1;17962:31;18016:4;18013:1;18006:15;18044:4;18041:1;18034:15;17898:161;;17685:380;;;:::o;18070:135::-;18109:3;-1:-1:-1;;18130:17:1;;18127:43;;;18150:18;;:::i;:::-;-1:-1:-1;18197:1:1;18186:13;;18070:135::o;18210:112::-;18242:1;18268;18258:35;;18273:18;;:::i;:::-;-1:-1:-1;18307:9:1;;18210:112::o;18327:127::-;18388:10;18383:3;18379:20;18376:1;18369:31;18419:4;18416:1;18409:15;18443:4;18440:1;18433:15;18459:127;18520:10;18515:3;18511:20;18508:1;18501:31;18551:4;18548:1;18541:15;18575:4;18572:1;18565:15;18591:127;18652:10;18647:3;18643:20;18640:1;18633:31;18683:4;18680:1;18673:15;18707:4;18704:1;18697:15;18723:127;18784:10;18779:3;18775:20;18772:1;18765:31;18815:4;18812:1;18805:15;18839:4;18836:1;18829:15;18855:131;-1:-1:-1;;;;;;18929:32:1;;18919:43;;18909:71;;18976:1;18973;18966:12

Swarm Source

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