ETH Price: $3,128.04 (-0.55%)

Token

RiseAngle Membership (RAM)
 

Overview

Max Total Supply

400 RAM

Holders

118

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vulture1.eth
Balance
1 RAM
0x3F30600669223E9503B66Ad4C1B31aFDC4363A30
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:
RiseAngleMembership

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.6.5 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: GPL-3.0

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/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



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/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



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/utils/[email protected]



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/introspection/[email protected]



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/[email protected]



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 overriden 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/RiseAngle.sol


pragma solidity ^0.8.0;



// import "hardhat/console.sol";

contract RiseAngleMembership is ERC721Enumerable, ERC721URIStorage, Ownable {

    uint256 public MAX_RAMS = 10000;
    uint256 public RESERVED_RAMS = 1500;

    uint256 public PRE_SALE_PRICE = 0.1 ether;

    uint256 public PUBLIC_SALE_PRICE = 0.1 ether;
    uint256 public MAX_PUBLIC_RAMS = 8550;

    uint256 public MAX_RAMS_WALLET = 5;

    uint256 public reservedClaimed;
    uint256 public numRamsMinted;

    string public baseTokenURI;
    string public IPFS_HASH = "QmdP6VwefyuVTz3k7n2AcPv16HxJ3fz3zN23vAkJY9S6ST";

    bool public publicSaleStarted;
    bool public presaleStarted;

    mapping(address => bool) private _presaleEligible;
    mapping(address => uint256) private _totalClaimed;

    event BaseURIChanged(string baseURI);
    event PresaleMint(address minter, uint256 amountOfRams);
    event PublicSaleMint(address minter, uint256 amountOfRams);

    modifier whenPresaleStarted() {
        require(presaleStarted, "Presale has not started");
        _;
    }

    modifier whenPublicSaleStarted() {
        require(publicSaleStarted, "Public sale has not started");
        _;
    }
    
    constructor() ERC721("RiseAngle Membership", "RAM") {
        baseTokenURI = "https://ipfs.io/ipfs/";
    }

    function claimReserved(address recipient, uint256 amount) external onlyOwner {
        require(reservedClaimed != RESERVED_RAMS, "Already have claimed all reserved rams");
        require(reservedClaimed + amount <= RESERVED_RAMS, "Minting would exceed max reserved rams");
        require(recipient != address(0), "Cannot add null address");
        require(totalSupply() < MAX_RAMS, "All tokens have been minted");
        require(totalSupply() + amount <= MAX_RAMS, "Minting would exceed max supply");

        uint256 tokenId = numRamsMinted + 1;
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(recipient, tokenId + i);
            _setTokenURI(tokenId + i, IPFS_HASH);
        }
        numRamsMinted += amount;
        reservedClaimed += amount;
    }

    function addToPresale(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            _presaleEligible[addresses[i]] = true;

            _totalClaimed[addresses[i]] > 0 ? _totalClaimed[addresses[i]] : 0;
        }
    }

    function removeFromPresale(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            _presaleEligible[addresses[i]] = false;

            _totalClaimed[addresses[i]] > 0 ? _totalClaimed[addresses[i]] : 0;
        }
    }

    function checkPresaleEligiblity(address addr) external view returns (bool) {
        return _presaleEligible[addr];
    }

    function amountClaimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "Cannot add null address");

        return _totalClaimed[owner];
    }

    function mintPresale() external payable whenPresaleStarted {
        require(_presaleEligible[msg.sender], "You are not eligible for the presale");
        require(totalSupply() + 1 <= MAX_RAMS, "Minting would exceed max supply");
        require(PRE_SALE_PRICE == msg.value, "ETH amount is incorrect");
        require(_totalClaimed[msg.sender] < 1, "Pre-Sale Purchase exceeds max allowed per wallet");

        uint256 tokenId = numRamsMinted + 1;

        numRamsMinted += 1;
        _totalClaimed[msg.sender] += 1;
        _safeMint(msg.sender, tokenId);
        _setTokenURI(tokenId, IPFS_HASH);

        emit PresaleMint(msg.sender, 1);
    }

    function mint(uint256 amountOfRams) external payable whenPublicSaleStarted {
        require(totalSupply() < MAX_PUBLIC_RAMS, "All Public sale tokens have been minted");
        require(amountOfRams > 0, "Must mint at least one dad");
        require(_totalClaimed[msg.sender] + amountOfRams <= MAX_RAMS_WALLET, "Purchase exceeds max allowed per wallet");
        require(PUBLIC_SALE_PRICE * amountOfRams == msg.value, "ETH amount is incorrect");

        for (uint256 i = 0; i < amountOfRams; i++) {
            uint256 tokenId = numRamsMinted + 1;

            numRamsMinted += 1;
            _totalClaimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId);
            _setTokenURI(tokenId, IPFS_HASH);
        }

        emit PublicSaleMint(msg.sender, amountOfRams);
    }

    function togglePresaleStarted() external onlyOwner {
        presaleStarted = !presaleStarted;
    }

    function togglePublicSaleStarted() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
        emit BaseURIChanged(baseURI);
    }

    function setMAX_RAMS(uint256 _amount) external onlyOwner {
        MAX_RAMS = _amount;
    }

    function setMAX_RAMS_WALLET(uint256 _amount) external onlyOwner {
        MAX_RAMS_WALLET = _amount;
    }

    function setPUBLIC_SALE_PRICE(uint256 _amount) external onlyOwner {
        PUBLIC_SALE_PRICE = _amount;
    }

    function setMAX_PUBLIC_RAMS(uint256 _amount) external onlyOwner {
        MAX_PUBLIC_RAMS = _amount;
    }

    function setPRE_SALE_PRICE(uint256 _amount) external onlyOwner {
        PRE_SALE_PRICE = _amount;
    }

    function setIPFS_HASH(string memory _hash) external onlyOwner {
            IPFS_HASH = _hash;
    }

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

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        (bool success, ) = owner().call{ value: balance }("");
        require(success, "Failed to widthdraw Ether");
    }
    
    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }
    
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }
}

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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURIChanged","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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfRams","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfRams","type":"uint256"}],"name":"PublicSaleMint","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":"IPFS_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_RAMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RAMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RAMS_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_RAMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"amountClaimedBy","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkPresaleEligiblity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfRams","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numRamsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setIPFS_HASH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMAX_PUBLIC_RAMS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMAX_RAMS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMAX_RAMS_WALLET","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPRE_SALE_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPUBLIC_SALE_PRICE","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":"togglePresaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

