ETH Price: $3,512.23 (+2.67%)
Gas: 5 Gwei

Token

Riley Reid DAO (RILEYDAO)
 

Overview

Max Total Supply

186 RILEYDAO

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
1l0.eth
Balance
3 RILEYDAO
0xcaa61e27c10d20b501a14536ca6dff53e5600594
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:
RileyReidDAO

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-01-19
*/

// SPDX-License-Identifier: MIT

// 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/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


pragma solidity ^0.8.0;





contract RileyReidDAO is ERC721A, Ownable, ReentrancyGuard {

    using Strings for uint256;

    string private baseURI = "";

    bool public isSaleActive = true;

    uint256 public maxFreeMintsPerTX = 1;
    uint256 public maxMintsPerTX = 10;

    uint256 public maxSupply = 3333;
    uint256 public price = 0.01 ether;

    uint256 public maxFree = 333;

    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier checkSaleActive() {
        require(isSaleActive, "SALE_CLOSED");
        _;
    }

    modifier checkStock(uint256 noOfTokens) {
        require(totalSupply() + noOfTokens <= maxSupply, "SOLD_OUT");
        _;
    }

    modifier checkFreeMaxMints(uint256 noOfTokens) {
        require(noOfTokens <= maxFreeMintsPerTX, "MAX_FREE_MINTS");
        _;
    }

    modifier checkMaxMints(uint256 noOfTokens) {
        require(noOfTokens <= maxMintsPerTX, "MAX_MINTS");
        _;
    }

    modifier checkPayment(uint256 noOfTokens) {
        require((price * noOfTokens) <= msg.value, "INVALID_ETH_VALUE");
        _;
    }

    modifier checkFreeMints() {
        require(totalSupply() <= maxFree, "FREE_SOLD_OUT");
        _;
    }

	constructor() ERC721A("Riley Reid DAO", "RILEYDAO", 50, maxSupply) {}


    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 noOfTokens)
        external
        payable
        nonReentrant
        checkSaleActive
        checkStock(noOfTokens)
        checkMaxMints(noOfTokens)
        checkPayment(noOfTokens)
    {
        _safeMint(msg.sender, noOfTokens);
    }

    function freeMint(uint256 noOfTokens)
        external
        nonReentrant
        checkSaleActive
        checkStock(noOfTokens)
        checkFreeMaxMints(noOfTokens)
        checkFreeMints
    {
        _safeMint(msg.sender, noOfTokens);
    }


    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

	// ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

	function toggleSale() external onlyOwner {
		isSaleActive = !isSaleActive;
	}

	function setPrice(uint256 newPrice) external onlyOwner {
		price = newPrice;
	}

	function setMaxFree(uint256 newMaxFree) external onlyOwner {
		maxFree = newMaxFree;
	}

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

    // ============ FUNCTION OVERRIDES ============

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

        return
            string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
	}


}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"noOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintsPerTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTX","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":"noOfTokens","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":[],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"newMaxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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"}]

