ETH Price: $2,760.49 (+4.59%)

Token

RiseAngle RAM Collection 1 - World of Mazes Epic (RAMc1)
 

Overview

Max Total Supply

0 RAMc1

Holders

137

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 RAMc1
0x92dE4f25753a4ee6690461E64dD839F68c2B0447
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:
RiseAngleMembershipCollection1

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: RiseAngleMembershipCollection1.sol



/*
  _____  _                               _      
 |  __ \(_)            /\               | |     
 | |__) |_ ___  ___   /  \   _ __   __ _| | ___ 
 |  _  /| / __|/ _ \ / /\ \ | '_ \ / _` | |/ _ \
 | | \ \| \__ \  __// ____ \| | | | (_| | |  __/
 |_|  \_\_|___/\___/_/    \_\_| |_|\__, |_|\___|
                                    __/ |       
                                   |___/        
*/

pragma solidity ^0.8.15;



contract RiseAngleMembershipCollection1 is ERC721, Ownable {

    ERC721 RAM1 = ERC721(0xe0d28F01C730ecf1c4197c6DB2439AdFB7b9b96a);
    ERC721 RAM2 = ERC721(0x61436a70A74ab86B69edA00eCe616E72f709912F);

    bool public saleStatus;

    uint256 public constant MAX_RAM1 = 400;

    string private _baseTokenURI;

    modifier checkSaleStatus() {
        require(
            saleStatus,
            "RiseAngle: Sale has not started yet"
        );
        _;
    }

    constructor() Ownable() ERC721("RiseAngle RAM Collection 1 - World of Mazes Epic", "RAMc1") {}

    /**
     * @notice This method is used to mint token
     * @param _tokenId token id to mint
     * @param _type token type to mint
     */
    function mintNFT(uint256 _tokenId, uint8 _type) external checkSaleStatus {
        if(_type == 1) {
            require(
                RAM1.ownerOf(_tokenId) == msg.sender,
                "RiseAngle: You are not owner of token in GEN1"
            );
        } else {
            require(
                RAM2.ownerOf(_tokenId) == msg.sender,
                "RiseAngle: You are not owner of token in GEN2"
            );
        }
        _safeMint(msg.sender, (_type == 1) ? _tokenId : MAX_RAM1 + _tokenId);
    }

    /**
     * @notice This method is used to set base URI
     * @param baseTokenURI_ base URI for nfts
     */
    function setBaseURI(string calldata baseTokenURI_) external onlyOwner {
        _baseTokenURI = baseTokenURI_;
    }

    /**
     * @notice This method is used to toggle sale status
     */
    function toggleSell() external onlyOwner {
        saleStatus = !saleStatus;
    }

    /**
     * @notice This method is used to check token is minted(exist) or not
     * @param _tokenId token id of nft
     */
    function tokenExist(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    /**
     * @notice This method is used to get base URI
     */
    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_RAM1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint8","name":"_type","type":"uint8"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseTokenURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

6080604052600780546001600160a01b031990811673e0d28f01c730ecf1c4197c6db2439adfb7b9b96a17909155600880549091167361436a70a74ab86b69eda00ece616e72f709912f1790553480156200005957600080fd5b5060405180606001604052806030815260200162001d916030913960408051808201909152600581526452414d633160d81b602082015260006200009e8382620001cb565b506001620000ad8282620001cb565b505050620000ca620000c4620000d060201b60201c565b620000d4565b62000297565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015157607f821691505b6020821081036200017257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c657600081815260208120601f850160051c81016020861015620001a15750805b601f850160051c820191505b81811015620001c257828155600101620001ad565b5050505b505050565b81516001600160401b03811115620001e757620001e762000126565b620001ff81620001f884546200013c565b8462000178565b602080601f8311600181146200023757600084156200021e5750858301515b600019600386901b1c1916600185901b178555620001c2565b600085815260208120601f198616915b82811015620002685788860151825594840194600190910190840162000247565b5085821015620002875787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611aea80620002a76000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde14610289578063c87b56dd1461029c578063cc0c5236146102af578063e985e9c5146102c2578063f2fde38b146102fe578063f9020e331461031157600080fd5b8063715018a61461024d57806381a81896146102555780638da5cb5b1461025d57806395d89b411461026e578063a22cb4651461027657600080fd5b806323b872dd1161010a57806323b872dd146101d757806342842e0e146101ea57806355f804b3146101fd5780636352211e146102105780636c2eb3351461022357806370a082311461023a57600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806314620e91146101c4575b600080fd5b61015a6101553660046113fc565b610325565b60405190151581526020015b60405180910390f35b610177610377565b6040516101669190611471565b610197610192366004611484565b610409565b6040516001600160a01b039091168152602001610166565b6101c26101bd3660046114b2565b6104a3565b005b6101c26101d23660046114de565b6105b8565b6101c26101e5366004611514565b610809565b6101c26101f8366004611514565b61083a565b6101c261020b366004611555565b610855565b61019761021e366004611484565b61088c565b61022c61019081565b604051908152602001610166565b61022c6102483660046115c7565b610903565b6101c261098a565b6101c26109c0565b6006546001600160a01b0316610197565b610177610a0b565b6101c26102843660046115e4565b610a1a565b6101c261029736600461162d565b610a25565b6101776102aa366004611484565b610a5d565b61015a6102bd366004611484565b610b38565b61015a6102d036600461170d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c261030c3660046115c7565b610b57565b60085461015a90600160a01b900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061035657506001600160e01b03198216635b5e139f60e01b145b8061037157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546103869061173b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b29061173b565b80156103ff5780601f106103d4576101008083540402835291602001916103ff565b820191906000526020600020905b8154815290600101906020018083116103e257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104ae8261088c565b9050806001600160a01b0316836001600160a01b03160361051b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161047e565b336001600160a01b0382161480610537575061053781336102d0565b6105a95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161047e565b6105b38383610bf2565b505050565b600854600160a01b900460ff1661061d5760405162461bcd60e51b815260206004820152602360248201527f52697365416e676c653a2053616c6520686173206e6f742073746172746564206044820152621e595d60ea1b606482015260840161047e565b8060ff16600103610706576007546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610671573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106959190611775565b6001600160a01b0316146107015760405162461bcd60e51b815260206004820152602d60248201527f52697365416e676c653a20596f7520617265206e6f74206f776e6572206f662060448201526c746f6b656e20696e2047454e3160981b606482015260840161047e565b6107df565b6008546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa15801561074f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107739190611775565b6001600160a01b0316146107df5760405162461bcd60e51b815260206004820152602d60248201527f52697365416e676c653a20596f7520617265206e6f74206f776e6572206f662060448201526c3a37b5b2b71034b71023a2a71960991b606482015260840161047e565b610805338260ff166001146107ff576107fa846101906117a8565b610c60565b83610c60565b5050565b6108133382610c7a565b61082f5760405162461bcd60e51b815260040161047e906117c0565b6105b3838383610d71565b6105b383838360405180602001604052806000815250610a25565b6006546001600160a01b0316331461087f5760405162461bcd60e51b815260040161047e90611811565b60096105b3828483611894565b6000818152600260205260408120546001600160a01b0316806103715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161047e565b60006001600160a01b03821661096e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161047e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109b45760405162461bcd60e51b815260040161047e90611811565b6109be6000610f0d565b565b6006546001600160a01b031633146109ea5760405162461bcd60e51b815260040161047e90611811565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6060600180546103869061173b565b610805338383610f5f565b610a2f3383610c7a565b610a4b5760405162461bcd60e51b815260040161047e906117c0565b610a578484848461102d565b50505050565b6000818152600260205260409020546060906001600160a01b0316610adc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161047e565b6000610ae6611060565b90506000815111610b065760405180602001604052806000815250610b31565b80610b108461106f565b604051602001610b21929190611955565b6040516020818303038152906040525b9392505050565b6000818152600260205260408120546001600160a01b03161515610371565b6006546001600160a01b03163314610b815760405162461bcd60e51b815260040161047e90611811565b6001600160a01b038116610be65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161047e565b610bef81610f0d565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c278261088c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610805828260405180602001604052806000815250611170565b6000818152600260205260408120546001600160a01b0316610cf35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161047e565b6000610cfe8361088c565b9050806001600160a01b0316846001600160a01b03161480610d4557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610d695750836001600160a01b0316610d5e84610409565b6001600160a01b0316145b949350505050565b826001600160a01b0316610d848261088c565b6001600160a01b031614610de85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161047e565b6001600160a01b038216610e4a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161047e565b610e55600082610bf2565b6001600160a01b0383166000908152600360205260408120805460019290610e7e908490611984565b90915550506001600160a01b0382166000908152600360205260408120805460019290610eac9084906117a8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603610fc05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161047e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611038848484610d71565b611044848484846111a3565b610a575760405162461bcd60e51b815260040161047e9061199b565b6060600980546103869061173b565b6060816000036110965750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110c057806110aa816119ed565b91506110b99050600a83611a1c565b915061109a565b60008167ffffffffffffffff8111156110db576110db611617565b6040519080825280601f01601f191660200182016040528015611105576020820181803683370190505b5090505b8415610d695761111a600183611984565b9150611127600a86611a30565b6111329060306117a8565b60f81b81838151811061114757611147611a44565b60200101906001600160f81b031916908160001a905350611169600a86611a1c565b9450611109565b61117a83836112a4565b61118760008484846111a3565b6105b35760405162461bcd60e51b815260040161047e9061199b565b60006001600160a01b0384163b1561129957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111e7903390899088908890600401611a5a565b6020604051808303816000875af1925050508015611222575060408051601f3d908101601f1916820190925261121f91810190611a97565b60015b61127f573d808015611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b5080516000036112775760405162461bcd60e51b815260040161047e9061199b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d69565b506001949350505050565b6001600160a01b0382166112fa5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161047e565b6000818152600260205260409020546001600160a01b03161561135f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161047e565b6001600160a01b03821660009081526003602052604081208054600192906113889084906117a8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610bef57600080fd5b60006020828403121561140e57600080fd5b8135610b31816113e6565b60005b8381101561143457818101518382015260200161141c565b83811115610a575750506000910152565b6000815180845261145d816020860160208601611419565b601f01601f19169290920160200192915050565b602081526000610b316020830184611445565b60006020828403121561149657600080fd5b5035919050565b6001600160a01b0381168114610bef57600080fd5b600080604083850312156114c557600080fd5b82356114d08161149d565b946020939093013593505050565b600080604083850312156114f157600080fd5b82359150602083013560ff8116811461150957600080fd5b809150509250929050565b60008060006060848603121561152957600080fd5b83356115348161149d565b925060208401356115448161149d565b929592945050506040919091013590565b6000806020838503121561156857600080fd5b823567ffffffffffffffff8082111561158057600080fd5b818501915085601f83011261159457600080fd5b8135818111156115a357600080fd5b8660208285010111156115b557600080fd5b60209290920196919550909350505050565b6000602082840312156115d957600080fd5b8135610b318161149d565b600080604083850312156115f757600080fd5b82356116028161149d565b91506020830135801515811461150957600080fd5b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561164357600080fd5b843561164e8161149d565b9350602085013561165e8161149d565b925060408501359150606085013567ffffffffffffffff8082111561168257600080fd5b818701915087601f83011261169657600080fd5b8135818111156116a8576116a8611617565b604051601f8201601f19908116603f011681019083821181831017156116d0576116d0611617565b816040528281528a60208487010111156116e957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561172057600080fd5b823561172b8161149d565b915060208301356115098161149d565b600181811c9082168061174f57607f821691505b60208210810361176f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561178757600080fd5b8151610b318161149d565b634e487b7160e01b600052601160045260246000fd5b600082198211156117bb576117bb611792565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156105b357600081815260208120601f850160051c8101602086101561186d5750805b601f850160051c820191505b8181101561188c57828155600101611879565b505050505050565b67ffffffffffffffff8311156118ac576118ac611617565b6118c0836118ba835461173b565b83611846565b6000601f8411600181146118f457600085156118dc5750838201355b600019600387901b1c1916600186901b17835561194e565b600083815260209020601f19861690835b828110156119255786850135825560209485019460019092019101611905565b50868210156119425760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008351611967818460208801611419565b83519083019061197b818360208801611419565b01949350505050565b60008282101561199657611996611792565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600182016119ff576119ff611792565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611a2b57611a2b611a06565b500490565b600082611a3f57611a3f611a06565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a8d90830184611445565b9695505050505050565b600060208284031215611aa957600080fd5b8151610b31816113e656fea264697066735822122046c44346bf2bb56b1451167d3d499e19c8c33fdc2885cef2b09e92f4e16b185a64736f6c634300080f003352697365416e676c652052414d20436f6c6c656374696f6e2031202d20576f726c64206f66204d617a65732045706963

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde14610289578063c87b56dd1461029c578063cc0c5236146102af578063e985e9c5146102c2578063f2fde38b146102fe578063f9020e331461031157600080fd5b8063715018a61461024d57806381a81896146102555780638da5cb5b1461025d57806395d89b411461026e578063a22cb4651461027657600080fd5b806323b872dd1161010a57806323b872dd146101d757806342842e0e146101ea57806355f804b3146101fd5780636352211e146102105780636c2eb3351461022357806370a082311461023a57600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806314620e91146101c4575b600080fd5b61015a6101553660046113fc565b610325565b60405190151581526020015b60405180910390f35b610177610377565b6040516101669190611471565b610197610192366004611484565b610409565b6040516001600160a01b039091168152602001610166565b6101c26101bd3660046114b2565b6104a3565b005b6101c26101d23660046114de565b6105b8565b6101c26101e5366004611514565b610809565b6101c26101f8366004611514565b61083a565b6101c261020b366004611555565b610855565b61019761021e366004611484565b61088c565b61022c61019081565b604051908152602001610166565b61022c6102483660046115c7565b610903565b6101c261098a565b6101c26109c0565b6006546001600160a01b0316610197565b610177610a0b565b6101c26102843660046115e4565b610a1a565b6101c261029736600461162d565b610a25565b6101776102aa366004611484565b610a5d565b61015a6102bd366004611484565b610b38565b61015a6102d036600461170d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c261030c3660046115c7565b610b57565b60085461015a90600160a01b900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061035657506001600160e01b03198216635b5e139f60e01b145b8061037157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546103869061173b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b29061173b565b80156103ff5780601f106103d4576101008083540402835291602001916103ff565b820191906000526020600020905b8154815290600101906020018083116103e257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104ae8261088c565b9050806001600160a01b0316836001600160a01b03160361051b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161047e565b336001600160a01b0382161480610537575061053781336102d0565b6105a95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161047e565b6105b38383610bf2565b505050565b600854600160a01b900460ff1661061d5760405162461bcd60e51b815260206004820152602360248201527f52697365416e676c653a2053616c6520686173206e6f742073746172746564206044820152621e595d60ea1b606482015260840161047e565b8060ff16600103610706576007546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610671573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106959190611775565b6001600160a01b0316146107015760405162461bcd60e51b815260206004820152602d60248201527f52697365416e676c653a20596f7520617265206e6f74206f776e6572206f662060448201526c746f6b656e20696e2047454e3160981b606482015260840161047e565b6107df565b6008546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa15801561074f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107739190611775565b6001600160a01b0316146107df5760405162461bcd60e51b815260206004820152602d60248201527f52697365416e676c653a20596f7520617265206e6f74206f776e6572206f662060448201526c3a37b5b2b71034b71023a2a71960991b606482015260840161047e565b610805338260ff166001146107ff576107fa846101906117a8565b610c60565b83610c60565b5050565b6108133382610c7a565b61082f5760405162461bcd60e51b815260040161047e906117c0565b6105b3838383610d71565b6105b383838360405180602001604052806000815250610a25565b6006546001600160a01b0316331461087f5760405162461bcd60e51b815260040161047e90611811565b60096105b3828483611894565b6000818152600260205260408120546001600160a01b0316806103715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161047e565b60006001600160a01b03821661096e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161047e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109b45760405162461bcd60e51b815260040161047e90611811565b6109be6000610f0d565b565b6006546001600160a01b031633146109ea5760405162461bcd60e51b815260040161047e90611811565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6060600180546103869061173b565b610805338383610f5f565b610a2f3383610c7a565b610a4b5760405162461bcd60e51b815260040161047e906117c0565b610a578484848461102d565b50505050565b6000818152600260205260409020546060906001600160a01b0316610adc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161047e565b6000610ae6611060565b90506000815111610b065760405180602001604052806000815250610b31565b80610b108461106f565b604051602001610b21929190611955565b6040516020818303038152906040525b9392505050565b6000818152600260205260408120546001600160a01b03161515610371565b6006546001600160a01b03163314610b815760405162461bcd60e51b815260040161047e90611811565b6001600160a01b038116610be65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161047e565b610bef81610f0d565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c278261088c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610805828260405180602001604052806000815250611170565b6000818152600260205260408120546001600160a01b0316610cf35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161047e565b6000610cfe8361088c565b9050806001600160a01b0316846001600160a01b03161480610d4557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610d695750836001600160a01b0316610d5e84610409565b6001600160a01b0316145b949350505050565b826001600160a01b0316610d848261088c565b6001600160a01b031614610de85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161047e565b6001600160a01b038216610e4a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161047e565b610e55600082610bf2565b6001600160a01b0383166000908152600360205260408120805460019290610e7e908490611984565b90915550506001600160a01b0382166000908152600360205260408120805460019290610eac9084906117a8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603610fc05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161047e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611038848484610d71565b611044848484846111a3565b610a575760405162461bcd60e51b815260040161047e9061199b565b6060600980546103869061173b565b6060816000036110965750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110c057806110aa816119ed565b91506110b99050600a83611a1c565b915061109a565b60008167ffffffffffffffff8111156110db576110db611617565b6040519080825280601f01601f191660200182016040528015611105576020820181803683370190505b5090505b8415610d695761111a600183611984565b9150611127600a86611a30565b6111329060306117a8565b60f81b81838151811061114757611147611a44565b60200101906001600160f81b031916908160001a905350611169600a86611a1c565b9450611109565b61117a83836112a4565b61118760008484846111a3565b6105b35760405162461bcd60e51b815260040161047e9061199b565b60006001600160a01b0384163b1561129957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111e7903390899088908890600401611a5a565b6020604051808303816000875af1925050508015611222575060408051601f3d908101601f1916820190925261121f91810190611a97565b60015b61127f573d808015611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b5080516000036112775760405162461bcd60e51b815260040161047e9061199b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d69565b506001949350505050565b6001600160a01b0382166112fa5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161047e565b6000818152600260205260409020546001600160a01b03161561135f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161047e565b6001600160a01b03821660009081526003602052604081208054600192906113889084906117a8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610bef57600080fd5b60006020828403121561140e57600080fd5b8135610b31816113e6565b60005b8381101561143457818101518382015260200161141c565b83811115610a575750506000910152565b6000815180845261145d816020860160208601611419565b601f01601f19169290920160200192915050565b602081526000610b316020830184611445565b60006020828403121561149657600080fd5b5035919050565b6001600160a01b0381168114610bef57600080fd5b600080604083850312156114c557600080fd5b82356114d08161149d565b946020939093013593505050565b600080604083850312156114f157600080fd5b82359150602083013560ff8116811461150957600080fd5b809150509250929050565b60008060006060848603121561152957600080fd5b83356115348161149d565b925060208401356115448161149d565b929592945050506040919091013590565b6000806020838503121561156857600080fd5b823567ffffffffffffffff8082111561158057600080fd5b818501915085601f83011261159457600080fd5b8135818111156115a357600080fd5b8660208285010111156115b557600080fd5b60209290920196919550909350505050565b6000602082840312156115d957600080fd5b8135610b318161149d565b600080604083850312156115f757600080fd5b82356116028161149d565b91506020830135801515811461150957600080fd5b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561164357600080fd5b843561164e8161149d565b9350602085013561165e8161149d565b925060408501359150606085013567ffffffffffffffff8082111561168257600080fd5b818701915087601f83011261169657600080fd5b8135818111156116a8576116a8611617565b604051601f8201601f19908116603f011681019083821181831017156116d0576116d0611617565b816040528281528a60208487010111156116e957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561172057600080fd5b823561172b8161149d565b915060208301356115098161149d565b600181811c9082168061174f57607f821691505b60208210810361176f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561178757600080fd5b8151610b318161149d565b634e487b7160e01b600052601160045260246000fd5b600082198211156117bb576117bb611792565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156105b357600081815260208120601f850160051c8101602086101561186d5750805b601f850160051c820191505b8181101561188c57828155600101611879565b505050505050565b67ffffffffffffffff8311156118ac576118ac611617565b6118c0836118ba835461173b565b83611846565b6000601f8411600181146118f457600085156118dc5750838201355b600019600387901b1c1916600186901b17835561194e565b600083815260209020601f19861690835b828110156119255786850135825560209485019460019092019101611905565b50868210156119425760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008351611967818460208801611419565b83519083019061197b818360208801611419565b01949350505050565b60008282101561199657611996611792565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600182016119ff576119ff611792565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611a2b57611a2b611a06565b500490565b600082611a3f57611a3f611a06565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a8d90830184611445565b9695505050505050565b600060208284031215611aa957600080fd5b8151610b31816113e656fea264697066735822122046c44346bf2bb56b1451167d3d499e19c8c33fdc2885cef2b09e92f4e16b185a64736f6c634300080f0033

Deployed Bytecode Sourcemap

37786:2117:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21648:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21648:305:0;;;;;;;;22593:100;;;:::i;:::-;;;;;;;:::i;24153:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;24153:221:0;1528:203:1;23676:411:0;;;;;;:::i;:::-;;:::i;:::-;;38525:531;;;;;;:::i;:::-;;:::i;24903:339::-;;;;;;:::i;:::-;;:::i;25313:185::-;;;;;;:::i;:::-;;:::i;39181:118::-;;;;;;:::i;:::-;;:::i;22287:239::-;;;;;;:::i;:::-;;:::i;38029:38::-;;38064:3;38029:38;;;;;3738:25:1;;;3726:2;3711:18;38029:38:0;3592:177:1;22017:208:0;;;;;;:::i;:::-;;:::i;36476:103::-;;;:::i;39383:84::-;;;:::i;35825:87::-;35898:6;;-1:-1:-1;;;;;35898:6:0;35825:87;;22762:104;;;:::i;24446:155::-;;;;;;:::i;:::-;;:::i;25569:328::-;;;;;;:::i;:::-;;:::i;22937:334::-;;;;;;:::i;:::-;;:::i;39608:108::-;;;;;;:::i;:::-;;:::i;24672:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24793:25:0;;;24769:4;24793:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24672:164;36734:201;;;;;;:::i;:::-;;:::i;37998:22::-;;;;;-1:-1:-1;;;37998:22:0;;;;;;21648:305;21750:4;-1:-1:-1;;;;;;21787:40:0;;-1:-1:-1;;;21787:40:0;;:105;;-1:-1:-1;;;;;;;21844:48:0;;-1:-1:-1;;;21844:48:0;21787:105;:158;;;-1:-1:-1;;;;;;;;;;13603:40:0;;;21909:36;21767:178;21648:305;-1:-1:-1;;21648:305:0:o;22593:100::-;22647:13;22680:5;22673:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22593:100;:::o;24153:221::-;24229:7;27496:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27496:16:0;24249:73;;;;-1:-1:-1;;;24249:73:0;;6830:2:1;24249:73:0;;;6812:21:1;6869:2;6849:18;;;6842:30;6908:34;6888:18;;;6881:62;-1:-1:-1;;;6959:18:1;;;6952:42;7011:19;;24249:73:0;;;;;;;;;-1:-1:-1;24342:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24342:24:0;;24153:221::o;23676:411::-;23757:13;23773:23;23788:7;23773:14;:23::i;:::-;23757:39;;23821:5;-1:-1:-1;;;;;23815:11:0;:2;-1:-1:-1;;;;;23815:11:0;;23807:57;;;;-1:-1:-1;;;23807:57:0;;7243:2:1;23807:57:0;;;7225:21:1;7282:2;7262:18;;;7255:30;7321:34;7301:18;;;7294:62;-1:-1:-1;;;7372:18:1;;;7365:31;7413:19;;23807:57:0;7041:397:1;23807:57:0;20107:10;-1:-1:-1;;;;;23899:21:0;;;;:62;;-1:-1:-1;23924:37:0;23941:5;20107:10;24672:164;:::i;23924:37::-;23877:168;;;;-1:-1:-1;;;23877:168:0;;7645:2:1;23877:168:0;;;7627:21:1;7684:2;7664:18;;;7657:30;7723:34;7703:18;;;7696:62;7794:26;7774:18;;;7767:54;7838:19;;23877:168:0;7443:420:1;23877:168:0;24058:21;24067:2;24071:7;24058:8;:21::i;:::-;23746:341;23676:411;;:::o;38525:531::-;38173:10;;-1:-1:-1;;;38173:10:0;;;;38151:95;;;;-1:-1:-1;;;38151:95:0;;8070:2:1;38151:95:0;;;8052:21:1;8109:2;8089:18;;;8082:30;8148:34;8128:18;;;8121:62;-1:-1:-1;;;8199:18:1;;;8192:33;8242:19;;38151:95:0;7868:399:1;38151:95:0;38612:5:::1;:10;;38621:1;38612:10:::0;38609:361:::1;;38665:4;::::0;:22:::1;::::0;-1:-1:-1;;;38665:22:0;;::::1;::::0;::::1;3738:25:1::0;;;38691:10:0::1;::::0;-1:-1:-1;;;;;38665:4:0::1;::::0;:12:::1;::::0;3711:18:1;;38665:22:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38665:36:0::1;;38639:143;;;::::0;-1:-1:-1;;;38639:143:0;;8730:2:1;38639:143:0::1;::::0;::::1;8712:21:1::0;8769:2;8749:18;;;8742:30;8808:34;8788:18;;;8781:62;-1:-1:-1;;;8859:18:1;;;8852:43;8912:19;;38639:143:0::1;8528:409:1::0;38639:143:0::1;38609:361;;;38841:4;::::0;:22:::1;::::0;-1:-1:-1;;;38841:22:0;;::::1;::::0;::::1;3738:25:1::0;;;38867:10:0::1;::::0;-1:-1:-1;;;;;38841:4:0::1;::::0;:12:::1;::::0;3711:18:1;;38841:22:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38841:36:0::1;;38815:143;;;::::0;-1:-1:-1;;;38815:143:0;;9144:2:1;38815:143:0::1;::::0;::::1;9126:21:1::0;9183:2;9163:18;;;9156:30;9222:34;9202:18;;;9195:62;-1:-1:-1;;;9273:18:1;;;9266:43;9326:19;;38815:143:0::1;8942:409:1::0;38815:143:0::1;38980:68;38990:10;39003:5;:10;;39012:1;39003:10;39002:45;;39028:19;39039:8:::0;38064:3:::1;39028:19;:::i;:::-;38980:9;:68::i;39002:45::-;39017:8;38980:9;:68::i;:::-;38525:531:::0;;:::o;24903:339::-;25098:41;20107:10;25131:7;25098:18;:41::i;:::-;25090:103;;;;-1:-1:-1;;;25090:103:0;;;;;;;:::i;:::-;25206:28;25216:4;25222:2;25226:7;25206:9;:28::i;25313:185::-;25451:39;25468:4;25474:2;25478:7;25451:39;;;;;;;;;;;;:16;:39::i;39181:118::-;35898:6;;-1:-1:-1;;;;;35898:6:0;20107:10;36045:23;36037:68;;;;-1:-1:-1;;;36037:68:0;;;;;;;:::i;:::-;39262:13:::1;:29;39278:13:::0;;39262;:29:::1;:::i;22287:239::-:0;22359:7;22395:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22395:16:0;;22422:73;;;;-1:-1:-1;;;22422:73:0;;12660:2:1;22422:73:0;;;12642:21:1;12699:2;12679:18;;;12672:30;12738:34;12718:18;;;12711:62;-1:-1:-1;;;12789:18:1;;;12782:39;12838:19;;22422:73:0;12458:405:1;22017:208:0;22089:7;-1:-1:-1;;;;;22117:19:0;;22109:74;;;;-1:-1:-1;;;22109:74:0;;13070:2:1;22109:74:0;;;13052:21:1;13109:2;13089:18;;;13082:30;13148:34;13128:18;;;13121:62;-1:-1:-1;;;13199:18:1;;;13192:40;13249:19;;22109:74:0;12868:406:1;22109:74:0;-1:-1:-1;;;;;;22201:16:0;;;;;:9;:16;;;;;;;22017:208::o;36476:103::-;35898:6;;-1:-1:-1;;;;;35898:6:0;20107:10;36045:23;36037:68;;;;-1:-1:-1;;;36037:68:0;;;;;;;:::i;:::-;36541:30:::1;36568:1;36541:18;:30::i;:::-;36476:103::o:0;39383:84::-;35898:6;;-1:-1:-1;;;;;35898:6:0;20107:10;36045:23;36037:68;;;;-1:-1:-1;;;36037:68:0;;;;;;;:::i;:::-;39449:10:::1;::::0;;-1:-1:-1;;;;39435:24:0;::::1;-1:-1:-1::0;;;39449:10:0;;;::::1;;;39448:11;39435:24:::0;;::::1;;::::0;;39383:84::o;22762:104::-;22818:13;22851:7;22844:14;;;;;:::i;24446:155::-;24541:52;20107:10;24574:8;24584;24541:18;:52::i;25569:328::-;25744:41;20107:10;25777:7;25744:18;:41::i;:::-;25736:103;;;;-1:-1:-1;;;25736:103:0;;;;;;;:::i;:::-;25850:39;25864:4;25870:2;25874:7;25883:5;25850:13;:39::i;:::-;25569:328;;;;:::o;22937:334::-;27472:4;27496:16;;;:7;:16;;;;;;23010:13;;-1:-1:-1;;;;;27496:16:0;23036:76;;;;-1:-1:-1;;;23036:76:0;;13481:2:1;23036:76:0;;;13463:21:1;13520:2;13500:18;;;13493:30;13559:34;13539:18;;;13532:62;-1:-1:-1;;;13610:18:1;;;13603:45;13665:19;;23036:76:0;13279:411:1;23036:76:0;23125:21;23149:10;:8;:10::i;:::-;23125:34;;23201:1;23183:7;23177:21;:25;:86;;;;;;;;;;;;;;;;;23229:7;23238:18;:7;:16;:18::i;:::-;23212:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23177:86;23170:93;22937:334;-1:-1:-1;;;22937:334:0:o;39608:108::-;39667:4;27496:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27496:16:0;:30;;39691:17;27407:127;36734:201;35898:6;;-1:-1:-1;;;;;35898:6:0;20107:10;36045:23;36037:68;;;;-1:-1:-1;;;36037:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36823:22:0;::::1;36815:73;;;::::0;-1:-1:-1;;;36815:73:0;;14372:2:1;36815:73:0::1;::::0;::::1;14354:21:1::0;14411:2;14391:18;;;14384:30;14450:34;14430:18;;;14423:62;-1:-1:-1;;;14501:18:1;;;14494:36;14547:19;;36815:73:0::1;14170:402:1::0;36815:73:0::1;36899:28;36918:8;36899:18;:28::i;:::-;36734:201:::0;:::o;31553:174::-;31628:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31628:29:0;-1:-1:-1;;;;;31628:29:0;;;;;;;;:24;;31682:23;31628:24;31682:14;:23::i;:::-;-1:-1:-1;;;;;31673:46:0;;;;;;;;;;;31553:174;;:::o;28391:110::-;28467:26;28477:2;28481:7;28467:26;;;;;;;;;;;;:9;:26::i;27701:348::-;27794:4;27496:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27496:16:0;27811:73;;;;-1:-1:-1;;;27811:73:0;;14779:2:1;27811:73:0;;;14761:21:1;14818:2;14798:18;;;14791:30;14857:34;14837:18;;;14830:62;-1:-1:-1;;;14908:18:1;;;14901:42;14960:19;;27811:73:0;14577:408:1;27811:73:0;27895:13;27911:23;27926:7;27911:14;:23::i;:::-;27895:39;;27964:5;-1:-1:-1;;;;;27953:16:0;:7;-1:-1:-1;;;;;27953:16:0;;:52;;;-1:-1:-1;;;;;;24793:25:0;;;24769:4;24793:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27973:32;27953:87;;;;28033:7;-1:-1:-1;;;;;28009:31:0;:20;28021:7;28009:11;:20::i;:::-;-1:-1:-1;;;;;28009:31:0;;27953:87;27945:96;27701:348;-1:-1:-1;;;;27701:348:0:o;30810:625::-;30969:4;-1:-1:-1;;;;;30942:31:0;:23;30957:7;30942:14;:23::i;:::-;-1:-1:-1;;;;;30942:31:0;;30934:81;;;;-1:-1:-1;;;30934:81:0;;15192:2:1;30934:81:0;;;15174:21:1;15231:2;15211:18;;;15204:30;15270:34;15250:18;;;15243:62;-1:-1:-1;;;15321:18:1;;;15314:35;15366:19;;30934:81:0;14990:401:1;30934:81:0;-1:-1:-1;;;;;31034:16:0;;31026:65;;;;-1:-1:-1;;;31026:65:0;;15598:2:1;31026:65:0;;;15580:21:1;15637:2;15617:18;;;15610:30;15676:34;15656:18;;;15649:62;-1:-1:-1;;;15727:18:1;;;15720:34;15771:19;;31026:65:0;15396:400:1;31026:65:0;31208:29;31225:1;31229:7;31208:8;:29::i;:::-;-1:-1:-1;;;;;31250:15:0;;;;;;:9;:15;;;;;:20;;31269:1;;31250:15;:20;;31269:1;;31250:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31281:13:0;;;;;;:9;:13;;;;;:18;;31298:1;;31281:13;:18;;31298:1;;31281:18;:::i;:::-;;;;-1:-1:-1;;31310:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31310:21:0;-1:-1:-1;;;;;31310:21:0;;;;;;;;;31349:27;;31310:16;;31349:27;;;;;;;23746:341;23676:411;;:::o;37095:191::-;37188:6;;;-1:-1:-1;;;;;37205:17:0;;;-1:-1:-1;;;;;;37205:17:0;;;;;;;37238:40;;37188:6;;;37205:17;37188:6;;37238:40;;37169:16;;37238:40;37158:128;37095:191;:::o;31869:315::-;32024:8;-1:-1:-1;;;;;32015:17:0;:5;-1:-1:-1;;;;;32015:17:0;;32007:55;;;;-1:-1:-1;;;32007:55:0;;16133:2:1;32007:55:0;;;16115:21:1;16172:2;16152:18;;;16145:30;16211:27;16191:18;;;16184:55;16256:18;;32007:55:0;15931:349:1;32007:55:0;-1:-1:-1;;;;;32073:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32073:46:0;;;;;;;;;;32135:41;;540::1;;;32135::0;;513:18:1;32135:41:0;;;;;;;31869:315;;;:::o;26779:::-;26936:28;26946:4;26952:2;26956:7;26936:9;:28::i;:::-;26983:48;27006:4;27012:2;27016:7;27025:5;26983:22;:48::i;:::-;26975:111;;;;-1:-1:-1;;;26975:111:0;;;;;;;:::i;39794:106::-;39846:13;39879;39872:20;;;;;:::i;396:723::-;452:13;673:5;682:1;673:10;669:53;;-1:-1:-1;;700:10:0;;;;;;;;;;;;-1:-1:-1;;;700:10:0;;;;;396:723::o;669:53::-;747:5;732:12;788:78;795:9;;788:78;;821:8;;;;:::i;:::-;;-1:-1:-1;844:10:0;;-1:-1:-1;852:2:0;844:10;;:::i;:::-;;;788:78;;;876:19;908:6;898:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;898:17:0;;876:39;;926:154;933:10;;926:154;;960:11;970:1;960:11;;:::i;:::-;;-1:-1:-1;1029:10:0;1037:2;1029:5;:10;:::i;:::-;1016:24;;:2;:24;:::i;:::-;1003:39;;986:6;993;986:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;986:56:0;;;;;;;;-1:-1:-1;1057:11:0;1066:2;1057:11;;:::i;:::-;;;926:154;;28728:321;28858:18;28864:2;28868:7;28858:5;:18::i;:::-;28909:54;28940:1;28944:2;28948:7;28957:5;28909:22;:54::i;:::-;28887:154;;;;-1:-1:-1;;;28887:154:0;;;;;;;:::i;32749:799::-;32904:4;-1:-1:-1;;;;;32925:13:0;;3683:19;:23;32921:620;;32961:72;;-1:-1:-1;;;32961:72:0;;-1:-1:-1;;;;;32961:36:0;;;;;:72;;20107:10;;33012:4;;33018:7;;33027:5;;32961:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32961:72:0;;;;;;;;-1:-1:-1;;32961:72:0;;;;;;;;;;;;:::i;:::-;;;32957:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33203:6;:13;33220:1;33203:18;33199:272;;33246:60;;-1:-1:-1;;;33246:60:0;;;;;;;:::i;33199:272::-;33421:6;33415:13;33406:6;33402:2;33398:15;33391:38;32957:529;-1:-1:-1;;;;;;33084:51:0;-1:-1:-1;;;33084:51:0;;-1:-1:-1;33077:58:0;;32921:620;-1:-1:-1;33525:4:0;32749:799;;;;;;:::o;29385:439::-;-1:-1:-1;;;;;29465:16:0;;29457:61;;;;-1:-1:-1;;;29457:61:0;;18300:2:1;29457:61:0;;;18282:21:1;;;18319:18;;;18312:30;18378:34;18358:18;;;18351:62;18430:18;;29457:61:0;18098:356:1;29457:61:0;27472:4;27496:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27496:16:0;:30;29529:58;;;;-1:-1:-1;;;29529:58:0;;18661:2:1;29529:58:0;;;18643:21:1;18700:2;18680:18;;;18673:30;18739;18719:18;;;18712:58;18787:18;;29529:58:0;18459:352:1;29529:58:0;-1:-1:-1;;;;;29658:13:0;;;;;;:9;:13;;;;;:18;;29675:1;;29658:13;:18;;29675:1;;29658:18;:::i;:::-;;;;-1:-1:-1;;29687:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29687:21:0;-1:-1:-1;;;;;29687:21:0;;;;;;;;29726:33;;29687:16;;;29726:33;;29687:16;;29726:33;38525:531;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2192:337::-;2258:6;2266;2319:2;2307:9;2298:7;2294:23;2290:32;2287:52;;;2335:1;2332;2325:12;2287:52;2371:9;2358:23;2348:33;;2431:2;2420:9;2416:18;2403:32;2475:4;2468:5;2464:16;2457:5;2454:27;2444:55;;2495:1;2492;2485:12;2444:55;2518:5;2508:15;;;2192:337;;;;;:::o;2534:456::-;2611:6;2619;2627;2680:2;2668:9;2659:7;2655:23;2651:32;2648:52;;;2696:1;2693;2686:12;2648:52;2735:9;2722:23;2754:31;2779:5;2754:31;:::i;:::-;2804:5;-1:-1:-1;2861:2:1;2846:18;;2833:32;2874:33;2833:32;2874:33;:::i;:::-;2534:456;;2926:7;;-1:-1:-1;;;2980:2:1;2965:18;;;;2952:32;;2534:456::o;2995:592::-;3066:6;3074;3127:2;3115:9;3106:7;3102:23;3098:32;3095:52;;;3143:1;3140;3133:12;3095:52;3183:9;3170:23;3212:18;3253:2;3245:6;3242:14;3239:34;;;3269:1;3266;3259:12;3239:34;3307:6;3296:9;3292:22;3282:32;;3352:7;3345:4;3341:2;3337:13;3333:27;3323:55;;3374:1;3371;3364:12;3323:55;3414:2;3401:16;3440:2;3432:6;3429:14;3426:34;;;3456:1;3453;3446:12;3426:34;3501:7;3496:2;3487:6;3483:2;3479:15;3475:24;3472:37;3469:57;;;3522:1;3519;3512:12;3469:57;3553:2;3545:11;;;;;3575:6;;-1:-1:-1;2995:592:1;;-1:-1:-1;;;;2995:592:1:o;3774:247::-;3833:6;3886:2;3874:9;3865:7;3861:23;3857:32;3854:52;;;3902:1;3899;3892:12;3854:52;3941:9;3928:23;3960:31;3985:5;3960:31;:::i;4026:416::-;4091:6;4099;4152:2;4140:9;4131:7;4127:23;4123:32;4120:52;;;4168:1;4165;4158:12;4120:52;4207:9;4194:23;4226:31;4251:5;4226:31;:::i;:::-;4276:5;-1:-1:-1;4333:2:1;4318:18;;4305:32;4375:15;;4368:23;4356:36;;4346:64;;4406:1;4403;4396:12;4447:127;4508:10;4503:3;4499:20;4496:1;4489:31;4539:4;4536:1;4529:15;4563:4;4560:1;4553:15;4579:1266;4674:6;4682;4690;4698;4751:3;4739:9;4730:7;4726:23;4722:33;4719:53;;;4768:1;4765;4758:12;4719:53;4807:9;4794:23;4826:31;4851:5;4826:31;:::i;:::-;4876:5;-1:-1:-1;4933:2:1;4918:18;;4905:32;4946:33;4905:32;4946:33;:::i;:::-;4998:7;-1:-1:-1;5052:2:1;5037:18;;5024:32;;-1:-1:-1;5107:2:1;5092:18;;5079:32;5130:18;5160:14;;;5157:34;;;5187:1;5184;5177:12;5157:34;5225:6;5214:9;5210:22;5200:32;;5270:7;5263:4;5259:2;5255:13;5251:27;5241:55;;5292:1;5289;5282:12;5241:55;5328:2;5315:16;5350:2;5346;5343:10;5340:36;;;5356:18;;:::i;:::-;5431:2;5425:9;5399:2;5485:13;;-1:-1:-1;;5481:22:1;;;5505:2;5477:31;5473:40;5461:53;;;5529:18;;;5549:22;;;5526:46;5523:72;;;5575:18;;:::i;:::-;5615:10;5611:2;5604:22;5650:2;5642:6;5635:18;5690:7;5685:2;5680;5676;5672:11;5668:20;5665:33;5662:53;;;5711:1;5708;5701:12;5662:53;5767:2;5762;5758;5754:11;5749:2;5741:6;5737:15;5724:46;5812:1;5807:2;5802;5794:6;5790:15;5786:24;5779:35;5833:6;5823:16;;;;;;;4579:1266;;;;;;;:::o;5850:388::-;5918:6;5926;5979:2;5967:9;5958:7;5954:23;5950:32;5947:52;;;5995:1;5992;5985:12;5947:52;6034:9;6021:23;6053:31;6078:5;6053:31;:::i;:::-;6103:5;-1:-1:-1;6160:2:1;6145:18;;6132:32;6173:33;6132:32;6173:33;:::i;6243:380::-;6322:1;6318:12;;;;6365;;;6386:61;;6440:4;6432:6;6428:17;6418:27;;6386:61;6493:2;6485:6;6482:14;6462:18;6459:38;6456:161;;6539:10;6534:3;6530:20;6527:1;6520:31;6574:4;6571:1;6564:15;6602:4;6599:1;6592:15;6456:161;;6243:380;;;:::o;8272:251::-;8342:6;8395:2;8383:9;8374:7;8370:23;8366:32;8363:52;;;8411:1;8408;8401:12;8363:52;8443:9;8437:16;8462:31;8487:5;8462:31;:::i;9356:127::-;9417:10;9412:3;9408:20;9405:1;9398:31;9448:4;9445:1;9438:15;9472:4;9469:1;9462:15;9488:128;9528:3;9559:1;9555:6;9552:1;9549:13;9546:39;;;9565:18;;:::i;:::-;-1:-1:-1;9601:9:1;;9488:128::o;9621:413::-;9823:2;9805:21;;;9862:2;9842:18;;;9835:30;9901:34;9896:2;9881:18;;9874:62;-1:-1:-1;;;9967:2:1;9952:18;;9945:47;10024:3;10009:19;;9621:413::o;10039:356::-;10241:2;10223:21;;;10260:18;;;10253:30;10319:34;10314:2;10299:18;;10292:62;10386:2;10371:18;;10039:356::o;10526:545::-;10628:2;10623:3;10620:11;10617:448;;;10664:1;10689:5;10685:2;10678:17;10734:4;10730:2;10720:19;10804:2;10792:10;10788:19;10785:1;10781:27;10775:4;10771:38;10840:4;10828:10;10825:20;10822:47;;;-1:-1:-1;10863:4:1;10822:47;10918:2;10913:3;10909:12;10906:1;10902:20;10896:4;10892:31;10882:41;;10973:82;10991:2;10984:5;10981:13;10973:82;;;11036:17;;;11017:1;11006:13;10973:82;;;10977:3;;;10526:545;;;:::o;11247:1206::-;11371:18;11366:3;11363:27;11360:53;;;11393:18;;:::i;:::-;11422:94;11512:3;11472:38;11504:4;11498:11;11472:38;:::i;:::-;11466:4;11422:94;:::i;:::-;11542:1;11567:2;11562:3;11559:11;11584:1;11579:616;;;;12239:1;12256:3;12253:93;;;-1:-1:-1;12312:19:1;;;12299:33;12253:93;-1:-1:-1;;11204:1:1;11200:11;;;11196:24;11192:29;11182:40;11228:1;11224:11;;;11179:57;12359:78;;11552:895;;11579:616;10473:1;10466:14;;;10510:4;10497:18;;-1:-1:-1;;11615:17:1;;;11716:9;11738:229;11752:7;11749:1;11746:14;11738:229;;;11841:19;;;11828:33;11813:49;;11948:4;11933:20;;;;11901:1;11889:14;;;;11768:12;11738:229;;;11742:3;11995;11986:7;11983:16;11980:159;;;12119:1;12115:6;12109:3;12103;12100:1;12096:11;12092:21;12088:34;12084:39;12071:9;12066:3;12062:19;12049:33;12045:79;12037:6;12030:95;11980:159;;;12182:1;12176:3;12173:1;12169:11;12165:19;12159:4;12152:33;11552:895;;;11247:1206;;;:::o;13695:470::-;13874:3;13912:6;13906:13;13928:53;13974:6;13969:3;13962:4;13954:6;13950:17;13928:53;:::i;:::-;14044:13;;14003:16;;;;14066:57;14044:13;14003:16;14100:4;14088:17;;14066:57;:::i;:::-;14139:20;;13695:470;-1:-1:-1;;;;13695:470:1:o;15801:125::-;15841:4;15869:1;15866;15863:8;15860:34;;;15874:18;;:::i;:::-;-1:-1:-1;15911:9:1;;15801:125::o;16285:414::-;16487:2;16469:21;;;16526:2;16506:18;;;16499:30;16565:34;16560:2;16545:18;;16538:62;-1:-1:-1;;;16631:2:1;16616:18;;16609:48;16689:3;16674:19;;16285:414::o;16704:135::-;16743:3;16764:17;;;16761:43;;16784:18;;:::i;:::-;-1:-1:-1;16831:1:1;16820:13;;16704:135::o;16844:127::-;16905:10;16900:3;16896:20;16893:1;16886:31;16936:4;16933:1;16926:15;16960:4;16957:1;16950:15;16976:120;17016:1;17042;17032:35;;17047:18;;:::i;:::-;-1:-1:-1;17081:9:1;;16976:120::o;17101:112::-;17133:1;17159;17149:35;;17164:18;;:::i;:::-;-1:-1:-1;17198:9:1;;17101:112::o;17218:127::-;17279:10;17274:3;17270:20;17267:1;17260:31;17310:4;17307:1;17300:15;17334:4;17331:1;17324:15;17350:489;-1:-1:-1;;;;;17619:15:1;;;17601:34;;17671:15;;17666:2;17651:18;;17644:43;17718:2;17703:18;;17696:34;;;17766:3;17761:2;17746:18;;17739:31;;;17544:4;;17787:46;;17813:19;;17805:6;17787:46;:::i;:::-;17779:54;17350:489;-1:-1:-1;;;;;;17350:489:1:o;17844:249::-;17913:6;17966:2;17954:9;17945:7;17941:23;17937:32;17934:52;;;17982:1;17979;17972:12;17934:52;18014:9;18008:16;18033:30;18057:5;18033:30;:::i

Swarm Source

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