612710600c556105dc600d5567016345785d8a0000600e819055600f55612166601055600560115560e0604052602e608081815290620037dc60a0398051620000519160159160209091019062000196565b503480156200005f57600080fd5b50604080518082018252601481527f52697365416e676c65204d656d6265727368697000000000000000000000000060208083019182528351808501909452600384526252414d60e81b908401528151919291620000c09160009162000196565b508051620000d690600190602084019062000196565b505050620000f3620000ed6200014060201b60201c565b62000144565b6040805180820190915260158082527f68747470733a2f2f697066732e696f2f697066732f00000000000000000000006020909201918252620001399160149162000196565b5062000279565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a4906200023c565b90600052602060002090601f016020900481019282620001c8576000855562000213565b82601f10620001e357805160ff191683800117855562000213565b8280016001018555821562000213579182015b8281111562000213578251825591602001919060010190620001f6565b506200022192915062000225565b5090565b5b8082111562000221576000815560010162000226565b6002810460018216806200025157607f821691505b602082108114156200027357634e487b7160e01b600052602260045260246000fd5b50919050565b61355380620002896000396000f3fe6080604052600436106102935760003560e01c80637f88402b1161015a578063b123b11b116100c1578063e985e9c51161007a578063e985e9c514610737578063ed1fc2a214610757578063ed426efa1461076c578063f2fde38b14610781578063f3cedb8a146107a1578063fe47fbf3146107c157610293565b8063b123b11b1461069a578063b1b59e6e146106ba578063b88d4fde146106da578063c87b56dd146106fa578063d547cfb71461071a578063db5996981461072f57610293565b80639c816955116101135780639c816955146105f2578063a0712d6814610612578063a22cb46514610625578063a2e9147714610645578063a7b05e821461065a578063aef6ee1f1461067a57610293565b80637f88402b14610569578063853828b61461058957806389fe2a7e1461059e5780638da5cb5b146105b35780638f7c36c0146105c857806395d89b41146105dd57610293565b806323b872dd116101fe57806345a506f9116101b757806345a506f9146104bf5780634f6ccce7146104d457806355f804b3146104f45780636352211e1461051457806370a0823114610534578063715018a61461055457610293565b806323b872dd1461042057806324510043146104405780632f745c59146104555780632f814575146104755780634282930a1461048a57806342842e0e1461049f57610293565b806318160ddd1161025057806318160ddd14610376578063191f65ac1461038b578063193402bb146103ab5780631978f469146103c05780631b5757f2146103e05780631d46859e1461040057610293565b806301ffc9a71461029857806304549d6f146102ce57806306fdde03146102e357806307e89ec014610305578063081812fc14610327578063095ea7b314610354575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612919565b6107d6565b6040516102c59190612a77565b60405180910390f35b3480156102da57600080fd5b506102b86107e9565b3480156102ef57600080fd5b506102f86107f7565b6040516102c59190612a82565b34801561031157600080fd5b5061031a610889565b6040516102c591906133c4565b34801561033357600080fd5b50610347610342366004612997565b61088f565b6040516102c59190612a0d565b34801561036057600080fd5b5061037461036f366004612881565b6108db565b005b34801561038257600080fd5b5061031a610973565b34801561039757600080fd5b506102b86103a6366004612747565b610979565b3480156103b757600080fd5b5061031a610997565b3480156103cc57600080fd5b5061031a6103db366004612747565b61099d565b3480156103ec57600080fd5b506103746103fb366004612881565b6109e1565b34801561040c57600080fd5b5061037461041b366004612997565b610c0b565b34801561042c57600080fd5b5061037461043b366004612793565b610c4f565b34801561044c57600080fd5b5061031a610c87565b34801561046157600080fd5b5061031a610470366004612881565b610c8d565b34801561048157600080fd5b50610374610cdf565b34801561049657600080fd5b5061031a610d32565b3480156104ab57600080fd5b506103746104ba366004612793565b610d38565b3480156104cb57600080fd5b5061031a610d53565b3480156104e057600080fd5b5061031a6104ef366004612997565b610d59565b34801561050057600080fd5b5061037461050f366004612951565b610db4565b34801561052057600080fd5b5061034761052f366004612997565b610e41565b34801561054057600080fd5b5061031a61054f366004612747565b610e76565b34801561056057600080fd5b50610374610eba565b34801561057557600080fd5b50610374610584366004612951565b610f05565b34801561059557600080fd5b50610374610f5b565b3480156105aa57600080fd5b506102f861103b565b3480156105bf57600080fd5b506103476110c9565b3480156105d457600080fd5b5061031a6110d8565b3480156105e957600080fd5b506102f86110de565b3480156105fe57600080fd5b5061037461060d3660046128aa565b6110ed565b610374610620366004612997565b6112ce565b34801561063157600080fd5b50610374610640366004612847565b61145c565b34801561065157600080fd5b506102b861152a565b34801561066657600080fd5b50610374610675366004612997565b611533565b34801561068657600080fd5b506103746106953660046128aa565b611577565b3480156106a657600080fd5b506103746106b5366004612997565b611758565b3480156106c657600080fd5b506103746106d5366004612997565b61179c565b3480156106e657600080fd5b506103746106f53660046127ce565b6117e0565b34801561070657600080fd5b506102f8610715366004612997565b61181f565b34801561072657600080fd5b506102f861182a565b610374611837565b34801561074357600080fd5b506102b8610752366004612761565b6119af565b34801561076357600080fd5b506103746119dd565b34801561077857600080fd5b5061031a611a39565b34801561078d57600080fd5b5061037461079c366004612747565b611a3f565b3480156107ad57600080fd5b506103746107bc366004612997565b611ab0565b3480156107cd57600080fd5b5061031a611af4565b60006107e182611afa565b90505b919050565b601654610100900460ff1681565b6060600080546108069061345b565b80601f01602080910402602001604051908101604052809291908181526020018280546108329061345b565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600f5481565b600061089a82611b1f565b6108bf5760405162461bcd60e51b81526004016108b69061301e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108e682610e41565b9050806001600160a01b0316836001600160a01b0316141561091a5760405162461bcd60e51b81526004016108b6906131eb565b806001600160a01b031661092c611b3c565b6001600160a01b03161480610948575061094881610752611b3c565b6109645760405162461bcd60e51b81526004016108b690612dec565b61096e8383611b40565b505050565b60085490565b6001600160a01b031660009081526017602052604090205460ff1690565b600e5481565b60006001600160a01b0382166109c55760405162461bcd60e51b81526004016108b69061322c565b506001600160a01b031660009081526018602052604090205490565b6109e9611b3c565b6001600160a01b03166109fa6110c9565b6001600160a01b031614610a205760405162461bcd60e51b81526004016108b690613097565b600d546012541415610a445760405162461bcd60e51b81526004016108b6906132b4565b600d5481601254610a5591906133cd565b1115610a735760405162461bcd60e51b81526004016108b690612da6565b6001600160a01b038216610a995760405162461bcd60e51b81526004016108b69061322c565b600c54610aa4610973565b10610ac15760405162461bcd60e51b81526004016108b690613346565b600c5481610acd610973565b610ad791906133cd565b1115610af55760405162461bcd60e51b81526004016108b690612f2a565b60006013546001610b0691906133cd565b905060005b82811015610bd557610b2684610b2183856133cd565b611bae565b610bc3610b3382846133cd565b60158054610b409061345b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6c9061345b565b8015610bb95780601f10610b8e57610100808354040283529160200191610bb9565b820191906000526020600020905b815481529060010190602001808311610b9c57829003601f168201915b5050505050611bc8565b80610bcd81613496565b915050610b0b565b508160136000828254610be891906133cd565b925050819055508160126000828254610c0191906133cd565b9091555050505050565b610c13611b3c565b6001600160a01b0316610c246110c9565b6001600160a01b031614610c4a5760405162461bcd60e51b81526004016108b690613097565b601055565b610c60610c5a611b3c565b82611c0c565b610c7c5760405162461bcd60e51b81526004016108b690613263565b61096e838383611c91565b60125481565b6000610c9883610e76565b8210610cb65760405162461bcd60e51b81526004016108b690612b4a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610ce7611b3c565b6001600160a01b0316610cf86110c9565b6001600160a01b031614610d1e5760405162461bcd60e51b81526004016108b690613097565b6016805460ff19811660ff90911615179055565b600d5481565b61096e838383604051806020016040528060008152506117e0565b600c5481565b6000610d63610973565b8210610d815760405162461bcd60e51b81526004016108b6906132fa565b60088281548110610da257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610dbc611b3c565b6001600160a01b0316610dcd6110c9565b6001600160a01b031614610df35760405162461bcd60e51b81526004016108b690613097565b8051610e06906014906020840190612627565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610e369190612a82565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806107e15760405162461bcd60e51b81526004016108b690612e93565b60006001600160a01b038216610e9e5760405162461bcd60e51b81526004016108b690612e49565b506001600160a01b031660009081526003602052604090205490565b610ec2611b3c565b6001600160a01b0316610ed36110c9565b6001600160a01b031614610ef95760405162461bcd60e51b81526004016108b690613097565b610f036000611dbe565b565b610f0d611b3c565b6001600160a01b0316610f1e6110c9565b6001600160a01b031614610f445760405162461bcd60e51b81526004016108b690613097565b8051610f57906015906020840190612627565b5050565b610f63611b3c565b6001600160a01b0316610f746110c9565b6001600160a01b031614610f9a5760405162461bcd60e51b81526004016108b690613097565b4780610fb85760405162461bcd60e51b81526004016108b69061306a565b6000610fc26110c9565b6001600160a01b031682604051610fd890612a0a565b60006040518083038185875af1925050503d8060008114611015576040519150601f19603f3d011682016040523d82523d6000602084013e61101a565b606091505b5050905080610f575760405162461bcd60e51b81526004016108b690613164565b601580546110489061345b565b80601f01602080910402602001604051908101604052809291908181526020018280546110749061345b565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b505050505081565b600b546001600160a01b031690565b60105481565b6060600180546108069061345b565b6110f5611b3c565b6001600160a01b03166111066110c9565b6001600160a01b03161461112c5760405162461bcd60e51b81526004016108b690613097565b60005b8181101561096e57600083838381811061115957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061116e9190612747565b6001600160a01b031614156111955760405162461bcd60e51b81526004016108b69061322c565b6000601760008585858181106111bb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111d09190612747565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560188185858581811061121e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112339190612747565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116112605760006112bb565b6018600084848481811061128457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112999190612747565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806112c681613496565b91505061112f565b60165460ff166112f05760405162461bcd60e51b81526004016108b690612c64565b6010546112fb610973565b106113185760405162461bcd60e51b81526004016108b690612acc565b600081116113385760405162461bcd60e51b81526004016108b690612b13565b601154336000908152601860205260409020546113569083906133cd565b11156113745760405162461bcd60e51b81526004016108b69061337d565b3481600f5461138391906133f9565b146113a05760405162461bcd60e51b81526004016108b690612f96565b60005b8181101561142a57600060135460016113bc91906133cd565b90506001601360008282546113d191906133cd565b90915550503360009081526018602052604081208054600192906113f69084906133cd565b9091555061140690503382611bae565b6114178160158054610b409061345b565b508061142281613496565b9150506113a3565b507f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b53382604051610e36929190612a5e565b611464611b3c565b6001600160a01b0316826001600160a01b031614156114955760405162461bcd60e51b81526004016108b690612cdf565b80600560006114a2611b3c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114e6611b3c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151e9190612a77565b60405180910390a35050565b60165460ff1681565b61153b611b3c565b6001600160a01b031661154c6110c9565b6001600160a01b0316146115725760405162461bcd60e51b81526004016108b690613097565b601155565b61157f611b3c565b6001600160a01b03166115906110c9565b6001600160a01b0316146115b65760405162461bcd60e51b81526004016108b690613097565b60005b8181101561096e5760008383838181106115e357634e487b7160e01b600052603260045260246000fd5b90506020020160208101906115f89190612747565b6001600160a01b0316141561161f5760405162461bcd60e51b81526004016108b69061322c565b60016017600085858581811061164557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061165a9190612747565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556018818585858181106116a857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116bd9190612747565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116116ea576000611745565b6018600084848481811061170e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117239190612747565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061175081613496565b9150506115b9565b611760611b3c565b6001600160a01b03166117716110c9565b6001600160a01b0316146117975760405162461bcd60e51b81526004016108b690613097565b600c55565b6117a4611b3c565b6001600160a01b03166117b56110c9565b6001600160a01b0316146117db5760405162461bcd60e51b81526004016108b690613097565b600e55565b6117f16117eb611b3c565b83611c0c565b61180d5760405162461bcd60e51b81526004016108b690613263565b61181984848484611e10565b50505050565b60606107e182611e43565b601480546110489061345b565b601654610100900460ff1661185e5760405162461bcd60e51b81526004016108b690612a95565b3360009081526017602052604090205460ff1661188d5760405162461bcd60e51b81526004016108b690612d16565b600c54611898610973565b6118a39060016133cd565b11156118c15760405162461bcd60e51b81526004016108b690612f2a565b34600e54146118e25760405162461bcd60e51b81526004016108b690612f96565b336000908152601860205260409020546001116119115760405162461bcd60e51b81526004016108b69061319b565b6000601354600161192291906133cd565b905060016013600082825461193791906133cd565b909155505033600090815260186020526040812080546001929061195c9084906133cd565b9091555061196c90503382611bae565b61197d8160158054610b409061345b565b7ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3336001604051610e36929190612a5e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6119e5611b3c565b6001600160a01b03166119f66110c9565b6001600160a01b031614611a1c5760405162461bcd60e51b81526004016108b690613097565b6016805461ff001981166101009182900460ff1615909102179055565b60115481565b611a47611b3c565b6001600160a01b0316611a586110c9565b6001600160a01b031614611a7e5760405162461bcd60e51b81526004016108b690613097565b6001600160a01b038116611aa45760405162461bcd60e51b81526004016108b690612be7565b611aad81611dbe565b50565b611ab8611b3c565b6001600160a01b0316611ac96110c9565b6001600160a01b031614611aef5760405162461bcd60e51b81526004016108b690613097565b600f55565b60135481565b60006001600160e01b0319821663780e9d6360e01b14806107e157506107e182611f5c565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b7582610e41565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610f57828260405180602001604052806000815250611f9c565b611bd182611b1f565b611bed5760405162461bcd60e51b81526004016108b690612edc565b6000828152600a60209081526040909120825161096e92840190612627565b6000611c1782611b1f565b611c335760405162461bcd60e51b81526004016108b690612d5a565b6000611c3e83610e41565b9050806001600160a01b0316846001600160a01b03161480611c795750836001600160a01b0316611c6e8461088f565b6001600160a01b0316145b80611c895750611c8981856119af565b949350505050565b826001600160a01b0316611ca482610e41565b6001600160a01b031614611cca5760405162461bcd60e51b81526004016108b6906130cc565b6001600160a01b038216611cf05760405162461bcd60e51b81526004016108b690612c9b565b611cfb838383611fcf565b611d06600082611b40565b6001600160a01b0383166000908152600360205260408120805460019290611d2f908490613418565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d5d9084906133cd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e1b848484611c91565b611e2784848484611fda565b6118195760405162461bcd60e51b81526004016108b690612b95565b6060611e4e82611b1f565b611e6a5760405162461bcd60e51b81526004016108b690612fcd565b6000828152600a602052604081208054611e839061345b565b80601f0160208091040260200160405190810160405280929190818152602001828054611eaf9061345b565b8015611efc5780601f10611ed157610100808354040283529160200191611efc565b820191906000526020600020905b815481529060010190602001808311611edf57829003601f168201915b505050505090506000611f0d6120f5565b9050805160001415611f21575090506107e4565b815115611f53578082604051602001611f3b9291906129db565b604051602081830303815290604052925050506107e4565b611c8984612104565b60006001600160e01b031982166380ac58cd60e01b1480611f8d57506001600160e01b03198216635b5e139f60e01b145b806107e157506107e182612187565b611fa683836121a0565b611fb36000848484611fda565b61096e5760405162461bcd60e51b81526004016108b690612b95565b61096e83838361227f565b6000611fee846001600160a01b0316612308565b156120ea57836001600160a01b031663150b7a0261200a611b3c565b8786866040518563ffffffff1660e01b815260040161202c9493929190612a21565b602060405180830381600087803b15801561204657600080fd5b505af1925050508015612076575060408051601f3d908101601f1916820190925261207391810190612935565b60015b6120d0573d8080156120a4576040519150601f19603f3d011682016040523d82523d6000602084013e6120a9565b606091505b5080516120c85760405162461bcd60e51b81526004016108b690612b95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c89565b506001949350505050565b6060601480546108069061345b565b606061210f82611b1f565b61212b5760405162461bcd60e51b81526004016108b690613115565b60006121356120f5565b905060008151116121555760405180602001604052806000815250612180565b8061215f8461230e565b6040516020016121709291906129db565b6040516020818303038152906040525b9392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b0382166121c65760405162461bcd60e51b81526004016108b690612f61565b6121cf81611b1f565b156121ec5760405162461bcd60e51b81526004016108b690612c2d565b6121f860008383611fcf565b6001600160a01b03821660009081526003602052604081208054600192906122219084906133cd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61228a83838361096e565b6001600160a01b0383166122a6576122a181612429565b6122c9565b816001600160a01b0316836001600160a01b0316146122c9576122c9838261246d565b6001600160a01b0382166122e5576122e08161250a565b61096e565b826001600160a01b0316826001600160a01b03161461096e5761096e82826125e3565b3b151590565b60608161233357506040805180820190915260018152600360fc1b60208201526107e4565b8160005b811561235d578061234781613496565b91506123569050600a836133e5565b9150612337565b60008167ffffffffffffffff81111561238657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123b0576020820181803683370190505b5090505b8415611c89576123c5600183613418565b91506123d2600a866134b1565b6123dd9060306133cd565b60f81b81838151811061240057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612422600a866133e5565b94506123b4565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161247a84610e76565b6124849190613418565b6000838152600760205260409020549091508082146124d7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061251c90600190613418565b6000838152600960205260408120546008805493945090928490811061255257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061258157634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125c757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006125ee83610e76565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546126339061345b565b90600052602060002090601f016020900481019282612655576000855561269b565b82601f1061266e57805160ff191683800117855561269b565b8280016001018555821561269b579182015b8281111561269b578251825591602001919060010190612680565b506126a79291506126ab565b5090565b5b808211156126a757600081556001016126ac565b600067ffffffffffffffff808411156126db576126db6134f1565b604051601f8501601f1916810160200182811182821017156126ff576126ff6134f1565b60405284815291508183850186101561271757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107e457600080fd5b600060208284031215612758578081fd5b61218082612730565b60008060408385031215612773578081fd5b61277c83612730565b915061278a60208401612730565b90509250929050565b6000806000606084860312156127a7578081fd5b6127b084612730565b92506127be60208501612730565b9150604084013590509250925092565b600080600080608085870312156127e3578081fd5b6127ec85612730565b93506127fa60208601612730565b925060408501359150606085013567ffffffffffffffff81111561281c578182fd5b8501601f8101871361282c578182fd5b61283b878235602084016126c0565b91505092959194509250565b60008060408385031215612859578182fd5b61286283612730565b915060208301358015158114612876578182fd5b809150509250929050565b60008060408385031215612893578182fd5b61289c83612730565b946020939093013593505050565b600080602083850312156128bc578182fd5b823567ffffffffffffffff808211156128d3578384fd5b818501915085601f8301126128e6578384fd5b8135818111156128f4578485fd5b8660208083028501011115612907578485fd5b60209290920196919550909350505050565b60006020828403121561292a578081fd5b813561218081613507565b600060208284031215612946578081fd5b815161218081613507565b600060208284031215612962578081fd5b813567ffffffffffffffff811115612978578182fd5b8201601f81018413612988578182fd5b611c89848235602084016126c0565b6000602082840312156129a8578081fd5b5035919050565b600081518084526129c781602086016020860161342f565b601f01601f19169290920160200192915050565b600083516129ed81846020880161342f565b835190830190612a0181836020880161342f565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a54908301846129af565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825261218060208301846129af565b60208082526017908201527f50726573616c6520686173206e6f742073746172746564000000000000000000604082015260600190565b60208082526027908201527f416c6c205075626c69632073616c6520746f6b656e732068617665206265656e604082015266081b5a5b9d195960ca1b606082015260800190565b6020808252601a908201527f4d757374206d696e74206174206c65617374206f6e6520646164000000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f5075626c69632073616c6520686173206e6f7420737461727465640000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560408201526373616c6560e01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526026908201527f4d696e74696e6720776f756c6420657863656564206d61782072657365727665604082015265642072616d7360d01b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526019908201527f4661696c656420746f2077696474686472617720457468657200000000000000604082015260600190565b60208082526030908201527f5072652d53616c652050757263686173652065786365656473206d617820616c60408201526f1b1bddd959081c195c881dd85b1b195d60821b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526026908201527f416c7265616479206861766520636c61696d656420616c6c2072657365727665604082015265642072616d7360d01b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b60208082526027908201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604082015266081dd85b1b195d60ca1b606082015260800190565b90815260200190565b600082198211156133e0576133e06134c5565b500190565b6000826133f4576133f46134db565b500490565b6000816000190483118215151615613413576134136134c5565b500290565b60008282101561342a5761342a6134c5565b500390565b60005b8381101561344a578181015183820152602001613432565b838111156118195750506000910152565b60028104600182168061346f57607f821691505b6020821081141561349057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134aa576134aa6134c5565b5060010190565b6000826134c0576134c06134db565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aad57600080fdfea2646970667358221220e09bbb3d44ba29cd3a97a6faa2df5c3d25762e50bb39434df908e3b8ca24c7aa64736f6c63430008000033516d64503656776566797556547a336b376e3241635076313648784a33667a337a4e323376416b4a593953365354