6000808055600781905560e0604081905260c08290526200002491600a91906200021e565b50600b805460ff19166001908117909155600c55600a600d55610d05600e55662386f26fc10000600f5561014d6010553480156200006157600080fd5b506040518060400160405280600e81526020016d52696c657920526569642044414f60901b8152506040518060400160405280600881526020016752494c455944414f60c01b8152506032600e54600081116200011c5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200017e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000113565b8351620001939060019060208701906200021e565b508251620001a99060029060208601906200021e565b5060a09190915260805250620001c1905033620001cc565b600160095562000301565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022c90620002c4565b90600052602060002090601f0160209004810192826200025057600085556200029b565b82601f106200026b57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029b5782518255916020019190600101906200027e565b50620002a9929150620002ad565b5090565b5b80821115620002a95760008155600101620002ae565b600181811c90821680620002d957607f821691505b60208210811415620002fb57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612419620003326000396000818161168c015281816116b60152611ae90152600050506124196000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461055a578063d7224ba014610570578063d755bf9914610586578063e985e9c5146105a6578063f2fde38b146105ef57600080fd5b8063a22cb465146104e4578063b05d105014610504578063b88d4fde1461051a578063c87b56dd1461053a57600080fd5b806391b7f5ed116100dc57806391b7f5ed1461048657806395d89b41146104a6578063a035b1fe146104bb578063a0712d68146104d157600080fd5b8063715018a61461041e5780637c928fe9146104335780637d8966e4146104535780638da5cb5b1461046857600080fd5b806342842e0e11610190578063564566a81161015f578063564566a81461039957806357b80205146103b35780636352211e146103c957806370a08231146103e9578063714c53981461040957600080fd5b806342842e0e14610323578063485a68a3146103435780634f6ccce71461035957806355f804b31461037957600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102ce5780632f745c59146102ee5780633ccfd60b1461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611f9c565b61060f565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067c565b60405161022a9190612178565b34801561026157600080fd5b5061027561027036600461201f565b61070e565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611f72565b61079e565b005b3480156102bb57600080fd5b506000545b60405190815260200161022a565b3480156102da57600080fd5b506102ad6102e9366004611e7e565b6108b6565b3480156102fa57600080fd5b506102c0610309366004611f72565b6108c1565b34801561031a57600080fd5b506102ad610a2f565b34801561032f57600080fd5b506102ad61033e366004611e7e565b610a88565b34801561034f57600080fd5b506102c060105481565b34801561036557600080fd5b506102c061037436600461201f565b610aa3565b34801561038557600080fd5b506102ad610394366004611fd6565b610b05565b3480156103a557600080fd5b50600b5461021e9060ff1681565b3480156103bf57600080fd5b506102c0600d5481565b3480156103d557600080fd5b506102756103e436600461201f565b610b46565b3480156103f557600080fd5b506102c0610404366004611e29565b610b58565b34801561041557600080fd5b50610248610be9565b34801561042a57600080fd5b506102ad610bf8565b34801561043f57600080fd5b506102ad61044e36600461201f565b610c2e565b34801561045f57600080fd5b506102ad610db3565b34801561047457600080fd5b506008546001600160a01b0316610275565b34801561049257600080fd5b506102ad6104a136600461201f565b610df1565b3480156104b257600080fd5b50610248610e20565b3480156104c757600080fd5b506102c0600f5481565b6102ad6104df36600461201f565b610e2f565b3480156104f057600080fd5b506102ad6104ff366004611f36565b610fbe565b34801561051057600080fd5b506102c0600c5481565b34801561052657600080fd5b506102ad610535366004611eba565b611083565b34801561054657600080fd5b5061024861055536600461201f565b6110bc565b34801561056657600080fd5b506102c0600e5481565b34801561057c57600080fd5b506102c060075481565b34801561059257600080fd5b506102ad6105a136600461201f565b61115f565b3480156105b257600080fd5b5061021e6105c1366004611e4b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105fb57600080fd5b506102ad61060a366004611e29565b61118e565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506001600160e01b0319821663780e9d6360e01b145b8061067657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461068b9061230b565b80601f01602080910402602001604051908101604052809291908181526020018280546106b79061230b565b80156107045780601f106106d957610100808354040283529160200191610704565b820191906000526020600020905b8154815290600101906020018083116106e757829003601f168201915b5050505050905090565b600061071b826000541190565b6107825760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107a982610b46565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610779565b336001600160a01b0382161480610834575061083481336105c1565b6108a65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610779565b6108b1838383611226565b505050565b6108b1838383611282565b60006108cc83610b58565b82106109255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610779565b600080549080805b838110156109cf576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561098057805192505b876001600160a01b0316836001600160a01b031614156109bc57868414156109ae5750935061067692505050565b836109b881612346565b9450505b50806109c781612346565b91505061092d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610779565b6008546001600160a01b03163314610a595760405162461bcd60e51b81526004016107799061218b565b60405133904780156108fc02916000818181858888f19350505050158015610a85573d6000803e3d6000fd5b50565b6108b183838360405180602001604052806000815250611083565b600080548210610b015760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610779565b5090565b6008546001600160a01b03163314610b2f5760405162461bcd60e51b81526004016107799061218b565b8051610b4290600a906020840190611d07565b5050565b6000610b518261160a565b5192915050565b60006001600160a01b038216610bc45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610779565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600a805461068b9061230b565b6008546001600160a01b03163314610c225760405162461bcd60e51b81526004016107799061218b565b610c2c60006117b4565b565b60026009541415610c815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610779565b6002600955600b5460ff16610cc65760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b6044820152606401610779565b80600e5481610cd460005490565b610cde919061223e565b1115610d175760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610779565b81600c54811115610d5b5760405162461bcd60e51b815260206004820152600e60248201526d4d41585f465245455f4d494e545360901b6044820152606401610779565b6010546000541115610d9f5760405162461bcd60e51b815260206004820152600d60248201526c1194915157d4d3d31117d3d555609a1b6044820152606401610779565b610da93384611806565b5050600160095550565b6008546001600160a01b03163314610ddd5760405162461bcd60e51b81526004016107799061218b565b600b805460ff19811660ff90911615179055565b6008546001600160a01b03163314610e1b5760405162461bcd60e51b81526004016107799061218b565b600f55565b60606002805461068b9061230b565b60026009541415610e825760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610779565b6002600955600b5460ff16610ec75760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b6044820152606401610779565b80600e5481610ed560005490565b610edf919061223e565b1115610f185760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610779565b81600d54811115610f575760405162461bcd60e51b81526020600482015260096024820152684d41585f4d494e545360b81b6044820152606401610779565b823481600f54610f67919061226a565b1115610fa95760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f4554485f56414c554560781b6044820152606401610779565b610fb33385611806565b505060016009555050565b6001600160a01b0382163314156110175760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610779565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61108e848484611282565b61109a84848484611820565b6110b65760405162461bcd60e51b8152600401610779906121c0565b50505050565b60606110c9826000541190565b61112d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610779565b600a6111388361192e565b604051602001611149929190612080565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146111895760405162461bcd60e51b81526004016107799061218b565b601055565b6008546001600160a01b031633146111b85760405162461bcd60e51b81526004016107799061218b565b6001600160a01b03811661121d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610779565b610a85816117b4565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061128d8261160a565b80519091506000906001600160a01b0316336001600160a01b031614806112c45750336112b98461070e565b6001600160a01b0316145b806112d6575081516112d690336105c1565b9050806113405760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610779565b846001600160a01b031682600001516001600160a01b0316146113b45760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610779565b6001600160a01b0384166114185760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610779565b6114286000848460000151611226565b6001600160a01b038516600090815260046020526040812080546001929061145a9084906001600160801b0316612289565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114a691859116612213565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561152e84600161223e565b6000818152600360205260409020549091506001600160a01b03166115c057611558816000541190565b156115c05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611629826000541190565b6116885760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610779565b60007f000000000000000000000000000000000000000000000000000000000000000083106116e9576116db7f0000000000000000000000000000000000000000000000000000000000000000846122b1565b6116e690600161223e565b90505b825b818110611753576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561174057949350505050565b508061174b816122f4565b9150506116eb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610779565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b42828260405180602001604052806000815250611a2c565b60006001600160a01b0384163b1561192257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061186490339089908890889060040161213b565b602060405180830381600087803b15801561187e57600080fd5b505af19250505080156118ae575060408051601f3d908101601f191682019092526118ab91810190611fb9565b60015b611908573d8080156118dc576040519150601f19603f3d011682016040523d82523d6000602084013e6118e1565b606091505b5080516119005760405162461bcd60e51b8152600401610779906121c0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611926565b5060015b949350505050565b6060816119525750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197c578061196681612346565b91506119759050600a83612256565b9150611956565b60008167ffffffffffffffff811115611997576119976123b7565b6040519080825280601f01601f1916602001820160405280156119c1576020820181803683370190505b5090505b8415611926576119d66001836122b1565b91506119e3600a86612361565b6119ee90603061223e565b60f81b818381518110611a0357611a036123a1565b60200101906001600160f81b031916908160001a905350611a25600a86612256565b94506119c5565b6000546001600160a01b038416611a8f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610779565b611a9a816000541190565b15611ae75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610779565b7f0000000000000000000000000000000000000000000000000000000000000000831115611b625760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610779565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611bbe908790612213565b6001600160801b03168152602001858360200151611bdc9190612213565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611cfc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cc06000888488611820565b611cdc5760405162461bcd60e51b8152600401610779906121c0565b81611ce681612346565b9250508080611cf490612346565b915050611c73565b506000819055611602565b828054611d139061230b565b90600052602060002090601f016020900481019282611d355760008555611d7b565b82601f10611d4e57805160ff1916838001178555611d7b565b82800160010185558215611d7b579182015b82811115611d7b578251825591602001919060010190611d60565b50610b019291505b80821115610b015760008155600101611d83565b600067ffffffffffffffff80841115611db257611db26123b7565b604051601f8501601f19908116603f01168101908282118183101715611dda57611dda6123b7565b81604052809350858152868686011115611df357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2457600080fd5b919050565b600060208284031215611e3b57600080fd5b611e4482611e0d565b9392505050565b60008060408385031215611e5e57600080fd5b611e6783611e0d565b9150611e7560208401611e0d565b90509250929050565b600080600060608486031215611e9357600080fd5b611e9c84611e0d565b9250611eaa60208501611e0d565b9150604084013590509250925092565b60008060008060808587031215611ed057600080fd5b611ed985611e0d565b9350611ee760208601611e0d565b925060408501359150606085013567ffffffffffffffff811115611f0a57600080fd5b8501601f81018713611f1b57600080fd5b611f2a87823560208401611d97565b91505092959194509250565b60008060408385031215611f4957600080fd5b611f5283611e0d565b915060208301358015158114611f6757600080fd5b809150509250929050565b60008060408385031215611f8557600080fd5b611f8e83611e0d565b946020939093013593505050565b600060208284031215611fae57600080fd5b8135611e44816123cd565b600060208284031215611fcb57600080fd5b8151611e44816123cd565b600060208284031215611fe857600080fd5b813567ffffffffffffffff811115611fff57600080fd5b8201601f8101841361201057600080fd5b61192684823560208401611d97565b60006020828403121561203157600080fd5b5035919050565b600081518084526120508160208601602086016122c8565b601f01601f19169290920160200192915050565b600081516120768185602086016122c8565b9290920192915050565b600080845481600182811c91508083168061209c57607f831692505b60208084108214156120bc57634e487b7160e01b86526022600452602486fd5b8180156120d057600181146120e15761210e565b60ff1986168952848901965061210e565b60008b81526020902060005b868110156121065781548b8201529085019083016120ed565b505084890196505b5050505050506121326121218286612064565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216e90830184612038565b9695505050505050565b602081526000611e446020830184612038565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561223557612235612375565b01949350505050565b6000821982111561225157612251612375565b500190565b6000826122655761226561238b565b500490565b600081600019048311821515161561228457612284612375565b500290565b60006001600160801b03838116908316818110156122a9576122a9612375565b039392505050565b6000828210156122c3576122c3612375565b500390565b60005b838110156122e35781810151838201526020016122cb565b838111156110b65750506000910152565b60008161230357612303612375565b506000190190565b600181811c9082168061231f57607f821691505b6020821081141561234057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561235a5761235a612375565b5060010190565b6000826123705761237061238b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8557600080fdfea264697066735822122024407e4fecc391a09158753f7597b36e60014889fcf60c83004f94afd5ed151f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461055a578063d7224ba014610570578063d755bf9914610586578063e985e9c5146105a6578063f2fde38b146105ef57600080fd5b8063a22cb465146104e4578063b05d105014610504578063b88d4fde1461051a578063c87b56dd1461053a57600080fd5b806391b7f5ed116100dc57806391b7f5ed1461048657806395d89b41146104a6578063a035b1fe146104bb578063a0712d68146104d157600080fd5b8063715018a61461041e5780637c928fe9146104335780637d8966e4146104535780638da5cb5b1461046857600080fd5b806342842e0e11610190578063564566a81161015f578063564566a81461039957806357b80205146103b35780636352211e146103c957806370a08231146103e9578063714c53981461040957600080fd5b806342842e0e14610323578063485a68a3146103435780634f6ccce71461035957806355f804b31461037957600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102ce5780632f745c59146102ee5780633ccfd60b1461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611f9c565b61060f565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067c565b60405161022a9190612178565b34801561026157600080fd5b5061027561027036600461201f565b61070e565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611f72565b61079e565b005b3480156102bb57600080fd5b506000545b60405190815260200161022a565b3480156102da57600080fd5b506102ad6102e9366004611e7e565b6108b6565b3480156102fa57600080fd5b506102c0610309366004611f72565b6108c1565b34801561031a57600080fd5b506102ad610a2f565b34801561032f57600080fd5b506102ad61033e366004611e7e565b610a88565b34801561034f57600080fd5b506102c060105481565b34801561036557600080fd5b506102c061037436600461201f565b610aa3565b34801561038557600080fd5b506102ad610394366004611fd6565b610b05565b3480156103a557600080fd5b50600b5461021e9060ff1681565b3480156103bf57600080fd5b506102c0600d5481565b3480156103d557600080fd5b506102756103e436600461201f565b610b46565b3480156103f557600080fd5b506102c0610404366004611e29565b610b58565b34801561041557600080fd5b50610248610be9565b34801561042a57600080fd5b506102ad610bf8565b34801561043f57600080fd5b506102ad61044e36600461201f565b610c2e565b34801561045f57600080fd5b506102ad610db3565b34801561047457600080fd5b506008546001600160a01b0316610275565b34801561049257600080fd5b506102ad6104a136600461201f565b610df1565b3480156104b257600080fd5b50610248610e20565b3480156104c757600080fd5b506102c0600f5481565b6102ad6104df36600461201f565b610e2f565b3480156104f057600080fd5b506102ad6104ff366004611f36565b610fbe565b34801561051057600080fd5b506102c0600c5481565b34801561052657600080fd5b506102ad610535366004611eba565b611083565b34801561054657600080fd5b5061024861055536600461201f565b6110bc565b34801561056657600080fd5b506102c0600e5481565b34801561057c57600080fd5b506102c060075481565b34801561059257600080fd5b506102ad6105a136600461201f565b61115f565b3480156105b257600080fd5b5061021e6105c1366004611e4b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105fb57600080fd5b506102ad61060a366004611e29565b61118e565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506001600160e01b0319821663780e9d6360e01b145b8061067657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461068b9061230b565b80601f01602080910402602001604051908101604052809291908181526020018280546106b79061230b565b80156107045780601f106106d957610100808354040283529160200191610704565b820191906000526020600020905b8154815290600101906020018083116106e757829003601f168201915b5050505050905090565b600061071b826000541190565b6107825760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107a982610b46565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610779565b336001600160a01b0382161480610834575061083481336105c1565b6108a65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610779565b6108b1838383611226565b505050565b6108b1838383611282565b60006108cc83610b58565b82106109255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610779565b600080549080805b838110156109cf576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561098057805192505b876001600160a01b0316836001600160a01b031614156109bc57868414156109ae5750935061067692505050565b836109b881612346565b9450505b50806109c781612346565b91505061092d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610779565b6008546001600160a01b03163314610a595760405162461bcd60e51b81526004016107799061218b565b60405133904780156108fc02916000818181858888f19350505050158015610a85573d6000803e3d6000fd5b50565b6108b183838360405180602001604052806000815250611083565b600080548210610b015760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610779565b5090565b6008546001600160a01b03163314610b2f5760405162461bcd60e51b81526004016107799061218b565b8051610b4290600a906020840190611d07565b5050565b6000610b518261160a565b5192915050565b60006001600160a01b038216610bc45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610779565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600a805461068b9061230b565b6008546001600160a01b03163314610c225760405162461bcd60e51b81526004016107799061218b565b610c2c60006117b4565b565b60026009541415610c815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610779565b6002600955600b5460ff16610cc65760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b6044820152606401610779565b80600e5481610cd460005490565b610cde919061223e565b1115610d175760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610779565b81600c54811115610d5b5760405162461bcd60e51b815260206004820152600e60248201526d4d41585f465245455f4d494e545360901b6044820152606401610779565b6010546000541115610d9f5760405162461bcd60e51b815260206004820152600d60248201526c1194915157d4d3d31117d3d555609a1b6044820152606401610779565b610da93384611806565b5050600160095550565b6008546001600160a01b03163314610ddd5760405162461bcd60e51b81526004016107799061218b565b600b805460ff19811660ff90911615179055565b6008546001600160a01b03163314610e1b5760405162461bcd60e51b81526004016107799061218b565b600f55565b60606002805461068b9061230b565b60026009541415610e825760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610779565b6002600955600b5460ff16610ec75760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b6044820152606401610779565b80600e5481610ed560005490565b610edf919061223e565b1115610f185760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610779565b81600d54811115610f575760405162461bcd60e51b81526020600482015260096024820152684d41585f4d494e545360b81b6044820152606401610779565b823481600f54610f67919061226a565b1115610fa95760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f4554485f56414c554560781b6044820152606401610779565b610fb33385611806565b505060016009555050565b6001600160a01b0382163314156110175760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610779565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61108e848484611282565b61109a84848484611820565b6110b65760405162461bcd60e51b8152600401610779906121c0565b50505050565b60606110c9826000541190565b61112d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610779565b600a6111388361192e565b604051602001611149929190612080565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146111895760405162461bcd60e51b81526004016107799061218b565b601055565b6008546001600160a01b031633146111b85760405162461bcd60e51b81526004016107799061218b565b6001600160a01b03811661121d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610779565b610a85816117b4565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061128d8261160a565b80519091506000906001600160a01b0316336001600160a01b031614806112c45750336112b98461070e565b6001600160a01b0316145b806112d6575081516112d690336105c1565b9050806113405760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610779565b846001600160a01b031682600001516001600160a01b0316146113b45760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610779565b6001600160a01b0384166114185760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610779565b6114286000848460000151611226565b6001600160a01b038516600090815260046020526040812080546001929061145a9084906001600160801b0316612289565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114a691859116612213565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561152e84600161223e565b6000818152600360205260409020549091506001600160a01b03166115c057611558816000541190565b156115c05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611629826000541190565b6116885760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610779565b60007f000000000000000000000000000000000000000000000000000000000000003283106116e9576116db7f0000000000000000000000000000000000000000000000000000000000000032846122b1565b6116e690600161223e565b90505b825b818110611753576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561174057949350505050565b508061174b816122f4565b9150506116eb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610779565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b42828260405180602001604052806000815250611a2c565b60006001600160a01b0384163b1561192257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061186490339089908890889060040161213b565b602060405180830381600087803b15801561187e57600080fd5b505af19250505080156118ae575060408051601f3d908101601f191682019092526118ab91810190611fb9565b60015b611908573d8080156118dc576040519150601f19603f3d011682016040523d82523d6000602084013e6118e1565b606091505b5080516119005760405162461bcd60e51b8152600401610779906121c0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611926565b5060015b949350505050565b6060816119525750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197c578061196681612346565b91506119759050600a83612256565b9150611956565b60008167ffffffffffffffff811115611997576119976123b7565b6040519080825280601f01601f1916602001820160405280156119c1576020820181803683370190505b5090505b8415611926576119d66001836122b1565b91506119e3600a86612361565b6119ee90603061223e565b60f81b818381518110611a0357611a036123a1565b60200101906001600160f81b031916908160001a905350611a25600a86612256565b94506119c5565b6000546001600160a01b038416611a8f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610779565b611a9a816000541190565b15611ae75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610779565b7f0000000000000000000000000000000000000000000000000000000000000032831115611b625760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610779565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611bbe908790612213565b6001600160801b03168152602001858360200151611bdc9190612213565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611cfc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cc06000888488611820565b611cdc5760405162461bcd60e51b8152600401610779906121c0565b81611ce681612346565b9250508080611cf490612346565b915050611c73565b506000819055611602565b828054611d139061230b565b90600052602060002090601f016020900481019282611d355760008555611d7b565b82601f10611d4e57805160ff1916838001178555611d7b565b82800160010185558215611d7b579182015b82811115611d7b578251825591602001919060010190611d60565b50610b019291505b80821115610b015760008155600101611d83565b600067ffffffffffffffff80841115611db257611db26123b7565b604051601f8501601f19908116603f01168101908282118183101715611dda57611dda6123b7565b81604052809350858152868686011115611df357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e2457600080fd5b919050565b600060208284031215611e3b57600080fd5b611e4482611e0d565b9392505050565b60008060408385031215611e5e57600080fd5b611e6783611e0d565b9150611e7560208401611e0d565b90509250929050565b600080600060608486031215611e9357600080fd5b611e9c84611e0d565b9250611eaa60208501611e0d565b9150604084013590509250925092565b60008060008060808587031215611ed057600080fd5b611ed985611e0d565b9350611ee760208601611e0d565b925060408501359150606085013567ffffffffffffffff811115611f0a57600080fd5b8501601f81018713611f1b57600080fd5b611f2a87823560208401611d97565b91505092959194509250565b60008060408385031215611f4957600080fd5b611f5283611e0d565b915060208301358015158114611f6757600080fd5b809150509250929050565b60008060408385031215611f8557600080fd5b611f8e83611e0d565b946020939093013593505050565b600060208284031215611fae57600080fd5b8135611e44816123cd565b600060208284031215611fcb57600080fd5b8151611e44816123cd565b600060208284031215611fe857600080fd5b813567ffffffffffffffff811115611fff57600080fd5b8201601f8101841361201057600080fd5b61192684823560208401611d97565b60006020828403121561203157600080fd5b5035919050565b600081518084526120508160208601602086016122c8565b601f01601f19169290920160200192915050565b600081516120768185602086016122c8565b9290920192915050565b600080845481600182811c91508083168061209c57607f831692505b60208084108214156120bc57634e487b7160e01b86526022600452602486fd5b8180156120d057600181146120e15761210e565b60ff1986168952848901965061210e565b60008b81526020902060005b868110156121065781548b8201529085019083016120ed565b505084890196505b5050505050506121326121218286612064565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216e90830184612038565b9695505050505050565b602081526000611e446020830184612038565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561223557612235612375565b01949350505050565b6000821982111561225157612251612375565b500190565b6000826122655761226561238b565b500490565b600081600019048311821515161561228457612284612375565b500290565b60006001600160801b03838116908316818110156122a9576122a9612375565b039392505050565b6000828210156122c3576122c3612375565b500390565b60005b838110156122e35781810151838201526020016122cb565b838111156110b65750506000910152565b60008161230357612303612375565b506000190190565b600181811c9082168061231f57607f821691505b6020821081141561234057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561235a5761235a612375565b5060010190565b6000826123705761237061238b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8557600080fdfea264697066735822122024407e4fecc391a09158753f7597b36e60014889fcf60c83004f94afd5ed151f64736f6c63430008070033