Deployed Bytecode

0x6080604052600436106102935760003560e01c80637f88402b1161015a578063b123b11b116100c1578063e985e9c51161007a578063e985e9c514610737578063ed1fc2a214610757578063ed426efa1461076c578063f2fde38b14610781578063f3cedb8a146107a1578063fe47fbf3146107c157610293565b8063b123b11b1461069a578063b1b59e6e146106ba578063b88d4fde146106da578063c87b56dd146106fa578063d547cfb71461071a578063db5996981461072f57610293565b80639c816955116101135780639c816955146105f2578063a0712d6814610612578063a22cb46514610625578063a2e9147714610645578063a7b05e821461065a578063aef6ee1f1461067a57610293565b80637f88402b14610569578063853828b61461058957806389fe2a7e1461059e5780638da5cb5b146105b35780638f7c36c0146105c857806395d89b41146105dd57610293565b806323b872dd116101fe57806345a506f9116101b757806345a506f9146104bf5780634f6ccce7146104d457806355f804b3146104f45780636352211e1461051457806370a0823114610534578063715018a61461055457610293565b806323b872dd1461042057806324510043146104405780632f745c59146104555780632f814575146104755780634282930a1461048a57806342842e0e1461049f57610293565b806318160ddd1161025057806318160ddd14610376578063191f65ac1461038b578063193402bb146103ab5780631978f469146103c05780631b5757f2146103e05780631d46859e1461040057610293565b806301ffc9a71461029857806304549d6f146102ce57806306fdde03146102e357806307e89ec014610305578063081812fc14610327578063095ea7b314610354575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612919565b6107d6565b6040516102c59190612a77565b60405180910390f35b3480156102da57600080fd5b506102b86107e9565b3480156102ef57600080fd5b506102f86107f7565b6040516102c59190612a82565b34801561031157600080fd5b5061031a610889565b6040516102c591906133c4565b34801561033357600080fd5b50610347610342366004612997565b61088f565b6040516102c59190612a0d565b34801561036057600080fd5b5061037461036f366004612881565b6108db565b005b34801561038257600080fd5b5061031a610973565b34801561039757600080fd5b506102b86103a6366004612747565b610979565b3480156103b757600080fd5b5061031a610997565b3480156103cc57600080fd5b5061031a6103db366004612747565b61099d565b3480156103ec57600080fd5b506103746103fb366004612881565b6109e1565b34801561040c57600080fd5b5061037461041b366004612997565b610c0b565b34801561042c57600080fd5b5061037461043b366004612793565b610c4f565b34801561044c57600080fd5b5061031a610c87565b34801561046157600080fd5b5061031a610470366004612881565b610c8d565b34801561048157600080fd5b50610374610cdf565b34801561049657600080fd5b5061031a610d32565b3480156104ab57600080fd5b506103746104ba366004612793565b610d38565b3480156104cb57600080fd5b5061031a610d53565b3480156104e057600080fd5b5061031a6104ef366004612997565b610d59565b34801561050057600080fd5b5061037461050f366004612951565b610db4565b34801561052057600080fd5b5061034761052f366004612997565b610e41565b34801561054057600080fd5b5061031a61054f366004612747565b610e76565b34801561056057600080fd5b50610374610eba565b34801561057557600080fd5b50610374610584366004612951565b610f05565b34801561059557600080fd5b50610374610f5b565b3480156105aa57600080fd5b506102f861103b565b3480156105bf57600080fd5b506103476110c9565b3480156105d457600080fd5b5061031a6110d8565b3480156105e957600080fd5b506102f86110de565b3480156105fe57600080fd5b5061037461060d3660046128aa565b6110ed565b610374610620366004612997565b6112ce565b34801561063157600080fd5b50610374610640366004612847565b61145c565b34801561065157600080fd5b506102b861152a565b34801561066657600080fd5b50610374610675366004612997565b611533565b34801561068657600080fd5b506103746106953660046128aa565b611577565b3480156106a657600080fd5b506103746106b5366004612997565b611758565b3480156106c657600080fd5b506103746106d5366004612997565b61179c565b3480156106e657600080fd5b506103746106f53660046127ce565b6117e0565b34801561070657600080fd5b506102f8610715366004612997565b61181f565b34801561072657600080fd5b506102f861182a565b610374611837565b34801561074357600080fd5b506102b8610752366004612761565b6119af565b34801561076357600080fd5b506103746119dd565b34801561077857600080fd5b5061031a611a39565b34801561078d57600080fd5b5061037461079c366004612747565b611a3f565b3480156107ad57600080fd5b506103746107bc366004612997565b611ab0565b3480156107cd57600080fd5b5061031a611af4565b60006107e182611afa565b90505b919050565b601654610100900460ff1681565b6060600080546108069061345b565b80601f01602080910402602001604051908101604052809291908181526020018280546108329061345b565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600f5481565b600061089a82611b1f565b6108bf5760405162461bcd60e51b81526004016108b69061301e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108e682610e41565b9050806001600160a01b0316836001600160a01b0316141561091a5760405162461bcd60e51b81526004016108b6906131eb565b806001600160a01b031661092c611b3c565b6001600160a01b03161480610948575061094881610752611b3c565b6109645760405162461bcd60e51b81526004016108b690612dec565b61096e8383611b40565b505050565b60085490565b6001600160a01b031660009081526017602052604090205460ff1690565b600e5481565b60006001600160a01b0382166109c55760405162461bcd60e51b81526004016108b69061322c565b506001600160a01b031660009081526018602052604090205490565b6109e9611b3c565b6001600160a01b03166109fa6110c9565b6001600160a01b031614610a205760405162461bcd60e51b81526004016108b690613097565b600d546012541415610a445760405162461bcd60e51b81526004016108b6906132b4565b600d5481601254610a5591906133cd565b1115610a735760405162461bcd60e51b81526004016108b690612da6565b6001600160a01b038216610a995760405162461bcd60e51b81526004016108b69061322c565b600c54610aa4610973565b10610ac15760405162461bcd60e51b81526004016108b690613346565b600c5481610acd610973565b610ad791906133cd565b1115610af55760405162461bcd60e51b81526004016108b690612f2a565b60006013546001610b0691906133cd565b905060005b82811015610bd557610b2684610b2183856133cd565b611bae565b610bc3610b3382846133cd565b60158054610b409061345b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6c9061345b565b8015610bb95780601f10610b8e57610100808354040283529160200191610bb9565b820191906000526020600020905b815481529060010190602001808311610b9c57829003601f168201915b5050505050611bc8565b80610bcd81613496565b915050610b0b565b508160136000828254610be891906133cd565b925050819055508160126000828254610c0191906133cd565b9091555050505050565b610c13611b3c565b6001600160a01b0316610c246110c9565b6001600160a01b031614610c4a5760405162461bcd60e51b81526004016108b690613097565b601055565b610c60610c5a611b3c565b82611c0c565b610c7c5760405162461bcd60e51b81526004016108b690613263565b61096e838383611c91565b60125481565b6000610c9883610e76565b8210610cb65760405162461bcd60e51b81526004016108b690612b4a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610ce7611b3c565b6001600160a01b0316610cf86110c9565b6001600160a01b031614610d1e5760405162461bcd60e51b81526004016108b690613097565b6016805460ff19811660ff90911615179055565b600d5481565b61096e838383604051806020016040528060008152506117e0565b600c5481565b6000610d63610973565b8210610d815760405162461bcd60e51b81526004016108b6906132fa565b60088281548110610da257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610dbc611b3c565b6001600160a01b0316610dcd6110c9565b6001600160a01b031614610df35760405162461bcd60e51b81526004016108b690613097565b8051610e06906014906020840190612627565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610e369190612a82565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806107e15760405162461bcd60e51b81526004016108b690612e93565b60006001600160a01b038216610e9e5760405162461bcd60e51b81526004016108b690612e49565b506001600160a01b031660009081526003602052604090205490565b610ec2611b3c565b6001600160a01b0316610ed36110c9565b6001600160a01b031614610ef95760405162461bcd60e51b81526004016108b690613097565b610f036000611dbe565b565b610f0d611b3c565b6001600160a01b0316610f1e6110c9565b6001600160a01b031614610f445760405162461bcd60e51b81526004016108b690613097565b8051610f57906015906020840190612627565b5050565b610f63611b3c565b6001600160a01b0316610f746110c9565b6001600160a01b031614610f9a5760405162461bcd60e51b81526004016108b690613097565b4780610fb85760405162461bcd60e51b81526004016108b69061306a565b6000610fc26110c9565b6001600160a01b031682604051610fd890612a0a565b60006040518083038185875af1925050503d8060008114611015576040519150601f19603f3d011682016040523d82523d6000602084013e61101a565b606091505b5050905080610f575760405162461bcd60e51b81526004016108b690613164565b601580546110489061345b565b80601f01602080910402602001604051908101604052809291908181526020018280546110749061345b565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b505050505081565b600b546001600160a01b031690565b60105481565b6060600180546108069061345b565b6110f5611b3c565b6001600160a01b03166111066110c9565b6001600160a01b03161461112c5760405162461bcd60e51b81526004016108b690613097565b60005b8181101561096e57600083838381811061115957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061116e9190612747565b6001600160a01b031614156111955760405162461bcd60e51b81526004016108b69061322c565b6000601760008585858181106111bb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111d09190612747565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560188185858581811061121e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112339190612747565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116112605760006112bb565b6018600084848481811061128457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112999190612747565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806112c681613496565b91505061112f565b60165460ff166112f05760405162461bcd60e51b81526004016108b690612c64565b6010546112fb610973565b106113185760405162461bcd60e51b81526004016108b690612acc565b600081116113385760405162461bcd60e51b81526004016108b690612b13565b601154336000908152601860205260409020546113569083906133cd565b11156113745760405162461bcd60e51b81526004016108b69061337d565b3481600f5461138391906133f9565b146113a05760405162461bcd60e51b81526004016108b690612f96565b60005b8181101561142a57600060135460016113bc91906133cd565b90506001601360008282546113d191906133cd565b90915550503360009081526018602052604081208054600192906113f69084906133cd565b9091555061140690503382611bae565b6114178160158054610b409061345b565b508061142281613496565b9150506113a3565b507f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b53382604051610e36929190612a5e565b611464611b3c565b6001600160a01b0316826001600160a01b031614156114955760405162461bcd60e51b81526004016108b690612cdf565b80600560006114a2611b3c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114e6611b3c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151e9190612a77565b60405180910390a35050565b60165460ff1681565b61153b611b3c565b6001600160a01b031661154c6110c9565b6001600160a01b0316146115725760405162461bcd60e51b81526004016108b690613097565b601155565b61157f611b3c565b6001600160a01b03166115906110c9565b6001600160a01b0316146115b65760405162461bcd60e51b81526004016108b690613097565b60005b8181101561096e5760008383838181106115e357634e487b7160e01b600052603260045260246000fd5b90506020020160208101906115f89190612747565b6001600160a01b0316141561161f5760405162461bcd60e51b81526004016108b69061322c565b60016017600085858581811061164557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061165a9190612747565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556018818585858181106116a857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116bd9190612747565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116116ea576000611745565b6018600084848481811061170e57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117239190612747565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061175081613496565b9150506115b9565b611760611b3c565b6001600160a01b03166117716110c9565b6001600160a01b0316146117975760405162461bcd60e51b81526004016108b690613097565b600c55565b6117a4611b3c565b6001600160a01b03166117b56110c9565b6001600160a01b0316146117db5760405162461bcd60e51b81526004016108b690613097565b600e55565b6117f16117eb611b3c565b83611c0c565b61180d5760405162461bcd60e51b81526004016108b690613263565b61181984848484611e10565b50505050565b60606107e182611e43565b601480546110489061345b565b601654610100900460ff1661185e5760405162461bcd60e51b81526004016108b690612a95565b3360009081526017602052604090205460ff1661188d5760405162461bcd60e51b81526004016108b690612d16565b600c54611898610973565b6118a39060016133cd565b11156118c15760405162461bcd60e51b81526004016108b690612f2a565b34600e54146118e25760405162461bcd60e51b81526004016108b690612f96565b336000908152601860205260409020546001116119115760405162461bcd60e51b81526004016108b69061319b565b6000601354600161192291906133cd565b905060016013600082825461193791906133cd565b909155505033600090815260186020526040812080546001929061195c9084906133cd565b9091555061196c90503382611bae565b61197d8160158054610b409061345b565b7ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3336001604051610e36929190612a5e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6119e5611b3c565b6001600160a01b03166119f66110c9565b6001600160a01b031614611a1c5760405162461bcd60e51b81526004016108b690613097565b6016805461ff001981166101009182900460ff1615909102179055565b60115481565b611a47611b3c565b6001600160a01b0316611a586110c9565b6001600160a01b031614611a7e5760405162461bcd60e51b81526004016108b690613097565b6001600160a01b038116611aa45760405162461bcd60e51b81526004016108b690612be7565b611aad81611dbe565b50565b611ab8611b3c565b6001600160a01b0316611ac96110c9565b6001600160a01b031614611aef5760405162461bcd60e51b81526004016108b690613097565b600f55565b60135481565b60006001600160e01b0319821663780e9d6360e01b14806107e157506107e182611f5c565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b7582610e41565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610f57828260405180602001604052806000815250611f9c565b611bd182611b1f565b611bed5760405162461bcd60e51b81526004016108b690612edc565b6000828152600a60209081526040909120825161096e92840190612627565b6000611c1782611b1f565b611c335760405162461bcd60e51b81526004016108b690612d5a565b6000611c3e83610e41565b9050806001600160a01b0316846001600160a01b03161480611c795750836001600160a01b0316611c6e8461088f565b6001600160a01b0316145b80611c895750611c8981856119af565b949350505050565b826001600160a01b0316611ca482610e41565b6001600160a01b031614611cca5760405162461bcd60e51b81526004016108b6906130cc565b6001600160a01b038216611cf05760405162461bcd60e51b81526004016108b690612c9b565b611cfb838383611fcf565b611d06600082611b40565b6001600160a01b0383166000908152600360205260408120805460019290611d2f908490613418565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d5d9084906133cd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e1b848484611c91565b611e2784848484611fda565b6118195760405162461bcd60e51b81526004016108b690612b95565b6060611e4e82611b1f565b611e6a5760405162461bcd60e51b81526004016108b690612fcd565b6000828152600a602052604081208054611e839061345b565b80601f0160208091040260200160405190810160405280929190818152602001828054611eaf9061345b565b8015611efc5780601f10611ed157610100808354040283529160200191611efc565b820191906000526020600020905b815481529060010190602001808311611edf57829003601f168201915b505050505090506000611f0d6120f5565b9050805160001415611f21575090506107e4565b815115611f53578082604051602001611f3b9291906129db565b604051602081830303815290604052925050506107e4565b611c8984612104565b60006001600160e01b031982166380ac58cd60e01b1480611f8d57506001600160e01b03198216635b5e139f60e01b145b806107e157506107e182612187565b611fa683836121a0565b611fb36000848484611fda565b61096e5760405162461bcd60e51b81526004016108b690612b95565b61096e83838361227f565b6000611fee846001600160a01b0316612308565b156120ea57836001600160a01b031663150b7a0261200a611b3c565b8786866040518563ffffffff1660e01b815260040161202c9493929190612a21565b602060405180830381600087803b15801561204657600080fd5b505af1925050508015612076575060408051601f3d908101601f1916820190925261207391810190612935565b60015b6120d0573d8080156120a4576040519150601f19603f3d011682016040523d82523d6000602084013e6120a9565b606091505b5080516120c85760405162461bcd60e51b81526004016108b690612b95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c89565b506001949350505050565b6060601480546108069061345b565b606061210f82611b1f565b61212b5760405162461bcd60e51b81526004016108b690613115565b60006121356120f5565b905060008151116121555760405180602001604052806000815250612180565b8061215f8461230e565b6040516020016121709291906129db565b6040516020818303038152906040525b9392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b0382166121c65760405162461bcd60e51b81526004016108b690612f61565b6121cf81611b1f565b156121ec5760405162461bcd60e51b81526004016108b690612c2d565b6121f860008383611fcf565b6001600160a01b03821660009081526003602052604081208054600192906122219084906133cd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61228a83838361096e565b6001600160a01b0383166122a6576122a181612429565b6122c9565b816001600160a01b0316836001600160a01b0316146122c9576122c9838261246d565b6001600160a01b0382166122e5576122e08161250a565b61096e565b826001600160a01b0316826001600160a01b03161461096e5761096e82826125e3565b3b151590565b60608161233357506040805180820190915260018152600360fc1b60208201526107e4565b8160005b811561235d578061234781613496565b91506123569050600a836133e5565b9150612337565b60008167ffffffffffffffff81111561238657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123b0576020820181803683370190505b5090505b8415611c89576123c5600183613418565b91506123d2600a866134b1565b6123dd9060306133cd565b60f81b81838151811061240057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612422600a866133e5565b94506123b4565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161247a84610e76565b6124849190613418565b6000838152600760205260409020549091508082146124d7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061251c90600190613418565b6000838152600960205260408120546008805493945090928490811061255257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061258157634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125c757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006125ee83610e76565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546126339061345b565b90600052602060002090601f016020900481019282612655576000855561269b565b82601f1061266e57805160ff191683800117855561269b565b8280016001018555821561269b579182015b8281111561269b578251825591602001919060010190612680565b506126a79291506126ab565b5090565b5b808211156126a757600081556001016126ac565b600067ffffffffffffffff808411156126db576126db6134f1565b604051601f8501601f1916810160200182811182821017156126ff576126ff6134f1565b60405284815291508183850186101561271757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107e457600080fd5b600060208284031215612758578081fd5b61218082612730565b60008060408385031215612773578081fd5b61277c83612730565b915061278a60208401612730565b90509250929050565b6000806000606084860312156127a7578081fd5b6127b084612730565b92506127be60208501612730565b9150604084013590509250925092565b600080600080608085870312156127e3578081fd5b6127ec85612730565b93506127fa60208601612730565b925060408501359150606085013567ffffffffffffffff81111561281c578182fd5b8501601f8101871361282c578182fd5b61283b878235602084016126c0565b91505092959194509250565b60008060408385031215612859578182fd5b61286283612730565b915060208301358015158114612876578182fd5b809150509250929050565b60008060408385031215612893578182fd5b61289c83612730565b946020939093013593505050565b600080602083850312156128bc578182fd5b823567ffffffffffffffff808211156128d3578384fd5b818501915085601f8301126128e6578384fd5b8135818111156128f4578485fd5b8660208083028501011115612907578485fd5b60209290920196919550909350505050565b60006020828403121561292a578081fd5b813561218081613507565b600060208284031215612946578081fd5b815161218081613507565b600060208284031215612962578081fd5b813567ffffffffffffffff811115612978578182fd5b8201601f81018413612988578182fd5b611c89848235602084016126c0565b6000602082840312156129a8578081fd5b5035919050565b600081518084526129c781602086016020860161342f565b601f01601f19169290920160200192915050565b600083516129ed81846020880161342f565b835190830190612a0181836020880161342f565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a54908301846129af565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825261218060208301846129af565b60208082526017908201527f50726573616c6520686173206e6f742073746172746564000000000000000000604082015260600190565b60208082526027908201527f416c6c205075626c69632073616c6520746f6b656e732068617665206265656e604082015266081b5a5b9d195960ca1b606082015260800190565b6020808252601a908201527f4d757374206d696e74206174206c65617374206f6e6520646164000000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f5075626c69632073616c6520686173206e6f7420737461727465640000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560408201526373616c6560e01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526026908201527f4d696e74696e6720776f756c6420657863656564206d61782072657365727665604082015265642072616d7360d01b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526019908201527f4661696c656420746f2077696474686472617720457468657200000000000000604082015260600190565b60208082526030908201527f5072652d53616c652050757263686173652065786365656473206d617820616c60408201526f1b1bddd959081c195c881dd85b1b195d60821b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526026908201527f416c7265616479206861766520636c61696d656420616c6c2072657365727665604082015265642072616d7360d01b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b60208082526027908201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604082015266081dd85b1b195d60ca1b606082015260800190565b90815260200190565b600082198211156133e0576133e06134c5565b500190565b6000826133f4576133f46134db565b500490565b6000816000190483118215151615613413576134136134c5565b500290565b60008282101561342a5761342a6134c5565b500390565b60005b8381101561344a578181015183820152602001613432565b838111156118195750506000910152565b60028104600182168061346f57607f821691505b6020821081141561349057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134aa576134aa6134c5565b5060010190565b6000826134c0576134c06134db565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aad57600080fdfea2646970667358221220e09bbb3d44ba29cd3a97a6faa2df5c3d25762e50bb39434df908e3b8ca24c7aa64736f6c63430008000033

Deployed Bytecode Sourcemap

45330:6850:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51757:212;;;;;;;;;;-1:-1:-1;51757:212:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45913:26;;;;;;;;;;;;;:::i;21751:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45547:44::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23310:221::-;;;;;;;;;;-1:-1:-1;23310:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22833:411::-;;;;;;;;;;-1:-1:-1;22833:411:0;;;;;:::i;:::-;;:::i;:::-;;35502:113;;;;;;;;;;;;;:::i;48147:123::-;;;;;;;;;;-1:-1:-1;48147:123:0;;;;;:::i;:::-;;:::i;45497:41::-;;;;;;;;;;;;;:::i;48278:186::-;;;;;;;;;;-1:-1:-1;48278:186:0;;;;;:::i;:::-;;:::i;46603:792::-;;;;;;;;;;-1:-1:-1;46603:792:0;;;;;:::i;:::-;;:::i;50669:108::-;;;;;;;;;;-1:-1:-1;50669:108:0;;;;;:::i;:::-;;:::i;24200:339::-;;;;;;;;;;-1:-1:-1;24200:339:0;;;;;:::i;:::-;;:::i;45687:30::-;;;;;;;;;;;;;:::i;35170:256::-;;;;;;;;;;-1:-1:-1;35170:256:0;;;;;:::i;:::-;;:::i;50064:111::-;;;;;;;;;;;;;:::i;45453:35::-;;;;;;;;;;;;;:::i;24610:185::-;;;;;;;;;;-1:-1:-1;24610:185:0;;;;;:::i;:::-;;:::i;45415:31::-;;;;;;;;;;;;;:::i;35692:233::-;;;;;;;;;;-1:-1:-1;35692:233:0;;;;;:::i;:::-;;:::i;50183:140::-;;;;;;;;;;-1:-1:-1;50183:140:0;;;;;:::i;:::-;;:::i;21445:239::-;;;;;;;;;;-1:-1:-1;21445:239:0;;;;;:::i;:::-;;:::i;21175:208::-;;;;;;;;;;-1:-1:-1;21175:208:0;;;;;:::i;:::-;;:::i;44595:94::-;;;;;;;;;;;;;:::i;50899:102::-;;;;;;;;;;-1:-1:-1;50899:102:0;;;;;:::i;:::-;;:::i;51130:272::-;;;;;;;;;;;;;:::i;45794:74::-;;;;;;;;;;;;;:::i;43944:87::-;;;;;;;;;;;;;:::i;45598:37::-;;;;;;;;;;;;;:::i;21920:104::-;;;;;;;;;;;;;:::i;47772:367::-;;;;;;;;;;-1:-1:-1;47772:367:0;;;;;:::i;:::-;;:::i;49142:804::-;;;;;;:::i;:::-;;:::i;23603:295::-;;;;;;;;;;-1:-1:-1;23603:295:0;;;;;:::i;:::-;;:::i;45877:29::-;;;;;;;;;;;;;:::i;50433:108::-;;;;;;;;;;-1:-1:-1;50433:108:0;;;;;:::i;:::-;;:::i;47403:361::-;;;;;;;;;;-1:-1:-1;47403:361:0;;;;;:::i;:::-;;:::i;50331:94::-;;;;;;;;;;-1:-1:-1;50331:94:0;;;;;:::i;:::-;;:::i;50785:106::-;;;;;;;;;;-1:-1:-1;50785:106:0;;;;;:::i;:::-;;:::i;24866:328::-;;;;;;;;;;-1:-1:-1;24866:328:0;;;;;:::i;:::-;;:::i;51981:196::-;;;;;;;;;;-1:-1:-1;51981:196:0;;;;;:::i;:::-;;:::i;45761:26::-;;;;;;;;;;;;;:::i;48472:662::-;;;:::i;23969:164::-;;;;;;;;;;-1:-1:-1;23969:164:0;;;;;:::i;:::-;;:::i;49954:102::-;;;;;;;;;;;;;:::i;45644:34::-;;;;;;;;;;;;;:::i;44844:192::-;;;;;;;;;;-1:-1:-1;44844:192:0;;;;;:::i;:::-;;:::i;50549:112::-;;;;;;;;;;-1:-1:-1;50549:112:0;;;;;:::i;:::-;;:::i;45724:28::-;;;;;;;;;;;;;:::i;51757:212::-;51896:4;51925:36;51949:11;51925:23;:36::i;:::-;51918:43;;51757:212;;;;:::o;45913:26::-;;;;;;;;;:::o;21751:100::-;21805:13;21838:5;21831:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21751:100;:::o;45547:44::-;;;;:::o;23310:221::-;23386:7;23414:16;23422:7;23414;:16::i;:::-;23406:73;;;;-1:-1:-1;;;23406:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23499:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23499:24:0;;23310:221::o;22833:411::-;22914:13;22930:23;22945:7;22930:14;:23::i;:::-;22914:39;;22978:5;-1:-1:-1;;;;;22972:11:0;:2;-1:-1:-1;;;;;22972:11:0;;;22964:57;;;;-1:-1:-1;;;22964:57:0;;;;;;;:::i;:::-;23072:5;-1:-1:-1;;;;;23056:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23056:21:0;;:62;;;;23081:37;23098:5;23105:12;:10;:12::i;23081:37::-;23034:168;;;;-1:-1:-1;;;23034:168:0;;;;;;;:::i;:::-;23215:21;23224:2;23228:7;23215:8;:21::i;:::-;22833:411;;;:::o;35502:113::-;35590:10;:17;35502:113;:::o;48147:123::-;-1:-1:-1;;;;;48240:22:0;48216:4;48240:22;;;:16;:22;;;;;;;;;48147:123::o;45497:41::-;;;;:::o;48278:186::-;48341:7;-1:-1:-1;;;;;48369:19:0;;48361:55;;;;-1:-1:-1;;;48361:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;48436:20:0;;;;;:13;:20;;;;;;;48278:186::o;46603:792::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;46718:13:::1;;46699:15;;:32;;46691:83;;;;-1:-1:-1::0;;;46691:83:0::1;;;;;;;:::i;:::-;46821:13;;46811:6;46793:15;;:24;;;;:::i;:::-;:41;;46785:92;;;;-1:-1:-1::0;;;46785:92:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46896:23:0;::::1;46888:59;;;;-1:-1:-1::0;;;46888:59:0::1;;;;;;;:::i;:::-;46982:8;;46966:13;:11;:13::i;:::-;:24;46958:64;;;;-1:-1:-1::0;;;46958:64:0::1;;;;;;;:::i;:::-;47067:8;;47057:6;47041:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;47033:78;;;;-1:-1:-1::0;;;47033:78:0::1;;;;;;;:::i;:::-;47124:15;47142:13;;47158:1;47142:17;;;;:::i;:::-;47124:35;;47175:9;47170:148;47194:6;47190:1;:10;47170:148;;;47222:33;47232:9:::0;47243:11:::1;47253:1:::0;47243:7;:11:::1;:::i;:::-;47222:9;:33::i;:::-;47270:36;47283:11;47293:1:::0;47283:7;:11:::1;:::i;:::-;47296:9;47270:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:36::i;:::-;47202:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47170:148;;;;47345:6;47328:13;;:23;;;;;;;:::i;:::-;;;;;;;;47381:6;47362:15;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;46603:792:0:o;50669:108::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;50744:15:::1;:25:::0;50669:108::o;24200:339::-;24395:41;24414:12;:10;:12::i;:::-;24428:7;24395:18;:41::i;:::-;24387:103;;;;-1:-1:-1;;;24387:103:0;;;;;;;:::i;:::-;24503:28;24513:4;24519:2;24523:7;24503:9;:28::i;45687:30::-;;;;:::o;35170:256::-;35267:7;35303:23;35320:5;35303:16;:23::i;:::-;35295:5;:31;35287:87;;;;-1:-1:-1;;;35287:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35392:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35170:256::o;50064:111::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;50150:17:::1;::::0;;-1:-1:-1;;50129:38:0;::::1;50150:17;::::0;;::::1;50149:18;50129:38;::::0;;50064:111::o;45453:35::-;;;;:::o;24610:185::-;24748:39;24765:4;24771:2;24775:7;24748:39;;;;;;;;;;;;:16;:39::i;45415:31::-;;;;:::o;35692:233::-;35767:7;35803:30;:28;:30::i;:::-;35795:5;:38;35787:95;;;;-1:-1:-1;;;35787:95:0;;;;;;;:::i;:::-;35900:10;35911:5;35900:17;;;;;;-1:-1:-1;;;35900:17:0;;;;;;;;;;;;;;;;;35893:24;;35692:233;;;:::o;50183:140::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;50254:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50292:23;50307:7;50292:23;;;;;;:::i;:::-;;;;;;;;50183:140:::0;:::o;21445:239::-;21517:7;21553:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21553:16:0;21588:19;21580:73;;;;-1:-1:-1;;;21580:73:0;;;;;;;:::i;21175:208::-;21247:7;-1:-1:-1;;;;;21275:19:0;;21267:74;;;;-1:-1:-1;;;21267:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21359:16:0;;;;;:9;:16;;;;;;;21175:208::o;44595:94::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;44660:21:::1;44678:1;44660:9;:21::i;:::-;44595:94::o:0;50899:102::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;50976:17;;::::1;::::0;:9:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50899:102:::0;:::o;51130:272::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;51199:21:::1;51239:11:::0;51231:43:::1;;;;-1:-1:-1::0;;;51231:43:0::1;;;;;;;:::i;:::-;51286:12;51304:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;51304:12:0::1;51325:7;51304:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51285:53;;;51357:7;51349:45;;;;-1:-1:-1::0;;;51349:45:0::1;;;;;;;:::i;45794:74::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43944:87::-;44017:6;;-1:-1:-1;;;;;44017:6:0;43944:87;:::o;45598:37::-;;;;:::o;21920:104::-;21976:13;22009:7;22002:14;;;;;:::i;47772:367::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;47864:9:::1;47859:273;47879:20:::0;;::::1;47859:273;;;47953:1;47929:9:::0;;47939:1;47929:12;;::::1;;;-1:-1:-1::0;;;47929:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47929:26:0::1;;;47921:62;;;;-1:-1:-1::0;;;47921:62:0::1;;;;;;;:::i;:::-;48033:5;48000:16;:30;48017:9;;48027:1;48017:12;;;;;-1:-1:-1::0;;;48017:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48000:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48000:30:0;;;:38;;-1:-1:-1;;48000:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;48055:13:::1;-1:-1:-1::0;48069:9:0;;48079:1;48069:12;;::::1;;;-1:-1:-1::0;;;48069:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48055:27:0::1;-1:-1:-1::0;;;;;48055:27:0::1;;;;;;;;;;;;;:31;:65;;48119:1;48055:65;;;48089:13;:27;48103:9;;48113:1;48103:12;;;;;-1:-1:-1::0;;;48103:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48089:27:0::1;-1:-1:-1::0;;;;;48089:27:0::1;;;;;;;;;;;;;48055:65;-1:-1:-1::0;47901:3:0;::::1;::::0;::::1;:::i;:::-;;;;47859:273;;49142:804:::0;46405:17;;;;46397:57;;;;-1:-1:-1;;;46397:57:0;;;;;;;:::i;:::-;49252:15:::1;;49236:13;:11;:13::i;:::-;:31;49228:83;;;;-1:-1:-1::0;;;49228:83:0::1;;;;;;;:::i;:::-;49345:1;49330:12;:16;49322:55;;;;-1:-1:-1::0;;;49322:55:0::1;;;;;;;:::i;:::-;49440:15;::::0;49410:10:::1;49396:25;::::0;;;:13:::1;:25;::::0;;;;;:40:::1;::::0;49424:12;;49396:40:::1;:::i;:::-;:59;;49388:111;;;;-1:-1:-1::0;;;49388:111:0::1;;;;;;;:::i;:::-;49554:9;49538:12;49518:17;;:32;;;;:::i;:::-;:45;49510:81;;;;-1:-1:-1::0;;;49510:81:0::1;;;;;;;:::i;:::-;49609:9;49604:277;49628:12;49624:1;:16;49604:277;;;49662:15;49680:13;;49696:1;49680:17;;;;:::i;:::-;49662:35;;49731:1;49714:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;49761:10:0::1;49747:25;::::0;;;:13:::1;:25;::::0;;;;:30;;49776:1:::1;::::0;49747:25;:30:::1;::::0;49776:1;;49747:30:::1;:::i;:::-;::::0;;;-1:-1:-1;49792:30:0::1;::::0;-1:-1:-1;49802:10:0::1;49814:7:::0;49792:9:::1;:30::i;:::-;49837:32;49850:7;49859:9;49837:32;;;;;:::i;:::-;-1:-1:-1::0;49642:3:0;::::1;::::0;::::1;:::i;:::-;;;;49604:277;;;;49898:40;49913:10;49925:12;49898:40;;;;;;;:::i;23603:295::-:0;23718:12;:10;:12::i;:::-;-1:-1:-1;;;;;23706:24:0;:8;-1:-1:-1;;;;;23706:24:0;;;23698:62;;;;-1:-1:-1;;;23698:62:0;;;;;;;:::i;:::-;23818:8;23773:18;:32;23792:12;:10;:12::i;:::-;-1:-1:-1;;;;;23773:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23773:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23773:53:0;;;;;;;;;;;23857:12;:10;:12::i;:::-;-1:-1:-1;;;;;23842:48:0;;23881:8;23842:48;;;;;;:::i;:::-;;;;;;;;23603:295;;:::o;45877:29::-;;;;;;:::o;50433:108::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;50508:15:::1;:25:::0;50433:108::o;47403:361::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;47490:9:::1;47485:272;47505:20:::0;;::::1;47485:272;;;47579:1;47555:9:::0;;47565:1;47555:12;;::::1;;;-1:-1:-1::0;;;47555:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47555:26:0::1;;;47547:62;;;;-1:-1:-1::0;;;47547:62:0::1;;;;;;;:::i;:::-;47659:4;47626:16;:30;47643:9;;47653:1;47643:12;;;;;-1:-1:-1::0;;;47643:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47626:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47626:30:0;;;:37;;-1:-1:-1;;47626:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;47680:13:::1;-1:-1:-1::0;47694:9:0;;47704:1;47694:12;;::::1;;;-1:-1:-1::0;;;47694:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47680:27:0::1;-1:-1:-1::0;;;;;47680:27:0::1;;;;;;;;;;;;;:31;:65;;47744:1;47680:65;;;47714:13;:27;47728:9;;47738:1;47728:12;;;;;-1:-1:-1::0;;;47728:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47714:27:0::1;-1:-1:-1::0;;;;;47714:27:0::1;;;;;;;;;;;;;47680:65;-1:-1:-1::0;47527:3:0;::::1;::::0;::::1;:::i;:::-;;;;47485:272;;50331:94:::0;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;50399:8:::1;:18:::0;50331:94::o;50785:106::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;50859:14:::1;:24:::0;50785:106::o;24866:328::-;25041:41;25060:12;:10;:12::i;:::-;25074:7;25041:18;:41::i;:::-;25033:103;;;;-1:-1:-1;;;25033:103:0;;;;;;;:::i;:::-;25147:39;25161:4;25167:2;25171:7;25180:5;25147:13;:39::i;:::-;24866:328;;;;:::o;51981:196::-;52108:13;52146:23;52161:7;52146:14;:23::i;45761:26::-;;;;;;;:::i;48472:662::-;46283:14;;;;;;;46275:50;;;;-1:-1:-1;;;46275:50:0;;;;;;;:::i;:::-;48567:10:::1;48550:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;48542:77;;;;-1:-1:-1::0;;;48542:77:0::1;;;;;;;:::i;:::-;48659:8;;48638:13;:11;:13::i;:::-;:17;::::0;48654:1:::1;48638:17;:::i;:::-;:29;;48630:73;;;;-1:-1:-1::0;;;48630:73:0::1;;;;;;;:::i;:::-;48740:9;48722:14;;:27;48714:63;;;;-1:-1:-1::0;;;48714:63:0::1;;;;;;;:::i;:::-;48810:10;48796:25;::::0;;;:13:::1;:25;::::0;;;;;48824:1:::1;-1:-1:-1::0;48788:90:0::1;;;;-1:-1:-1::0;;;48788:90:0::1;;;;;;;:::i;:::-;48891:15;48909:13;;48925:1;48909:17;;;;:::i;:::-;48891:35;;48956:1;48939:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;48982:10:0::1;48968:25;::::0;;;:13:::1;:25;::::0;;;;:30;;48997:1:::1;::::0;48968:25;:30:::1;::::0;48997:1;;48968:30:::1;:::i;:::-;::::0;;;-1:-1:-1;49009:30:0::1;::::0;-1:-1:-1;49019:10:0::1;49031:7:::0;49009:9:::1;:30::i;:::-;49050:32;49063:7;49072:9;49050:32;;;;;:::i;:::-;49100:26;49112:10;49124:1;49100:26;;;;;;;:::i;23969:164::-:0;-1:-1:-1;;;;;24090:25:0;;;24066:4;24090:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23969:164::o;49954:102::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;50034:14:::1;::::0;;-1:-1:-1;;50016:32:0;::::1;50034:14;::::0;;;::::1;;;50033:15;50016:32:::0;;::::1;;::::0;;49954:102::o;45644:34::-;;;;:::o;44844:192::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44933:22:0;::::1;44925:73;;;;-1:-1:-1::0;;;44925:73:0::1;;;;;;;:::i;:::-;45009:19;45019:8;45009:9;:19::i;:::-;44844:192:::0;:::o;50549:112::-;44175:12;:10;:12::i;:::-;-1:-1:-1;;;;;44164:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;44164:23:0;;44156:68;;;;-1:-1:-1;;;44156:68:0;;;;;;;:::i;:::-;50626:17:::1;:27:::0;50549:112::o;45724:28::-;;;;:::o;34862:224::-;34964:4;-1:-1:-1;;;;;;34988:50:0;;-1:-1:-1;;;34988:50:0;;:90;;;35042:36;35066:11;35042:23;:36::i;26704:127::-;26769:4;26793:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26793:16:0;:30;;;26704:127::o;16208:98::-;16288:10;16208:98;:::o;30686:174::-;30761:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30761:29:0;-1:-1:-1;;;;;30761:29:0;;;;;;;;:24;;30815:23;30761:24;30815:14;:23::i;:::-;-1:-1:-1;;;;;30806:46:0;;;;;;;;;;;30686:174;;:::o;27688:110::-;27764:26;27774:2;27778:7;27764:26;;;;;;;;;;;;:9;:26::i;42281:217::-;42381:16;42389:7;42381;:16::i;:::-;42373:75;;;;-1:-1:-1;;;42373:75:0;;;;;;;:::i;:::-;42459:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;26998:348::-;27091:4;27116:16;27124:7;27116;:16::i;:::-;27108:73;;;;-1:-1:-1;;;27108:73:0;;;;;;;:::i;:::-;27192:13;27208:23;27223:7;27208:14;:23::i;:::-;27192:39;;27261:5;-1:-1:-1;;;;;27250:16:0;:7;-1:-1:-1;;;;;27250:16:0;;:51;;;;27294:7;-1:-1:-1;;;;;27270:31:0;:20;27282:7;27270:11;:20::i;:::-;-1:-1:-1;;;;;27270:31:0;;27250:51;:87;;;;27305:32;27322:5;27329:7;27305:16;:32::i;:::-;27242:96;26998:348;-1:-1:-1;;;;26998:348:0:o;29990:578::-;30149:4;-1:-1:-1;;;;;30122:31:0;:23;30137:7;30122:14;:23::i;:::-;-1:-1:-1;;;;;30122:31:0;;30114:85;;;;-1:-1:-1;;;30114:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30218:16:0;;30210:65;;;;-1:-1:-1;;;30210:65:0;;;;;;;:::i;:::-;30288:39;30309:4;30315:2;30319:7;30288:20;:39::i;:::-;30392:29;30409:1;30413:7;30392:8;:29::i;:::-;-1:-1:-1;;;;;30434:15:0;;;;;;:9;:15;;;;;:20;;30453:1;;30434:15;:20;;30453:1;;30434:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30465:13:0;;;;;;:9;:13;;;;;:18;;30482:1;;30465:13;:18;;30482:1;;30465:18;:::i;:::-;;;;-1:-1:-1;;30494:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30494:21:0;-1:-1:-1;;;;;30494:21:0;;;;;;;;;30533:27;;30494:16;;30533:27;;;;;;;29990:578;;;:::o;45044:173::-;45119:6;;;-1:-1:-1;;;;;45136:17:0;;;-1:-1:-1;;;;;;45136:17:0;;;;;;;45169:40;;45119:6;;;45136:17;45119:6;;45169:40;;45100:16;;45169:40;45044:173;;:::o;26076:315::-;26233:28;26243:4;26249:2;26253:7;26233:9;:28::i;:::-;26280:48;26303:4;26309:2;26313:7;26322:5;26280:22;:48::i;:::-;26272:111;;;;-1:-1:-1;;;26272:111:0;;;;;;;:::i;41446:679::-;41519:13;41553:16;41561:7;41553;:16::i;:::-;41545:78;;;;-1:-1:-1;;;41545:78:0;;;;;;;:::i;:::-;41636:23;41662:19;;;:10;:19;;;;;41636:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41692:18;41713:10;:8;:10::i;:::-;41692:31;;41805:4;41799:18;41821:1;41799:23;41795:72;;;-1:-1:-1;41846:9:0;-1:-1:-1;41839:16:0;;41795:72;41971:23;;:27;41967:108;;42046:4;42052:9;42029:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42015:48;;;;;;41967:108;42094:23;42109:7;42094:14;:23::i;20806:305::-;20908:4;-1:-1:-1;;;;;;20945:40:0;;-1:-1:-1;;;20945:40:0;;:105;;-1:-1:-1;;;;;;;21002:48:0;;-1:-1:-1;;;21002:48:0;20945:105;:158;;;;21067:36;21091:11;21067:23;:36::i;28025:321::-;28155:18;28161:2;28165:7;28155:5;:18::i;:::-;28206:54;28237:1;28241:2;28245:7;28254:5;28206:22;:54::i;:::-;28184:154;;;;-1:-1:-1;;;28184:154:0;;;;;;;:::i;51414:204::-;51565:45;51592:4;51598:2;51602:7;51565:26;:45::i;31425:799::-;31580:4;31601:15;:2;-1:-1:-1;;;;;31601:13:0;;:15::i;:::-;31597:620;;;31653:2;-1:-1:-1;;;;;31637:36:0;;31674:12;:10;:12::i;:::-;31688:4;31694:7;31703:5;31637:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31637:72:0;;;;;;;;-1:-1:-1;;31637:72:0;;;;;;;;;;;;:::i;:::-;;;31633:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31879:13:0;;31875:272;;31922:60;;-1:-1:-1;;;31922:60:0;;;;;;;:::i;31875:272::-;32097:6;32091:13;32082:6;32078:2;32074:15;32067:38;31633:529;-1:-1:-1;;;;;;31760:51:0;-1:-1:-1;;;31760:51:0;;-1:-1:-1;31753:58:0;;31597:620;-1:-1:-1;32201:4:0;31425:799;;;;;;:::o;51009:113::-;51069:13;51102:12;51095:19;;;;;:::i;22095:334::-;22168:13;22202:16;22210:7;22202;:16::i;:::-;22194:76;;;;-1:-1:-1;;;22194:76:0;;;;;;;:::i;:::-;22283:21;22307:10;:8;:10::i;:::-;22283:34;;22359:1;22341:7;22335:21;:25;:86;;;;;;;;;;;;;;;;;22387:7;22396:18;:7;:16;:18::i;:::-;22370:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22335:86;22328:93;22095:334;-1:-1:-1;;;22095:334:0:o;19304:157::-;-1:-1:-1;;;;;;19413:40:0;;-1:-1:-1;;;19413:40:0;19304:157;;;:::o;28682:382::-;-1:-1:-1;;;;;28762:16:0;;28754:61;;;;-1:-1:-1;;;28754:61:0;;;;;;;:::i;:::-;28835:16;28843:7;28835;:16::i;:::-;28834:17;28826:58;;;;-1:-1:-1;;;28826:58:0;;;;;;;:::i;:::-;28897:45;28926:1;28930:2;28934:7;28897:20;:45::i;:::-;-1:-1:-1;;;;;28955:13:0;;;;;;:9;:13;;;;;:18;;28972:1;;28955:13;:18;;28972:1;;28955:18;:::i;:::-;;;;-1:-1:-1;;28984:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28984:21:0;-1:-1:-1;;;;;28984:21:0;;;;;;;;29023:33;;28984:16;;;29023:33;;28984:16;;29023:33;28682:382;;:::o;36538:589::-;36682:45;36709:4;36715:2;36719:7;36682:26;:45::i;:::-;-1:-1:-1;;;;;36744:18:0;;36740:187;;36779:40;36811:7;36779:31;:40::i;:::-;36740:187;;;36849:2;-1:-1:-1;;;;;36841:10:0;:4;-1:-1:-1;;;;;36841:10:0;;36837:90;;36868:47;36901:4;36907:7;36868:32;:47::i;:::-;-1:-1:-1;;;;;36941:16:0;;36937:183;;36974:45;37011:7;36974:36;:45::i;:::-;36937:183;;;37047:4;-1:-1:-1;;;;;37041:10:0;:2;-1:-1:-1;;;;;37041:10:0;;37037:83;;37068:40;37096:2;37100:7;37068:27;:40::i;8244:387::-;8567:20;8615:8;;;8244:387::o;16741:723::-;16797:13;17018:10;17014:53;;-1:-1:-1;17045:10:0;;;;;;;;;;;;-1:-1:-1;;;17045:10:0;;;;;;17014:53;17092:5;17077:12;17133:78;17140:9;;17133:78;;17166:8;;;;:::i;:::-;;-1:-1:-1;17189:10:0;;-1:-1:-1;17197:2:0;17189:10;;:::i;:::-;;;17133:78;;;17221:19;17253:6;17243:17;;;;;;-1:-1:-1;;;17243:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17243:17:0;;17221:39;;17271:154;17278:10;;17271:154;;17305:11;17315:1;17305:11;;:::i;:::-;;-1:-1:-1;17374:10:0;17382:2;17374:5;:10;:::i;:::-;17361:24;;:2;:24;:::i;:::-;17348:39;;17331:6;17338;17331:14;;;;;;-1:-1:-1;;;17331:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17331:56:0;;;;;;;;-1:-1:-1;17402:11:0;17411:2;17402:11;;:::i;:::-;;;17271:154;;37850:164;37954:10;:17;;37927:24;;;;:15;:24;;;;;:44;;;37982:24;;;;;;;;;;;;37850:164::o;38641:988::-;38907:22;38957:1;38932:22;38949:4;38932:16;:22::i;:::-;:26;;;;:::i;:::-;38969:18;38990:26;;;:17;:26;;;;;;38907:51;;-1:-1:-1;39123:28:0;;;39119:328;;-1:-1:-1;;;;;39190:18:0;;39168:19;39190:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39241:30;;;;;;:44;;;39358:30;;:17;:30;;;;;:43;;;39119:328;-1:-1:-1;39543:26:0;;;;:17;:26;;;;;;;;39536:33;;;-1:-1:-1;;;;;39587:18:0;;;;;:12;:18;;;;;:34;;;;;;;39580:41;38641:988::o;39924:1079::-;40202:10;:17;40177:22;;40202:21;;40222:1;;40202:21;:::i;:::-;40234:18;40255:24;;;:15;:24;;;;;;40628:10;:26;;40177:46;;-1:-1:-1;40255:24:0;;40177:46;;40628:26;;;;-1:-1:-1;;;40628:26:0;;;;;;;;;;;;;;;;;40606:48;;40692:11;40667:10;40678;40667:22;;;;;;-1:-1:-1;;;40667:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40772:28;;;:15;:28;;;;;;;:41;;;40944:24;;;;;40937:31;40979:10;:16;;;;;-1:-1:-1;;;40979:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39924:1079;;;;:::o;37428:221::-;37513:14;37530:20;37547:2;37530:16;:20::i;:::-;-1:-1:-1;;;;;37561:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37606:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37428:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:190::-;;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;-1:-1:-1;4834:23:1;;4743:120;-1:-1:-1;4743:120:1:o;4868:259::-;;4949:5;4943:12;4976:6;4971:3;4964:19;4992:63;5048:6;5041:4;5036:3;5032:14;5025:4;5018:5;5014:16;4992:63;:::i;:::-;5109:2;5088:15;-1:-1:-1;;5084:29:1;5075:39;;;;5116:4;5071:50;;4919:208;-1:-1:-1;;4919:208:1:o;5132:470::-;;5349:6;5343:13;5365:53;5411:6;5406:3;5399:4;5391:6;5387:17;5365:53;:::i;:::-;5481:13;;5440:16;;;;5503:57;5481:13;5440:16;5537:4;5525:17;;5503:57;:::i;:::-;5576:20;;5319:283;-1:-1:-1;;;;5319:283:1:o;5607:205::-;5807:3;5798:14::o;5817:203::-;-1:-1:-1;;;;;5981:32:1;;;;5963:51;;5951:2;5936:18;;5918:102::o;6025:490::-;-1:-1:-1;;;;;6294:15:1;;;6276:34;;6346:15;;6341:2;6326:18;;6319:43;6393:2;6378:18;;6371:34;;;6441:3;6436:2;6421:18;;6414:31;;;6025:490;;6462:47;;6489:19;;6481:6;6462:47;:::i;:::-;6454:55;6228:287;-1:-1:-1;;;;;;6228:287:1:o;6520:282::-;-1:-1:-1;;;;;6720:32:1;;;;6702:51;;6784:2;6769:18;;6762:34;6690:2;6675:18;;6657:145::o;7086:187::-;7251:14;;7244:22;7226:41;;7214:2;7199:18;;7181:92::o;7278:221::-;;7427:2;7416:9;7409:21;7447:46;7489:2;7478:9;7474:18;7466:6;7447:46;:::i;7504:347::-;7706:2;7688:21;;;7745:2;7725:18;;;7718:30;7784:25;7779:2;7764:18;;7757:53;7842:2;7827:18;;7678:173::o;7856:403::-;8058:2;8040:21;;;8097:2;8077:18;;;8070:30;8136:34;8131:2;8116:18;;8109:62;-1:-1:-1;;;8202:2:1;8187:18;;8180:37;8249:3;8234:19;;8030:229::o;8264:350::-;8466:2;8448:21;;;8505:2;8485:18;;;8478:30;8544:28;8539:2;8524:18;;8517:56;8605:2;8590:18;;8438:176::o;8619:407::-;8821:2;8803:21;;;8860:2;8840:18;;;8833:30;8899:34;8894:2;8879:18;;8872:62;-1:-1:-1;;;8965:2:1;8950:18;;8943:41;9016:3;9001:19;;8793:233::o;9031:414::-;9233:2;9215:21;;;9272:2;9252:18;;;9245:30;9311:34;9306:2;9291:18;;9284:62;-1:-1:-1;;;9377:2:1;9362:18;;9355:48;9435:3;9420:19;;9205:240::o;9450:402::-;9652:2;9634:21;;;9691:2;9671:18;;;9664:30;9730:34;9725:2;9710:18;;9703:62;-1:-1:-1;;;9796:2:1;9781:18;;9774:36;9842:3;9827:19;;9624:228::o;9857:352::-;10059:2;10041:21;;;10098:2;10078:18;;;10071:30;10137;10132:2;10117:18;;10110:58;10200:2;10185:18;;10031:178::o;10214:351::-;10416:2;10398:21;;;10455:2;10435:18;;;10428:30;10494:29;10489:2;10474:18;;10467:57;10556:2;10541:18;;10388:177::o;10570:400::-;10772:2;10754:21;;;10811:2;10791:18;;;10784:30;10850:34;10845:2;10830:18;;10823:62;-1:-1:-1;;;10916:2:1;10901:18;;10894:34;10960:3;10945:19;;10744:226::o;10975:349::-;11177:2;11159:21;;;11216:2;11196:18;;;11189:30;11255:27;11250:2;11235:18;;11228:55;11315:2;11300:18;;11149:175::o;11329:400::-;11531:2;11513:21;;;11570:2;11550:18;;;11543:30;11609:34;11604:2;11589:18;;11582:62;-1:-1:-1;;;11675:2:1;11660:18;;11653:34;11719:3;11704:19;;11503:226::o;11734:408::-;11936:2;11918:21;;;11975:2;11955:18;;;11948:30;12014:34;12009:2;11994:18;;11987:62;-1:-1:-1;;;12080:2:1;12065:18;;12058:42;12132:3;12117:19;;11908:234::o;12147:402::-;12349:2;12331:21;;;12388:2;12368:18;;;12361:30;12427:34;12422:2;12407:18;;12400:62;-1:-1:-1;;;12493:2:1;12478:18;;12471:36;12539:3;12524:19;;12321:228::o;12554:420::-;12756:2;12738:21;;;12795:2;12775:18;;;12768:30;12834:34;12829:2;12814:18;;12807:62;12905:26;12900:2;12885:18;;12878:54;12964:3;12949:19;;12728:246::o;12979:406::-;13181:2;13163:21;;;13220:2;13200:18;;;13193:30;13259:34;13254:2;13239:18;;13232:62;-1:-1:-1;;;13325:2:1;13310:18;;13303:40;13375:3;13360:19;;13153:232::o;13390:405::-;13592:2;13574:21;;;13631:2;13611:18;;;13604:30;13670:34;13665:2;13650:18;;13643:62;-1:-1:-1;;;13736:2:1;13721:18;;13714:39;13785:3;13770:19;;13564:231::o;13800:410::-;14002:2;13984:21;;;14041:2;14021:18;;;14014:30;14080:34;14075:2;14060:18;;14053:62;-1:-1:-1;;;14146:2:1;14131:18;;14124:44;14200:3;14185:19;;13974:236::o;14215:355::-;14417:2;14399:21;;;14456:2;14436:18;;;14429:30;14495:33;14490:2;14475:18;;14468:61;14561:2;14546:18;;14389:181::o;14575:356::-;14777:2;14759:21;;;14796:18;;;14789:30;14855:34;14850:2;14835:18;;14828:62;14922:2;14907:18;;14749:182::o;14936:347::-;15138:2;15120:21;;;15177:2;15157:18;;;15150:30;15216:25;15211:2;15196:18;;15189:53;15274:2;15259:18;;15110:173::o;15288:413::-;15490:2;15472:21;;;15529:2;15509:18;;;15502:30;15568:34;15563:2;15548:18;;15541:62;-1:-1:-1;;;15634:2:1;15619:18;;15612:47;15691:3;15676:19;;15462:239::o;15706:408::-;15908:2;15890:21;;;15947:2;15927:18;;;15920:30;15986:34;15981:2;15966:18;;15959:62;-1:-1:-1;;;16052:2:1;16037:18;;16030:42;16104:3;16089:19;;15880:234::o;16119:343::-;16321:2;16303:21;;;16360:2;16340:18;;;16333:30;-1:-1:-1;;;16394:2:1;16379:18;;16372:49;16453:2;16438:18;;16293:169::o;16467:356::-;16669:2;16651:21;;;16688:18;;;16681:30;16747:34;16742:2;16727:18;;16720:62;16814:2;16799:18;;16641:182::o;16828:405::-;17030:2;17012:21;;;17069:2;17049:18;;;17042:30;17108:34;17103:2;17088:18;;17081:62;-1:-1:-1;;;17174:2:1;17159:18;;17152:39;17223:3;17208:19;;17002:231::o;17238:411::-;17440:2;17422:21;;;17479:2;17459:18;;;17452:30;17518:34;17513:2;17498:18;;17491:62;-1:-1:-1;;;17584:2:1;17569:18;;17562:45;17639:3;17624:19;;17412:237::o;17654:349::-;17856:2;17838:21;;;17895:2;17875:18;;;17868:30;17934:27;17929:2;17914:18;;17907:55;17994:2;17979:18;;17828:175::o;18008:412::-;18210:2;18192:21;;;18249:2;18229:18;;;18222:30;18288:34;18283:2;18268:18;;18261:62;-1:-1:-1;;;18354:2:1;18339:18;;18332:46;18410:3;18395:19;;18182:238::o;18425:397::-;18627:2;18609:21;;;18666:2;18646:18;;;18639:30;18705:34;18700:2;18685:18;;18678:62;-1:-1:-1;;;18771:2:1;18756:18;;18749:31;18812:3;18797:19;;18599:223::o;18827:347::-;19029:2;19011:21;;;19068:2;19048:18;;;19041:30;19107:25;19102:2;19087:18;;19080:53;19165:2;19150:18;;19001:173::o;19179:413::-;19381:2;19363:21;;;19420:2;19400:18;;;19393:30;19459:34;19454:2;19439:18;;19432:62;-1:-1:-1;;;19525:2:1;19510:18;;19503:47;19582:3;19567:19;;19353:239::o;19597:402::-;19799:2;19781:21;;;19838:2;19818:18;;;19811:30;19877:34;19872:2;19857:18;;19850:62;-1:-1:-1;;;19943:2:1;19928:18;;19921:36;19989:3;19974:19;;19771:228::o;20004:408::-;20206:2;20188:21;;;20245:2;20225:18;;;20218:30;20284:34;20279:2;20264:18;;20257:62;-1:-1:-1;;;20350:2:1;20335:18;;20328:42;20402:3;20387:19;;20178:234::o;20417:351::-;20619:2;20601:21;;;20658:2;20638:18;;;20631:30;20697:29;20692:2;20677:18;;20670:57;20759:2;20744:18;;20591:177::o;20773:403::-;20975:2;20957:21;;;21014:2;20994:18;;;20987:30;21053:34;21048:2;21033:18;;21026:62;-1:-1:-1;;;21119:2:1;21104:18;;21097:37;21166:3;21151:19;;20947:229::o;21181:177::-;21327:25;;;21315:2;21300:18;;21282:76::o;21363:128::-;;21434:1;21430:6;21427:1;21424:13;21421:2;;;21440:18;;:::i;:::-;-1:-1:-1;21476:9:1;;21411:80::o;21496:120::-;;21562:1;21552:2;;21567:18;;:::i;:::-;-1:-1:-1;21601:9:1;;21542:74::o;21621:168::-;;21727:1;21723;21719:6;21715:14;21712:1;21709:21;21704:1;21697:9;21690:17;21686:45;21683:2;;;21734:18;;:::i;:::-;-1:-1:-1;21774:9:1;;21673:116::o;21794:125::-;;21862:1;21859;21856:8;21853:2;;;21867:18;;:::i;:::-;-1:-1:-1;21904:9:1;;21843:76::o;21924:258::-;21996:1;22006:113;22020:6;22017:1;22014:13;22006:113;;;22096:11;;;22090:18;22077:11;;;22070:39;22042:2;22035:10;22006:113;;;22137:6;22134:1;22131:13;22128:2;;;-1:-1:-1;;22172:1:1;22154:16;;22147:27;21977:205::o;22187:380::-;22272:1;22262:12;;22319:1;22309:12;;;22330:2;;22384:4;22376:6;22372:17;22362:27;;22330:2;22437;22429:6;22426:14;22406:18;22403:38;22400:2;;;22483:10;22478:3;22474:20;22471:1;22464:31;22518:4;22515:1;22508:15;22546:4;22543:1;22536:15;22400:2;;22242:325;;;:::o;22572:135::-;;-1:-1:-1;;22632:17:1;;22629:2;;;22652:18;;:::i;:::-;-1:-1:-1;22699:1:1;22688:13;;22619:88::o;22712:112::-;;22770:1;22760:2;;22775:18;;:::i;:::-;-1:-1:-1;22809:9:1;;22750:74::o;22829:127::-;22890:10;22885:3;22881:20;22878:1;22871:31;22921:4;22918:1;22911:15;22945:4;22942:1;22935:15;22961:127;23022:10;23017:3;23013:20;23010:1;23003:31;23053:4;23050:1;23043:15;23077:4;23074:1;23067:15;23093:127;23154:10;23149:3;23145:20;23142:1;23135:31;23185:4;23182:1;23175:15;23209:4;23206:1;23199:15;23225:133;-1:-1:-1;;;;;;23301:32:1;;23291:43;;23281:2;;23348:1;23345;23338:12

Swarm Source

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