Deployed Bytecode Sourcemap

42341:3020:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29972:370;;;;;;;;;;-1:-1:-1;29972:370:0;;;;;:::i;:::-;;:::i;:::-;;;6785:14:1;;6778:22;6760:41;;6748:2;6733:18;29972:370:0;;;;;;;;31698:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33223:204::-;;;;;;;;;;-1:-1:-1;33223:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6083:32:1;;;6065:51;;6053:2;6038:18;33223:204:0;5919:203:1;32786:379:0;;;;;;;;;;-1:-1:-1;32786:379:0;;;;;:::i;:::-;;:::i;:::-;;28533:94;;;;;;;;;;-1:-1:-1;28586:7:0;28609:12;28533:94;;;17644:25:1;;;17632:2;17617:18;28533:94:0;17498:177:1;34073:142:0;;;;;;;;;;-1:-1:-1;34073:142:0;;;;;:::i;:::-;;:::i;29164:744::-;;;;;;;;;;-1:-1:-1;29164:744:0;;;;;:::i;:::-;;:::i;44845:100::-;;;;;;;;;;;;;:::i;34278:157::-;;;;;;;;;;-1:-1:-1;34278:157:0;;;;;:::i;:::-;;:::i;42684:28::-;;;;;;;;;;;;;;;;28696:177;;;;;;;;;;-1:-1:-1;28696:177:0;;;;;:::i;:::-;;:::i;44476:100::-;;;;;;;;;;-1:-1:-1;44476:100:0;;;;;:::i;:::-;;:::i;42479:31::-;;;;;;;;;;-1:-1:-1;42479:31:0;;;;;;;;42562:33;;;;;;;;;;;;;;;;31521:118;;;;;;;;;;-1:-1:-1;31521:118:0;;;;;:::i;:::-;;:::i;30398:211::-;;;;;;;;;;-1:-1:-1;30398:211:0;;;;;:::i;:::-;;:::i;44315:93::-;;;;;;;;;;;;;:::i;7524:103::-;;;;;;;;;;;;;:::i;43987:255::-;;;;;;;;;;-1:-1:-1;43987:255:0;;;;;:::i;:::-;;:::i;44581:79::-;;;;;;;;;;;;;:::i;6873:87::-;;;;;;;;;;-1:-1:-1;6946:6:0;;-1:-1:-1;;;;;6946:6:0;6873:87;;44665:81;;;;;;;;;;-1:-1:-1;44665:81:0;;;;;:::i;:::-;;:::i;31853:98::-;;;;;;;;;;;;;:::i;42642:33::-;;;;;;;;;;;;;;;;43705:274;;;;;;:::i;:::-;;:::i;33491:::-;;;;;;;;;;-1:-1:-1;33491:274:0;;;;;:::i;:::-;;:::i;42519:36::-;;;;;;;;;;;;;;;;34498:311;;;;;;;;;;-1:-1:-1;34498:311:0;;;;;:::i;:::-;;:::i;45057:297::-;;;;;;;;;;-1:-1:-1;45057:297:0;;;;;:::i;:::-;;:::i;42604:31::-;;;;;;;;;;;;;;;;38913:43;;;;;;;;;;;;;;;;44751:89;;;;;;;;;;-1:-1:-1;44751:89:0;;;;;:::i;:::-;;:::i;33828:186::-;;;;;;;;;;-1:-1:-1;33828:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;33973:25:0;;;33950:4;33973:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33828:186;7782:201;;;;;;;;;;-1:-1:-1;7782:201:0;;;;;:::i;:::-;;:::i;29972:370::-;30099:4;-1:-1:-1;;;;;;30129:40:0;;-1:-1:-1;;;30129:40:0;;:99;;-1:-1:-1;;;;;;;30180:48:0;;-1:-1:-1;;;30180:48:0;30129:99;:160;;;-1:-1:-1;;;;;;;30239:50:0;;-1:-1:-1;;;30239:50:0;30129:160;:207;;;-1:-1:-1;;;;;;;;;;19414:40:0;;;30300:36;30115:221;29972:370;-1:-1:-1;;29972:370:0:o;31698:94::-;31752:13;31781:5;31774:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31698:94;:::o;33223:204::-;33291:7;33315:16;33323:7;35105:4;35135:12;-1:-1:-1;35125:22:0;35048:105;33315:16;33307:74;;;;-1:-1:-1;;;33307:74:0;;16883:2:1;33307:74:0;;;16865:21:1;16922:2;16902:18;;;16895:30;16961:34;16941:18;;;16934:62;-1:-1:-1;;;17012:18:1;;;17005:43;17065:19;;33307:74:0;;;;;;;;;-1:-1:-1;33397:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33397:24:0;;33223:204::o;32786:379::-;32855:13;32871:24;32887:7;32871:15;:24::i;:::-;32855:40;;32916:5;-1:-1:-1;;;;;32910:11:0;:2;-1:-1:-1;;;;;32910:11:0;;;32902:58;;;;-1:-1:-1;;;32902:58:0;;13763:2:1;32902:58:0;;;13745:21:1;13802:2;13782:18;;;13775:30;13841:34;13821:18;;;13814:62;-1:-1:-1;;;13892:18:1;;;13885:32;13934:19;;32902:58:0;13561:398:1;32902:58:0;5677:10;-1:-1:-1;;;;;32985:21:0;;;;:62;;-1:-1:-1;33010:37:0;33027:5;5677:10;33828:186;:::i;33010:37::-;32969:153;;;;-1:-1:-1;;;32969:153:0;;10294:2:1;32969:153:0;;;10276:21:1;10333:2;10313:18;;;10306:30;10372:34;10352:18;;;10345:62;10443:27;10423:18;;;10416:55;10488:19;;32969:153:0;10092:421:1;32969:153:0;33131:28;33140:2;33144:7;33153:5;33131:8;:28::i;:::-;32848:317;32786:379;;:::o;34073:142::-;34181:28;34191:4;34197:2;34201:7;34181:9;:28::i;29164:744::-;29273:7;29308:16;29318:5;29308:9;:16::i;:::-;29300:5;:24;29292:71;;;;-1:-1:-1;;;29292:71:0;;7238:2:1;29292:71:0;;;7220:21:1;7277:2;7257:18;;;7250:30;7316:34;7296:18;;;7289:62;-1:-1:-1;;;7367:18:1;;;7360:32;7409:19;;29292:71:0;7036:398:1;29292:71:0;29370:22;28609:12;;;29370:22;;29490:350;29514:14;29510:1;:18;29490:350;;;29544:31;29578:14;;;:11;:14;;;;;;;;;29544:48;;;;;;;;;-1:-1:-1;;;;;29544:48:0;;;;;-1:-1:-1;;;29544:48:0;;;;;;;;;;;;29605:28;29601:89;;29666:14;;;-1:-1:-1;29601:89:0;29723:5;-1:-1:-1;;;;;29702:26:0;:17;-1:-1:-1;;;;;29702:26:0;;29698:135;;;29760:5;29745:11;:20;29741:59;;;-1:-1:-1;29787:1:0;-1:-1:-1;29780:8:0;;-1:-1:-1;;;29780:8:0;29741:59;29810:13;;;;:::i;:::-;;;;29698:135;-1:-1:-1;29530:3:0;;;;:::i;:::-;;;;29490:350;;;-1:-1:-1;29846:56:0;;-1:-1:-1;;;29846:56:0;;15692:2:1;29846:56:0;;;15674:21:1;15731:2;15711:18;;;15704:30;15770:34;15750:18;;;15743:62;-1:-1:-1;;;15821:18:1;;;15814:44;15875:19;;29846:56:0;15490:410:1;44845:100:0;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;44889:51:::1;::::0;44897:10:::1;::::0;44918:21:::1;44889:51:::0;::::1;;;::::0;::::1;::::0;;;44918:21;44897:10;44889:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44845:100::o:0;34278:157::-;34390:39;34407:4;34413:2;34417:7;34390:39;;;;;;;;;;;;:16;:39::i;28696:177::-;28763:7;28609:12;;28787:5;:21;28779:69;;;;-1:-1:-1;;;28779:69:0;;8459:2:1;28779:69:0;;;8441:21:1;8498:2;8478:18;;;8471:30;8537:34;8517:18;;;8510:62;-1:-1:-1;;;8588:18:1;;;8581:33;8631:19;;28779:69:0;8257:399:1;28779:69:0;-1:-1:-1;28862:5:0;28696:177::o;44476:100::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;44550:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44476:100:::0;:::o;31521:118::-;31585:7;31608:20;31620:7;31608:11;:20::i;:::-;:25;;31521:118;-1:-1:-1;;31521:118:0:o;30398:211::-;30462:7;-1:-1:-1;;;;;30486:19:0;;30478:75;;;;-1:-1:-1;;;30478:75:0;;11056:2:1;30478:75:0;;;11038:21:1;11095:2;11075:18;;;11068:30;11134:34;11114:18;;;11107:62;-1:-1:-1;;;11185:18:1;;;11178:41;11236:19;;30478:75:0;10854:407:1;30478:75:0;-1:-1:-1;;;;;;30575:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30575:27:0;;30398:211::o;44315:93::-;44360:13;44393:7;44386:14;;;;;:::i;7524:103::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;7589:30:::1;7616:1;7589:18;:30::i;:::-;7524:103::o:0;43987:255::-;1847:1;2445:7;;:19;;2437:63;;;;-1:-1:-1;;;2437:63:0;;16107:2:1;2437:63:0;;;16089:21:1;16146:2;16126:18;;;16119:30;16185:33;16165:18;;;16158:61;16236:18;;2437:63:0;15905:355:1;2437:63:0;1847:1;2578:7;:18;42835:12:::1;::::0;::::1;;42827:36;;;::::0;-1:-1:-1;;;42827:36:0;;9612:2:1;42827:36:0::1;::::0;::::1;9594:21:1::0;9651:2;9631:18;;;9624:30;-1:-1:-1;;;9670:18:1;;;9663:41;9721:18;;42827:36:0::1;9410:335:1::0;42827:36:0::1;44110:10:::2;42980:9;;42966:10;42950:13;28586:7:::0;28609:12;;28533:94;42950:13:::2;:26;;;;:::i;:::-;:39;;42942:60;;;::::0;-1:-1:-1;;;42942:60:0;;10720:2:1;42942:60:0::2;::::0;::::2;10702:21:1::0;10759:1;10739:18;;;10732:29;-1:-1:-1;;;10777:18:1;;;10770:38;10825:18;;42942:60:0::2;10518:331:1::0;42942:60:0::2;44149:10:::3;43110:17;;43096:10;:31;;43088:58;;;::::0;-1:-1:-1;;;43088:58:0;;8863:2:1;43088:58:0::3;::::0;::::3;8845:21:1::0;8902:2;8882:18;;;8875:30;-1:-1:-1;;;8921:18:1;;;8914:44;8975:18;;43088:58:0::3;8661:338:1::0;43088:58:0::3;43511:7:::4;::::0;28586;28609:12;43494:24:::4;;43486:50;;;::::0;-1:-1:-1;;;43486:50:0;;9952:2:1;43486:50:0::4;::::0;::::4;9934:21:1::0;9991:2;9971:18;;;9964:30;-1:-1:-1;;;10010:18:1;;;10003:43;10063:18;;43486:50:0::4;9750:337:1::0;43486:50:0::4;44201:33:::5;44211:10;44223;44201:9;:33::i;:::-;-1:-1:-1::0;;1803:1:0;2757:7;:22;-1:-1:-1;43987:255:0:o;44581:79::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;44643:12:::1;::::0;;-1:-1:-1;;44627:28:0;::::1;44643:12;::::0;;::::1;44642:13;44627:28;::::0;;44581:79::o;44665:81::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;44725:5:::1;:16:::0;44665:81::o;31853:98::-;31909:13;31938:7;31931:14;;;;;:::i;43705:274::-;1847:1;2445:7;;:19;;2437:63;;;;-1:-1:-1;;;2437:63:0;;16107:2:1;2437:63:0;;;16089:21:1;16146:2;16126:18;;;16119:30;16185:33;16165:18;;;16158:61;16236:18;;2437:63:0;15905:355:1;2437:63:0;1847:1;2578:7;:18;42835:12:::1;::::0;::::1;;42827:36;;;::::0;-1:-1:-1;;;42827:36:0;;9612:2:1;42827:36:0::1;::::0;::::1;9594:21:1::0;9651:2;9631:18;;;9624:30;-1:-1:-1;;;9670:18:1;;;9663:41;9721:18;;42827:36:0::1;9410:335:1::0;42827:36:0::1;43841:10:::2;42980:9;;42966:10;42950:13;28586:7:::0;28609:12;;28533:94;42950:13:::2;:26;;;;:::i;:::-;:39;;42942:60;;;::::0;-1:-1:-1;;;42942:60:0;;10720:2:1;42942:60:0::2;::::0;::::2;10702:21:1::0;10759:1;10739:18;;;10732:29;-1:-1:-1;;;10777:18:1;;;10770:38;10825:18;;42942:60:0::2;10518:331:1::0;42942:60:0::2;43876:10:::3;43250:13;;43236:10;:27;;43228:49;;;::::0;-1:-1:-1;;;43228:49:0;;12236:2:1;43228:49:0::3;::::0;::::3;12218:21:1::0;12275:1;12255:18;;;12248:29;-1:-1:-1;;;12293:18:1;;;12286:39;12342:18;;43228:49:0::3;12034:332:1::0;43228:49:0::3;43910:10:::4;43390:9;43375:10;43367:5;;:18;;;;:::i;:::-;43366:33;;43358:63;;;::::0;-1:-1:-1;;;43358:63:0;;15346:2:1;43358:63:0::4;::::0;::::4;15328:21:1::0;15385:2;15365:18;;;15358:30;-1:-1:-1;;;15404:18:1;;;15397:47;15461:18;;43358:63:0::4;15144:341:1::0;43358:63:0::4;43938:33:::5;43948:10;43960;43938:9;:33::i;:::-;-1:-1:-1::0;;1803:1:0;2757:7;:22;-1:-1:-1;;43705:274:0:o;33491:::-;-1:-1:-1;;;;;33582:24:0;;5677:10;33582:24;;33574:63;;;;-1:-1:-1;;;33574:63:0;;12989:2:1;33574:63:0;;;12971:21:1;13028:2;13008:18;;;13001:30;13067:28;13047:18;;;13040:56;13113:18;;33574:63:0;12787:350:1;33574:63:0;5677:10;33646:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33646:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33646:53:0;;;;;;;;;;33711:48;;6760:41:1;;;33646:42:0;;5677:10;33711:48;;6733:18:1;33711:48:0;;;;;;;33491:274;;:::o;34498:311::-;34635:28;34645:4;34651:2;34655:7;34635:9;:28::i;:::-;34686:48;34709:4;34715:2;34719:7;34728:5;34686:22;:48::i;:::-;34670:133;;;;-1:-1:-1;;;34670:133:0;;;;;;;:::i;:::-;34498:311;;;;:::o;45057:297::-;45145:13;45179:16;45187:7;35105:4;35135:12;-1:-1:-1;35125:22:0;35048:105;45179:16;45167:87;;;;-1:-1:-1;;;45167:87:0;;12573:2:1;45167:87:0;;;12555:21:1;12612:2;12592:18;;;12585:30;12651:34;12631:18;;;12624:62;-1:-1:-1;;;12702:18:1;;;12695:45;12757:19;;45167:87:0;12371:411:1;45167:87:0;45311:7;45320:18;:7;:16;:18::i;:::-;45294:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45267:82;;45057:297;;;:::o;44751:89::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;44815:7:::1;:20:::0;44751:89::o;7782:201::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7871:22:0;::::1;7863:73;;;::::0;-1:-1:-1;;;7863:73:0;;7641:2:1;7863:73:0::1;::::0;::::1;7623:21:1::0;7680:2;7660:18;;;7653:30;7719:34;7699:18;;;7692:62;-1:-1:-1;;;7770:18:1;;;7763:36;7816:19;;7863:73:0::1;7439:402:1::0;7863:73:0::1;7947:28;7966:8;7947:18;:28::i;38735:172::-:0;38832:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38832:29:0;-1:-1:-1;;;;;38832:29:0;;;;;;;;;38873:28;;38832:24;;38873:28;;;;;;;38735:172;;;:::o;37100:1529::-;37197:35;37235:20;37247:7;37235:11;:20::i;:::-;37306:18;;37197:58;;-1:-1:-1;37264:22:0;;-1:-1:-1;;;;;37290:34:0;5677:10;-1:-1:-1;;;;;37290:34:0;;:81;;;-1:-1:-1;5677:10:0;37335:20;37347:7;37335:11;:20::i;:::-;-1:-1:-1;;;;;37335:36:0;;37290:81;:142;;;-1:-1:-1;37399:18:0;;37382:50;;5677:10;33828:186;:::i;37382:50::-;37264:169;;37458:17;37442:101;;;;-1:-1:-1;;;37442:101:0;;13344:2:1;37442:101:0;;;13326:21:1;13383:2;13363:18;;;13356:30;13422:34;13402:18;;;13395:62;-1:-1:-1;;;13473:18:1;;;13466:48;13531:19;;37442:101:0;13142:414:1;37442:101:0;37590:4;-1:-1:-1;;;;;37568:26:0;:13;:18;;;-1:-1:-1;;;;;37568:26:0;;37552:98;;;;-1:-1:-1;;;37552:98:0;;11468:2:1;37552:98:0;;;11450:21:1;11507:2;11487:18;;;11480:30;11546:34;11526:18;;;11519:62;-1:-1:-1;;;11597:18:1;;;11590:36;11643:19;;37552:98:0;11266:402:1;37552:98:0;-1:-1:-1;;;;;37665:16:0;;37657:66;;;;-1:-1:-1;;;37657:66:0;;9206:2:1;37657:66:0;;;9188:21:1;9245:2;9225:18;;;9218:30;9284:34;9264:18;;;9257:62;-1:-1:-1;;;9335:18:1;;;9328:35;9380:19;;37657:66:0;9004:401:1;37657:66:0;37832:49;37849:1;37853:7;37862:13;:18;;;37832:8;:49::i;:::-;-1:-1:-1;;;;;37890:18:0;;;;;;:12;:18;;;;;:31;;37920:1;;37890:18;:31;;37920:1;;-1:-1:-1;;;;;37890:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;37890:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37928:16:0;;-1:-1:-1;37928:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;37928:16:0;;:29;;-1:-1:-1;;37928:29:0;;:::i;:::-;;;-1:-1:-1;;;;;37928:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37987:43:0;;;;;;;;-1:-1:-1;;;;;37987:43:0;;;;;;38013:15;37987:43;;;;;;;;;-1:-1:-1;37964:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;37964:66:0;-1:-1:-1;;;;;;37964:66:0;;;;;;;;;;;38280:11;37976:7;-1:-1:-1;38280:11:0;:::i;:::-;38343:1;38302:24;;;:11;:24;;;;;:29;38258:33;;-1:-1:-1;;;;;;38302:29:0;38298:236;;38360:20;38368:11;35105:4;35135:12;-1:-1:-1;35125:22:0;35048:105;38360:20;38356:171;;;38420:97;;;;;;;;38447:18;;-1:-1:-1;;;;;38420:97:0;;;;;;38478:28;;;;38420:97;;;;;;;;;;-1:-1:-1;38393:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38393:124:0;-1:-1:-1;;;;;;38393:124:0;;;;;;;;;;;;38356:171;38566:7;38562:2;-1:-1:-1;;;;;38547:27:0;38556:4;-1:-1:-1;;;;;38547:27:0;;;;;;;;;;;38581:42;37190:1439;;;37100:1529;;;:::o;30861:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;30978:16:0;30986:7;35105:4;35135:12;-1:-1:-1;35125:22:0;35048:105;30978:16;30970:71;;;;-1:-1:-1;;;30970:71:0;;8048:2:1;30970:71:0;;;8030:21:1;8087:2;8067:18;;;8060:30;8126:34;8106:18;;;8099:62;-1:-1:-1;;;8177:18:1;;;8170:40;8227:19;;30970:71:0;7846:406:1;30970:71:0;31050:26;31098:12;31087:7;:23;31083:93;;31142:22;31152:12;31142:7;:22;:::i;:::-;:26;;31167:1;31142:26;:::i;:::-;31121:47;;31083:93;31204:7;31184:212;31221:18;31213:4;:26;31184:212;;31258:31;31292:17;;;:11;:17;;;;;;;;;31258:51;;;;;;;;;-1:-1:-1;;;;;31258:51:0;;;;;-1:-1:-1;;;31258:51:0;;;;;;;;;;;;31322:28;31318:71;;31370:9;30861:606;-1:-1:-1;;;;30861:606:0:o;31318:71::-;-1:-1:-1;31241:6:0;;;;:::i;:::-;;;;31184:212;;;-1:-1:-1;31404:57:0;;-1:-1:-1;;;31404:57:0;;16467:2:1;31404:57:0;;;16449:21:1;16506:2;16486:18;;;16479:30;16545:34;16525:18;;;16518:62;-1:-1:-1;;;16596:18:1;;;16589:45;16651:19;;31404:57:0;16265:411:1;8143:191:0;8236:6;;;-1:-1:-1;;;;;8253:17:0;;;-1:-1:-1;;;;;;8253:17:0;;;;;;;8286:40;;8236:6;;;8253:17;8236:6;;8286:40;;8217:16;;8286:40;8206:128;8143:191;:::o;35159:98::-;35224:27;35234:2;35238:8;35224:27;;;;;;;;;;;;:9;:27::i;40450:690::-;40587:4;-1:-1:-1;;;;;40604:13:0;;9484:20;9532:8;40600:535;;40643:72;;-1:-1:-1;;;40643:72:0;;-1:-1:-1;;;;;40643:36:0;;;;;:72;;5677:10;;40694:4;;40700:7;;40709:5;;40643:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40643:72:0;;;;;;;;-1:-1:-1;;40643:72:0;;;;;;;;;;;;:::i;:::-;;;40630:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40874:13:0;;40870:215;;40907:61;;-1:-1:-1;;;40907:61:0;;;;;;;:::i;40870:215::-;41053:6;41047:13;41038:6;41034:2;41030:15;41023:38;40630:464;-1:-1:-1;;;;;;40765:55:0;-1:-1:-1;;;40765:55:0;;-1:-1:-1;40758:62:0;;40600:535;-1:-1:-1;41123:4:0;40600:535;40450:690;;;;;;:::o;3159:723::-;3215:13;3436:10;3432:53;;-1:-1:-1;;3463:10:0;;;;;;;;;;;;-1:-1:-1;;;3463:10:0;;;;;3159:723::o;3432:53::-;3510:5;3495:12;3551:78;3558:9;;3551:78;;3584:8;;;;:::i;:::-;;-1:-1:-1;3607:10:0;;-1:-1:-1;3615:2:0;3607:10;;:::i;:::-;;;3551:78;;;3639:19;3671:6;3661:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3661:17:0;;3639:39;;3689:154;3696:10;;3689:154;;3723:11;3733:1;3723:11;;:::i;:::-;;-1:-1:-1;3792:10:0;3800:2;3792:5;:10;:::i;:::-;3779:24;;:2;:24;:::i;:::-;3766:39;;3749:6;3756;3749:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3749:56:0;;;;;;;;-1:-1:-1;3820:11:0;3829:2;3820:11;;:::i;:::-;;;3689:154;;35596:1272;35701:20;35724:12;-1:-1:-1;;;;;35751:16:0;;35743:62;;;;-1:-1:-1;;;35743:62:0;;14944:2:1;35743:62:0;;;14926:21:1;14983:2;14963:18;;;14956:30;15022:34;15002:18;;;14995:62;-1:-1:-1;;;15073:18:1;;;15066:31;15114:19;;35743:62:0;14742:397:1;35743:62:0;35942:21;35950:12;35105:4;35135:12;-1:-1:-1;35125:22:0;35048:105;35942:21;35941:22;35933:64;;;;-1:-1:-1;;;35933:64:0;;14586:2:1;35933:64:0;;;14568:21:1;14625:2;14605:18;;;14598:30;14664:31;14644:18;;;14637:59;14713:18;;35933:64:0;14384:353:1;35933:64:0;36024:12;36012:8;:24;;36004:71;;;;-1:-1:-1;;;36004:71:0;;17297:2:1;36004:71:0;;;17279:21:1;17336:2;17316:18;;;17309:30;17375:34;17355:18;;;17348:62;-1:-1:-1;;;17426:18:1;;;17419:32;17468:19;;36004:71:0;17095:398:1;36004:71:0;-1:-1:-1;;;;;36187:16:0;;36154:30;36187:16;;;:12;:16;;;;;;;;;36154:49;;;;;;;;;-1:-1:-1;;;;;36154:49:0;;;;;-1:-1:-1;;;36154:49:0;;;;;;;;;;;36229:119;;;;;;;;36249:19;;36154:49;;36229:119;;;36249:39;;36279:8;;36249:39;:::i;:::-;-1:-1:-1;;;;;36229:119:0;;;;;36332:8;36297:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36229:119:0;;;;;;-1:-1:-1;;;;;36210:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36210:138:0;;;;;;;;;;;;36383:43;;;;;;;;;;;36409:15;36383:43;;;;;;;;36355:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36355:71:0;-1:-1:-1;;;;;;36355:71:0;;;;;;;;;;;;;;;;;;36367:12;;36479:281;36503:8;36499:1;:12;36479:281;;;36532:38;;36557:12;;-1:-1:-1;;;;;36532:38:0;;;36549:1;;36532:38;;36549:1;;36532:38;36597:59;36628:1;36632:2;36636:12;36650:5;36597:22;:59::i;:::-;36579:150;;;;-1:-1:-1;;;36579:150:0;;;;;;;:::i;:::-;36738:14;;;;:::i;:::-;;;;36513:3;;;;;:::i;:::-;;;;36479:281;;;-1:-1:-1;36768:12:0;:27;;;36802:60;34498:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;17753:1;17746:14;;;17790:4;17777:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6127:488::-;-1:-1:-1;;;;;6396:15:1;;;6378:34;;6448:15;;6443:2;6428:18;;6421:43;6495:2;6480:18;;6473:34;;;6543:3;6538:2;6523:18;;6516:31;;;6321:4;;6564:45;;6589:19;;6581:6;6564:45;:::i;:::-;6556:53;6127:488;-1:-1:-1;;;;;;6127:488:1:o;6812:219::-;6961:2;6950:9;6943:21;6924:4;6981:44;7021:2;7010:9;7006:18;6998:6;6981:44;:::i;11673:356::-;11875:2;11857:21;;;11894:18;;;11887:30;11953:34;11948:2;11933:18;;11926:62;12020:2;12005:18;;11673:356::o;13964:415::-;14166:2;14148:21;;;14205:2;14185:18;;;14178:30;14244:34;14239:2;14224:18;;14217:62;-1:-1:-1;;;14310:2:1;14295:18;;14288:49;14369:3;14354:19;;13964:415::o;17806:253::-;17846:3;-1:-1:-1;;;;;17935:2:1;17932:1;17928:10;17965:2;17962:1;17958:10;17996:3;17992:2;17988:12;17983:3;17980:21;17977:47;;;18004:18;;:::i;:::-;18040:13;;17806:253;-1:-1:-1;;;;17806:253:1:o;18064:128::-;18104:3;18135:1;18131:6;18128:1;18125:13;18122:39;;;18141:18;;:::i;:::-;-1:-1:-1;18177:9:1;;18064:128::o;18197:120::-;18237:1;18263;18253:35;;18268:18;;:::i;:::-;-1:-1:-1;18302:9:1;;18197:120::o;18322:168::-;18362:7;18428:1;18424;18420:6;18416:14;18413:1;18410:21;18405:1;18398:9;18391:17;18387:45;18384:71;;;18435:18;;:::i;:::-;-1:-1:-1;18475:9:1;;18322:168::o;18495:246::-;18535:4;-1:-1:-1;;;;;18648:10:1;;;;18618;;18670:12;;;18667:38;;;18685:18;;:::i;:::-;18722:13;;18495:246;-1:-1:-1;;;18495:246:1:o;18746:125::-;18786:4;18814:1;18811;18808:8;18805:34;;;18819:18;;:::i;:::-;-1:-1:-1;18856:9:1;;18746:125::o;18876:258::-;18948:1;18958:113;18972:6;18969:1;18966:13;18958:113;;;19048:11;;;19042:18;19029:11;;;19022:39;18994:2;18987:10;18958:113;;;19089:6;19086:1;19083:13;19080:48;;;-1:-1:-1;;19124:1:1;19106:16;;19099:27;18876:258::o;19139:136::-;19178:3;19206:5;19196:39;;19215:18;;:::i;:::-;-1:-1:-1;;;19251:18:1;;19139:136::o;19280:380::-;19359:1;19355:12;;;;19402;;;19423:61;;19477:4;19469:6;19465:17;19455:27;;19423:61;19530:2;19522:6;19519:14;19499:18;19496:38;19493:161;;;19576:10;19571:3;19567:20;19564:1;19557:31;19611:4;19608:1;19601:15;19639:4;19636:1;19629:15;19493:161;;19280:380;;;:::o;19665:135::-;19704:3;-1:-1:-1;;19725:17:1;;19722:43;;;19745:18;;:::i;:::-;-1:-1:-1;19792:1:1;19781:13;;19665:135::o;19805:112::-;19837:1;19863;19853:35;;19868:18;;:::i;:::-;-1:-1:-1;19902:9:1;;19805:112::o;19922:127::-;19983:10;19978:3;19974:20;19971:1;19964:31;20014:4;20011:1;20004:15;20038:4;20035:1;20028:15;20054:127;20115:10;20110:3;20106:20;20103:1;20096:31;20146:4;20143:1;20136:15;20170:4;20167:1;20160:15;20186:127;20247:10;20242:3;20238:20;20235:1;20228:31;20278:4;20275:1;20268:15;20302:4;20299:1;20292:15;20318:127;20379:10;20374:3;20370:20;20367:1;20360:31;20410:4;20407:1;20400:15;20434:4;20431:1;20424:15;20450:131;-1:-1:-1;;;;;;20524:32:1;;20514:43;;20504:71;;20571:1;20568;20561:12

Swarm Source

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