ETH Price: $3,501.76 (+4.31%)
Gas: 4 Gwei

Token

Carbon RainDrop (CRND)
 

Overview

Max Total Supply

100 CRND

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
manifoldvault.eth
Balance
1 CRND
0x54ace8d119c4bd7baf11f750c690e9667a80801a
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:
CarbonRainDrops

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 1 runs

Other Settings:
byzantium EvmVersion, None license

Contract Source Code (Solidity)

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

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

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



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/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/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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[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}. 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 || ERC721.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 || ERC721.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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}


// 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


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



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// 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 contracts/CarbonRainDrops.sol

pragma solidity ^0.8.3;





contract CarbonRainDrops is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for string;
    uint public constant MAX = 100;
    uint public constant price = 100000000000000000;
    bool public hSS = true;
    uint16[] public tokenHashes;
    address public payableAddress1 = 0x6140F00e4Ff3936702E68744f2b5978885464cbB;
    address public payableAddress2 = 0x7526Ff47215613882De8EF4c395562aa3EEb4709;
    string public baseURI = "https://carbonraindrops.com/metadata/";
 
    constructor() ERC721("Carbon RainDrop", "CRND") {    
        tokenHashes = new uint16[](MAX);  
        uint mintIndex = totalSupply();

        // Myself
        tokenHashes[mintIndex] = random();
        _safeMint(payableAddress1, mintIndex);

        // Offsetra
        tokenHashes[mintIndex+1] = random();
        _safeMint(payableAddress2, mintIndex+1);

        // Kev
        tokenHashes[mintIndex+2] = random();
        _safeMint(address(0x9Ac682EA04343C8601F35fAe299eABdB833FB524), mintIndex+2);

        // BERK
        tokenHashes[mintIndex+3] = random();
        _safeMint(address(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5), mintIndex+3);
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function random() private view returns (uint16) {
        return uint16(uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty, totalSupply()))));
    }   
    
   function makeItRain() public payable {
        require(hSS == true, "Sale hasn't started");
        require(totalSupply() < MAX, "No more rain drops.");
        require(msg.value >= price, "Need higher ether value.");

        uint mintIndex = totalSupply();
        tokenHashes[mintIndex] = random();
        _safeMint(msg.sender, mintIndex);
        payable(address(payableAddress1)).transfer(50000000000000000);
        payable(address(payableAddress2)).transfer(50000000000000000);
    }

    function changePayableAddresses(address _address1, address _address2) public onlyOwner {
        payableAddress1 = _address1;
        payableAddress2 = _address2;
    }

    function baseTokenURI() internal view returns (string memory) {
        return baseURI;
    }

    function changeBaseTokenURI(string memory _uri) public onlyOwner {
        baseURI = _uri;
    }

    function append(string memory a, string memory b) internal pure returns (string memory) {
        return string(abi.encodePacked(a, b));
    }

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return append(baseTokenURI(), Strings.toString(_tokenId));
    }
    
    function sD() public onlyOwner {
        hSS = true;
    }
    function pD() public onlyOwner {
        hSS = false;
    }

    function getScript() public pure returns (string memory) {
        return "class Random{constructor(s){this.s=s}r_d(){return this.s^=this.s<<13,this.s^=this.s>>17,this.s^=this.s<<5,(0>this.s?~this.s+1:this.s)%1e3/1e3}r(a,b){return a+(b-a)*this.r_d()}}class Particle{constructor(){this.r()}r(){this.x=R.r(0,w),this.y=R.r(0,w),this.vy=R.r(.001,.1),this.maxy=this.y+R.r(0,w),this.r=0,this.tr=50,this.w=R.r(.1,2),this.color=[R.r(0,255),R.r(0,255),R.r(0,255)]}u(){this.y<this.maxy?this.y+=this.vy:this.r++,this.r>this.tr&&this.r()}d(){strokeWeight(this.w),stroke(this.color[0],this.color[1],this.color[2]),push(),translate(this.x,this.y),beginShape(),strokeWeight(6);if(u){vertex(0,5),quadraticVertex(-6,0,0,-2),quadraticVertex(6,0,0,10)}else{vertex(0,-5),quadraticVertex(6,0,0,2),quadraticVertex(-6,0,0,-10)}endShape(CLOSE),pop()}}function setup(){createCanvas(w,w).parent('canvasParent'),ellipseMode(RADIUS),noFill(),g=R.r(0,99)<5;if(g){c1=color(R.r(0,255),R.r(0,255),R.r(0,255));c2=color(R.r(0,255),R.r(0,255),R.r(0,255));for(var y=0;y<w;y++){stroke(lerpColor(c1,c2,map(y,0,w,0,1)));line(0,y,w,y)}}else{background(R.r(0,255),R.r(0,255),R.r(0,255))}howMany=R.r(1,20);u=R.r(0,99)<5;for(var i=0;i<howMany;i++){let p=new Particle;p.d()}}";
    }

}


// File contracts/test/MockProxyRegistry.sol

// "SPDX-License-Identifier: UNLICENSED"
pragma solidity ^0.8.3;

/**
 * @dev A simple mock ProxyRegistry for use in local tests with minimal security
 */
contract MockProxyRegistry is Ownable {
  mapping(address => address) public proxies;


  /***********************************|
  |  Public Configuration Functions   |
  |__________________________________*/

  /**
   * @param _address           The address that the proxy will act on behalf of
   * @param _proxyForAddress  The proxy that will act on behalf of the address
   */
  function setProxy(address _address, address _proxyForAddress)
      external
      onlyOwner()
  {
      proxies[_address] = _proxyForAddress;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"changeBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address1","type":"address"},{"internalType":"address","name":"_address2","type":"address"}],"name":"changePayableAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getScript","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"hSS","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"makeItRain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pD","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"payableAddress1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableAddress2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sD","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenHashes","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

600a805460a060020a60ff02191674010000000000000000000000000000000000000000179055600c8054600160a060020a0319908116736140f00e4ff3936702e68744f2b5978885464cbb17909155600d8054909116737526ff47215613882de8ef4c395562aa3eeb470917905560e060405260256080818152906200381560a03980516200009891600e9160209091019062000d11565b50348015620000a657600080fd5b50604080518082018252600f81527f436172626f6e205261696e44726f70000000000000000000000000000000000060208083019182528351808501909452600484527f43524e4400000000000000000000000000000000000000000000000000000000908401528151919291620001219160009162000d11565b5080516200013790600190602084019062000d11565b505050600062000155620004c6640100000000026401000000009004565b600a8054600160a060020a031916600160a060020a038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604080516064808252610ca082019092529060208201610c808036833750508151620001d792600b92506020019062000da0565b506000620001ed640100000000620004ca810204565b905062000202640100000000620004d0810204565b600b82815481106200023d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506200029c600c60009054906101000a9004600160a060020a0316826200051e640100000000026401000000009004565b620002af640100000000620004d0810204565b600b620002be83600162000f7d565b81548110620002f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506200035d600d60009054906101000a9004600160a060020a03168260016200034e919062000f7d565b6401000000006200051e810204565b62000370640100000000620004d0810204565b600b6200037f83600262000f7d565b81548110620003b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506200040e739ac682ea04343c8601f35fae299eabdb833fb5248260026200034e919062000f7d565b62000421640100000000620004d0810204565b600b6200043083600362000f7d565b8154811062000468577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550620004bf73c5e08104c19dafd00fe40737490da9552db5bfe58260036200034e919062000f7d565b5062001037565b3390565b60085490565b60004244620004e7640100000000620004ca810204565b604080516020810194909452830191909152606082015260800160408051601f198184030181529190528051602090910120905090565b620005498282604051806020016040528060008152506200054d640100000000026401000000009004565b5050565b620005628383640100000000620005c1810204565b6200057a600084848464010000000062000750810204565b620005bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b39062000f20565b60405180910390fd5b505050565b600160a060020a03821662000633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620005b3565b6200064781640100000000620008fc810204565b15620006b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620005b3565b620006c76000838364010000000062000919810204565b600160a060020a0382166000908152600360205260408120805460019290620006f290849062000f7d565b90915550506000818152600260205260408082208054600160a060020a031916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000774600160a060020a03851664010000000062001253620009e482021704565b15620008f057600160a060020a03841663150b7a026200079c640100000000620004c6810204565b8786866040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401620007dc949392919062000ea6565b602060405180830381600087803b158015620007f757600080fd5b505af19250505080156200082a575060408051601f3d908101601f19168201909252620008279181019062000e5d565b60015b620008a4573d8080156200085b576040519150601f19603f3d011682016040523d82523d6000602084013e62000860565b606091505b5080516200089c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b39062000f20565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050620008f4565b5060015b949350505050565b600090815260026020526040902054600160a060020a0316151590565b6200093483838364010000000062000850620005bc82021704565b600160a060020a0383166200095d576200095781640100000000620009ea810204565b6200098c565b81600160a060020a031683600160a060020a0316146200098c576200098c838264010000000062000a2e810204565b600160a060020a038216620009b557620009af8164010000000062000ade810204565b620005bc565b82600160a060020a031682600160a060020a031614620005bc57620005bc828264010000000062000c07810204565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600162000a4b8464010000000062000d0e62000c5b82021704565b62000a57919062000f98565b60008381526007602052604090205490915080821462000aab57600160a060020a03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b506000918252600760209081526040808420849055600160a060020a039094168352600681528383209183525290812055565b60085460009062000af29060019062000f98565b6000838152600960205260408120546008805493945090928490811062000b42577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000b8b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000beb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000c228364010000000062000d0e62000c5b82021704565b600160a060020a039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000600160a060020a03821662000cf5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401620005b3565b50600160a060020a031660009081526003602052604090205490565b82805462000d1f9062000fb2565b90600052602060002090601f01602090048101928262000d43576000855562000d8e565b82601f1062000d5e57805160ff191683800117855562000d8e565b8280016001018555821562000d8e579182015b8281111562000d8e57825182559160200191906001019062000d71565b5062000d9c92915062000e46565b5090565b82805482825590600052602060002090600f0160109004810192821562000d8e5791602002820160005b8382111562000e0c57835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262000dca565b801562000e3c5782816101000a81549061ffff021916905560020160208160010104928301926001030262000e0c565b505062000d9c9291505b5b8082111562000d9c576000815560010162000e47565b60006020828403121562000e6f578081fd5b81517fffffffff000000000000000000000000000000000000000000000000000000008116811462000e9f578182fd5b9392505050565b6000600160a060020a0380871683526020818716818501528560408501526080606085015284519150816080850152825b8281101562000ef55785810182015185820160a00152810162000ed7565b8281111562000f07578360a084870101525b5050601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6000821982111562000f935762000f9362001008565b500190565b60008282101562000fad5762000fad62001008565b500390565b60028104600182168062000fc757607f821691505b6020821081141562001002577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6127ce80620010476000396000f3fe6080604052600436106101815760e060020a600035046301ffc9a7811461018657806306fdde03146101bb578063081812fc146101dd5780630820f9f314610215578063095ea7b31461023757806318160ddd1461025757806323b872dd1461027657806324f46890146102965780632f745c59146102b757806342842e0e146102d75780634f6ccce7146102f75780635dae4e5014610317578063620b73031461031f5780636352211e146103345780636c0360eb1461035457806370a0823114610369578063715018a6146103895780637432a3841461039e5780638316b47a146103d15780638462151c146103e65780638da5cb5b146104135780638e3e0a591461042857806395d89b4114610448578063a035b1fe1461045d578063a22cb46514610479578063b755186b14610499578063b88d4fde146104ae578063c87b56dd146104ce578063ca59cc78146104ee578063d49d51811461050e578063e40e97a714610523578063e985e9c514610543578063f2fde38b14610563575b600080fd5b34801561019257600080fd5b506101a66101a1366004611f34565b610583565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d06105b3565b6040516101b291906120a5565b3480156101e957600080fd5b506101fd6101f8366004611fb1565b610645565b604051600160a060020a0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611dec565b6106d8565b005b34801561024357600080fd5b50610235610252366004611f0b565b610738565b34801561026357600080fd5b506008545b6040519081526020016101b2565b34801561028257600080fd5b50610235610291366004611e1e565b610855565b3480156102a257600080fd5b50600a546101a69060a060020a900460ff1681565b3480156102c357600080fd5b506102686102d2366004611f0b565b610889565b3480156102e357600080fd5b506102356102f2366004611e1e565b610925565b34801561030357600080fd5b50610268610312366004611fb1565b610940565b6102356109ea565b34801561032b57600080fd5b506101d0610be0565b34801561034057600080fd5b506101fd61034f366004611fb1565b610c03565b34801561036057600080fd5b506101d0610c80565b34801561037557600080fd5b50610268610384366004611dcb565b610d0e565b34801561039557600080fd5b50610235610d9b565b3480156103aa57600080fd5b506103be6103b9366004611fb1565b610e05565b60405161ffff90911681526020016101b2565b3480156103dd57600080fd5b50610235610e3d565b3480156103f257600080fd5b50610406610401366004611dcb565b610e81565b6040516101b29190612061565b34801561041f57600080fd5b506101fd610f67565b34801561043457600080fd5b50600d546101fd90600160a060020a031681565b34801561045457600080fd5b506101d0610f76565b34801561046957600080fd5b5061026867016345785d8a000081565b34801561048557600080fd5b50610235610494366004611ed1565b610f85565b3480156104a557600080fd5b50610235611059565b3480156104ba57600080fd5b506102356104c9366004611e59565b6110a3565b3480156104da57600080fd5b506101d06104e9366004611fb1565b6110de565b3480156104fa57600080fd5b50600c546101fd90600160a060020a031681565b34801561051a57600080fd5b50610268606481565b34801561052f57600080fd5b5061023561053e366004611f6c565b6110f9565b34801561054f57600080fd5b506101a661055e366004611dec565b61113e565b34801561056f57600080fd5b5061023561057e366004611dcb565b61116c565b6000600160e060020a0319821660e060020a63780e9d630214806105ab57506105ab82611259565b90505b919050565b6060600080546105c290612205565b80601f01602080910402602001604051908101604052809291908181526020018280546105ee90612205565b801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b6000610650826112b2565b6106bc5760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e6578604482015260a160020a6b34b9ba32b73a103a37b5b2b70260648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b336106e1610f67565b600160a060020a03161461070a5760405160e560020a62461bcd0281526004016106b39061210d565b600c8054600160a060020a03938416600160a060020a031991821617909155600d8054929093169116179055565b600061074382610c03565b905080600160a060020a031683600160a060020a031614156107b75760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e65604482015260f960020a60390260648201526084016106b3565b33600160a060020a03821614806107d357506107d3813361055e565b6108465760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152604260020a771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b0260648201526084016106b3565b61085083836112cf565b505050565b61085f338261133d565b61087e5760405160e560020a62461bcd0281526004016106b390612142565b61085083838361140d565b600061089483610d0e565b82106108fc5760405160e560020a62461bcd02815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f75604482015260a860020a6a74206f6620626f756e64730260648201526084016106b3565b50600160a060020a03919091166000908152600660209081526040808320938352929052205490565b610850838383604051806020016040528060008152506110a3565b600061094b60085490565b82106109b45760405160e560020a62461bcd02815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f604482015260a060020a6b7574206f6620626f756e64730260648201526084016106b3565b600882815481106109d85760e060020a634e487b7102600052603260045260246000fd5b90600052602060002001549050919050565b600a5460a060020a900460ff161515600114610a445760405160e560020a62461bcd0281526020600482015260136024820152606a60020a7214d85b19481a185cdb89dd081cdd185c9d19590260448201526064016106b3565b6064610a4f60085490565b10610a985760405160e560020a62461bcd0281526020600482015260136024820152606960020a7227379036b7b932903930b4b710323937b839970260448201526064016106b3565b67016345785d8a0000341015610af15760405160e560020a62461bcd0281526020600482015260186024820152604160020a772732b2b2103434b3b432b91032ba3432b9103b30b63ab2970260448201526064016106b3565b6000610afc60085490565b9050610b066115b2565b600b8281548110610b2a5760e060020a634e487b7102600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550610b6333826115f6565b600c54604051600160a060020a039091169060009066b1a2bc2ec500009082818181858883f19350505050158015610b9f573d6000803e3d6000fd5b50600d54604051600160a060020a039091169060009066b1a2bc2ec500009082818181858883f19350505050158015610bdc573d6000803e3d6000fd5b5050565b6060604051806104c0016040528061048481526020016123156104849139905090565b600081815260026020526040812054600160a060020a0316806105ab5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e6578697374604482015260b960020a6832b73a103a37b5b2b70260648201526084016106b3565b600e8054610c8d90612205565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb990612205565b8015610d065780601f10610cdb57610100808354040283529160200191610d06565b820191906000526020600020905b815481529060010190602001808311610ce957829003601f168201915b505050505081565b6000600160a060020a038216610d7f5760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015260b060020a69726f20616464726573730260648201526084016106b3565b50600160a060020a031660009081526003602052604090205490565b33610da4610f67565b600160a060020a031614610dcd5760405160e560020a62461bcd0281526004016106b39061210d565b600a54604051600091600160a060020a0316906000805160206122d5833981519152908390a3600a8054600160a060020a0319169055565b600b8181548110610e1557600080fd5b9060005260206000209060109182820401919006600202915054906101000a900461ffff1681565b33610e46610f67565b600160a060020a031614610e6f5760405160e560020a62461bcd0281526004016106b39061210d565b600a805460a060020a60ff0219169055565b60606000610e8e83610d0e565b905080610eab5750506040805160008152602081019091526105ae565b6000816001604060020a03811115610ed65760e060020a634e487b7102600052604160045260246000fd5b604051908082528060200260200182016040528015610eff578160200160208202803683370190505b50905060005b82811015610f5757610f178582610889565b828281518110610f3a5760e060020a634e487b7102600052603260045260246000fd5b602090810291909101015280610f4f8161223e565b915050610f05565b5091506105ae9050565b50919050565b600a54600160a060020a031690565b6060600180546105c290612205565b600160a060020a038216331415610fe05760405160e560020a62461bcd0281526020600482015260196024820152603960020a7822a9219b99189d1030b8383937bb32903a379031b0b63632b90260448201526064016106b3565b336000818152600560209081526040808320600160a060020a0387168085529252909120805460ff191684151517905590600160a060020a03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161104d911515815260200190565b60405180910390a35050565b33611062610f67565b600160a060020a03161461108b5760405160e560020a62461bcd0281526004016106b39061210d565b600a805460a060020a60ff02191660a060020a179055565b6110ad338361133d565b6110cc5760405160e560020a62461bcd0281526004016106b390612142565b6110d884848484611610565b50505050565b60606105ab6110eb611646565b6110f484611655565b61177b565b33611102610f67565b600160a060020a03161461112b5760405160e560020a62461bcd0281526004016106b39061210d565b8051610bdc90600e906020840190611ca6565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33611175610f67565b600160a060020a03161461119e5760405160e560020a62461bcd0281526004016106b39061210d565b600160a060020a0381166112095760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061604482015260d060020a656464726573730260648201526084016106b3565b600a54604051600160a060020a038084169216906000805160206122d583398151915290600090a3600a8054600160a060020a031916600160a060020a0392909216919091179055565b3b151590565b6000600160e060020a0319821660e060020a6380ac58cd0214806112905750600160e060020a0319821660e060020a635b5e139f02145b806105ab575060e060020a6301ffc9a702600160e060020a03198316146105ab565b600090815260026020526040902054600160a060020a0316151590565b60008181526004602052604090208054600160a060020a031916600160a060020a038416908117909155819061130482610c03565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611348826112b2565b6113af5760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578604482015260a160020a6b34b9ba32b73a103a37b5b2b70260648201526084016106b3565b60006113ba83610c03565b905080600160a060020a031684600160a060020a031614806113f5575083600160a060020a03166113ea84610645565b600160a060020a0316145b806114055750611405818561113e565b949350505050565b82600160a060020a031661142082610c03565b600160a060020a03161461148e5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e20746861742069604482015260b960020a6839903737ba1037bbb70260648201526084016106b3565b600160a060020a0382166114f65760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f20616464604482015260e060020a63726573730260648201526084016106b3565b6115018383836117a7565b61150c6000826112cf565b600160a060020a03831660009081526003602052604081208054600192906115359084906121c2565b9091555050600160a060020a0382166000908152600360205260408120805460019290611563908490612196565b90915550506000818152600260205260408082208054600160a060020a031916600160a060020a0386811691821790925591518493918716916000805160206122f583398151915291a4505050565b600042446115bf60085490565b604080516020810194909452830191909152606082015260800160408051601f198184030181529190528051602090910120905090565b610bdc828260405180602001604052806000815250611864565b61161b84848461140d565b6116278484848461189a565b6110d85760405160e560020a62461bcd0281526004016106b3906120b8565b6060600e80546105c290612205565b60608161167d5750604080518082019091526001815260fc60020a60030260208201526105ae565b8160005b81156116a757806116918161223e565b91506116a09050600a836121ae565b9150611681565b6000816001604060020a038111156116d25760e060020a634e487b7102600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116fc576020820181803683370190505b5090505b8415611405576117116001836121c2565b915061171e600a86612259565b611729906030612196565b60f860020a028183815181106117525760e060020a634e487b7102600052603260045260246000fd5b6020010190600160f860020a031916908160001a905350611774600a866121ae565b9450611700565b60608282604051602001611790929190611ff5565b604051602081830303815290604052905092915050565b600160a060020a038316611802576117fd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611825565b81600160a060020a031683600160a060020a0316146118255761182583826119b0565b600160a060020a0382166118415761183c81611a4d565b610850565b82600160a060020a031682600160a060020a031614610850576108508282611b2f565b61186e8383611b73565b61187b600084848461189a565b6108505760405160e560020a62461bcd0281526004016106b3906120b8565b6000600160a060020a0384163b156119a55760405160e160020a630a85bd01028152600160a060020a0385169063150b7a02906118e1903390899088908890600401612024565b602060405180830381600087803b1580156118fb57600080fd5b505af192505050801561192b575060408051601f3d908101601f1916820190925261192891810190611f50565b60015b611988573d808015611959576040519150601f19603f3d011682016040523d82523d6000602084013e61195e565b606091505b5080516119805760405160e560020a62461bcd0281526004016106b3906120b8565b805181602001fd5b600160e060020a03191660e160020a630a85bd0102149050611405565b506001949350505050565b600060016119bd84610d0e565b6119c791906121c2565b600083815260076020526040902054909150808214611a1a57600160a060020a03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b506000918252600760209081526040808420849055600160a060020a039094168352600681528383209183525290812055565b600854600090611a5f906001906121c2565b60008381526009602052604081205460088054939450909284908110611a985760e060020a634e487b7102600052603260045260246000fd5b906000526020600020015490508060088381548110611aca5760e060020a634e487b7102600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b135760e060020a634e487b7102600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b3a83610d0e565b600160a060020a039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600160a060020a038216611bcc5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b3565b611bd5816112b2565b15611c255760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b3565b611c31600083836117a7565b600160a060020a0382166000908152600360205260408120805460019290611c5a908490612196565b90915550506000818152600260205260408082208054600160a060020a031916600160a060020a03861690811790915590518392906000805160206122f5833981519152908290a45050565b828054611cb290612205565b90600052602060002090601f016020900481019282611cd45760008555611d1a565b82601f10611ced57805160ff1916838001178555611d1a565b82800160010185558215611d1a579182015b82811115611d1a578251825591602001919060010190611cff565b50611d26929150611d2a565b5090565b5b80821115611d265760008155600101611d2b565b60006001604060020a0380841115611d5957611d596122a1565b604051601f8501601f19908116603f01168101908282118183101715611d8157611d816122a1565b81604052809350858152868686011115611d9a57600080fd5b858560208301376000602087830101525050509392505050565b8035600160a060020a03811681146105ae57600080fd5b600060208284031215611ddc578081fd5b611de582611db4565b9392505050565b60008060408385031215611dfe578081fd5b611e0783611db4565b9150611e1560208401611db4565b90509250929050565b600080600060608486031215611e32578081fd5b611e3b84611db4565b9250611e4960208501611db4565b9150604084013590509250925092565b60008060008060808587031215611e6e578081fd5b611e7785611db4565b9350611e8560208601611db4565b92506040850135915060608501356001604060020a03811115611ea6578182fd5b8501601f81018713611eb6578182fd5b611ec587823560208401611d3f565b91505092959194509250565b60008060408385031215611ee3578182fd5b611eec83611db4565b915060208301358015158114611f00578182fd5b809150509250929050565b60008060408385031215611f1d578182fd5b611f2683611db4565b946020939093013593505050565b600060208284031215611f45578081fd5b8135611de5816122bb565b600060208284031215611f61578081fd5b8151611de5816122bb565b600060208284031215611f7d578081fd5b81356001604060020a03811115611f92578182fd5b8201601f81018413611fa2578182fd5b61140584823560208401611d3f565b600060208284031215611fc2578081fd5b5035919050565b60008151808452611fe18160208601602086016121d9565b601f01601f19169290920160200192915050565b600083516120078184602088016121d9565b83519083019061201b8183602088016121d9565b01949350505050565b600160a060020a038581168252841660208201526040810183905260806060820181905260009061205790830184611fc9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120995783518352928401929184019160010161207d565b50909695505050505050565b600060208252611de56020830184611fc9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e2045524337323152656040820152607160020a7131b2b4bb32b91034b6b83632b6b2b73a32b902606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152607a60020a701ddb995c881b9bdc88185c1c1c9bdd995902606082015260800190565b600082198211156121a9576121a961226d565b500190565b6000826121bd576121bd612287565b500490565b6000828210156121d4576121d461226d565b500390565b60005b838110156121f45781810151838201526020016121dc565b838111156110d85750506000910152565b60028104600182168061221957607f821691505b60208210811415610f615760e060020a634e487b710260009081526022600452602490fd5b60006000198214156122525761225261226d565b5060010190565b60008261226857612268612287565b500690565b60e060020a634e487b710260009081526011600452602490fd5b60e060020a634e487b710260009081526012600452602490fd5b60e060020a634e487b710260009081526041600452602490fd5b600160e060020a0319811681146122d157600080fd5b5056fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef636c6173732052616e646f6d7b636f6e7374727563746f722873297b746869732e733d737d725f6428297b72657475726e20746869732e735e3d746869732e733c3c31332c746869732e735e3d746869732e733e3e31372c746869732e735e3d746869732e733c3c352c28303e746869732e733f7e746869732e732b313a746869732e7329253165332f3165337d7228612c62297b72657475726e20612b28622d61292a746869732e725f6428297d7d636c617373205061727469636c657b636f6e7374727563746f7228297b746869732e7228297d7228297b746869732e783d522e7228302c77292c746869732e793d522e7228302c77292c746869732e76793d522e72282e3030312c2e31292c746869732e6d6178793d746869732e792b522e7228302c77292c746869732e723d302c746869732e74723d35302c746869732e773d522e72282e312c32292c746869732e636f6c6f723d5b522e7228302c323535292c522e7228302c323535292c522e7228302c323535295d7d7528297b746869732e793c746869732e6d6178793f746869732e792b3d746869732e76793a746869732e722b2b2c746869732e723e746869732e74722626746869732e7228297d6428297b7374726f6b6557656967687428746869732e77292c7374726f6b6528746869732e636f6c6f725b305d2c746869732e636f6c6f725b315d2c746869732e636f6c6f725b325d292c7075736828292c7472616e736c61746528746869732e782c746869732e79292c626567696e536861706528292c7374726f6b655765696768742836293b69662875297b76657274657828302c35292c717561647261746963566572746578282d362c302c302c2d32292c71756164726174696356657274657828362c302c302c3130297d656c73657b76657274657828302c2d35292c71756164726174696356657274657828362c302c302c32292c717561647261746963566572746578282d362c302c302c2d3130297d656e64536861706528434c4f5345292c706f7028297d7d66756e6374696f6e20736574757028297b63726561746543616e76617328772c77292e706172656e74282763616e766173506172656e7427292c656c6c697073654d6f646528524144495553292c6e6f46696c6c28292c673d522e7228302c3939293c353b69662867297b63313d636f6c6f7228522e7228302c323535292c522e7228302c323535292c522e7228302c32353529293b63323d636f6c6f7228522e7228302c323535292c522e7228302c323535292c522e7228302c32353529293b666f722876617220793d303b793c773b792b2b297b7374726f6b65286c657270436f6c6f722863312c63322c6d617028792c302c772c302c312929293b6c696e6528302c792c772c79297d7d656c73657b6261636b67726f756e6428522e7228302c323535292c522e7228302c323535292c522e7228302c32353529297d686f774d616e793d522e7228312c3230293b753d522e7228302c3939293c353b666f722876617220693d303b693c686f774d616e793b692b2b297b6c657420703d6e6577205061727469636c653b702e6428297d7da2646970667358221220b5e7261e54be036a468283331d539417c18f1e2b0514f2f4ccdc57f48b28a02064736f6c6343000803003368747470733a2f2f636172626f6e7261696e64726f70732e636f6d2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101815760e060020a600035046301ffc9a7811461018657806306fdde03146101bb578063081812fc146101dd5780630820f9f314610215578063095ea7b31461023757806318160ddd1461025757806323b872dd1461027657806324f46890146102965780632f745c59146102b757806342842e0e146102d75780634f6ccce7146102f75780635dae4e5014610317578063620b73031461031f5780636352211e146103345780636c0360eb1461035457806370a0823114610369578063715018a6146103895780637432a3841461039e5780638316b47a146103d15780638462151c146103e65780638da5cb5b146104135780638e3e0a591461042857806395d89b4114610448578063a035b1fe1461045d578063a22cb46514610479578063b755186b14610499578063b88d4fde146104ae578063c87b56dd146104ce578063ca59cc78146104ee578063d49d51811461050e578063e40e97a714610523578063e985e9c514610543578063f2fde38b14610563575b600080fd5b34801561019257600080fd5b506101a66101a1366004611f34565b610583565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d06105b3565b6040516101b291906120a5565b3480156101e957600080fd5b506101fd6101f8366004611fb1565b610645565b604051600160a060020a0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611dec565b6106d8565b005b34801561024357600080fd5b50610235610252366004611f0b565b610738565b34801561026357600080fd5b506008545b6040519081526020016101b2565b34801561028257600080fd5b50610235610291366004611e1e565b610855565b3480156102a257600080fd5b50600a546101a69060a060020a900460ff1681565b3480156102c357600080fd5b506102686102d2366004611f0b565b610889565b3480156102e357600080fd5b506102356102f2366004611e1e565b610925565b34801561030357600080fd5b50610268610312366004611fb1565b610940565b6102356109ea565b34801561032b57600080fd5b506101d0610be0565b34801561034057600080fd5b506101fd61034f366004611fb1565b610c03565b34801561036057600080fd5b506101d0610c80565b34801561037557600080fd5b50610268610384366004611dcb565b610d0e565b34801561039557600080fd5b50610235610d9b565b3480156103aa57600080fd5b506103be6103b9366004611fb1565b610e05565b60405161ffff90911681526020016101b2565b3480156103dd57600080fd5b50610235610e3d565b3480156103f257600080fd5b50610406610401366004611dcb565b610e81565b6040516101b29190612061565b34801561041f57600080fd5b506101fd610f67565b34801561043457600080fd5b50600d546101fd90600160a060020a031681565b34801561045457600080fd5b506101d0610f76565b34801561046957600080fd5b5061026867016345785d8a000081565b34801561048557600080fd5b50610235610494366004611ed1565b610f85565b3480156104a557600080fd5b50610235611059565b3480156104ba57600080fd5b506102356104c9366004611e59565b6110a3565b3480156104da57600080fd5b506101d06104e9366004611fb1565b6110de565b3480156104fa57600080fd5b50600c546101fd90600160a060020a031681565b34801561051a57600080fd5b50610268606481565b34801561052f57600080fd5b5061023561053e366004611f6c565b6110f9565b34801561054f57600080fd5b506101a661055e366004611dec565b61113e565b34801561056f57600080fd5b5061023561057e366004611dcb565b61116c565b6000600160e060020a0319821660e060020a63780e9d630214806105ab57506105ab82611259565b90505b919050565b6060600080546105c290612205565b80601f01602080910402602001604051908101604052809291908181526020018280546105ee90612205565b801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b6000610650826112b2565b6106bc5760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e6578604482015260a160020a6b34b9ba32b73a103a37b5b2b70260648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b336106e1610f67565b600160a060020a03161461070a5760405160e560020a62461bcd0281526004016106b39061210d565b600c8054600160a060020a03938416600160a060020a031991821617909155600d8054929093169116179055565b600061074382610c03565b905080600160a060020a031683600160a060020a031614156107b75760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e65604482015260f960020a60390260648201526084016106b3565b33600160a060020a03821614806107d357506107d3813361055e565b6108465760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152604260020a771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b0260648201526084016106b3565b61085083836112cf565b505050565b61085f338261133d565b61087e5760405160e560020a62461bcd0281526004016106b390612142565b61085083838361140d565b600061089483610d0e565b82106108fc5760405160e560020a62461bcd02815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f75604482015260a860020a6a74206f6620626f756e64730260648201526084016106b3565b50600160a060020a03919091166000908152600660209081526040808320938352929052205490565b610850838383604051806020016040528060008152506110a3565b600061094b60085490565b82106109b45760405160e560020a62461bcd02815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f604482015260a060020a6b7574206f6620626f756e64730260648201526084016106b3565b600882815481106109d85760e060020a634e487b7102600052603260045260246000fd5b90600052602060002001549050919050565b600a5460a060020a900460ff161515600114610a445760405160e560020a62461bcd0281526020600482015260136024820152606a60020a7214d85b19481a185cdb89dd081cdd185c9d19590260448201526064016106b3565b6064610a4f60085490565b10610a985760405160e560020a62461bcd0281526020600482015260136024820152606960020a7227379036b7b932903930b4b710323937b839970260448201526064016106b3565b67016345785d8a0000341015610af15760405160e560020a62461bcd0281526020600482015260186024820152604160020a772732b2b2103434b3b432b91032ba3432b9103b30b63ab2970260448201526064016106b3565b6000610afc60085490565b9050610b066115b2565b600b8281548110610b2a5760e060020a634e487b7102600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550610b6333826115f6565b600c54604051600160a060020a039091169060009066b1a2bc2ec500009082818181858883f19350505050158015610b9f573d6000803e3d6000fd5b50600d54604051600160a060020a039091169060009066b1a2bc2ec500009082818181858883f19350505050158015610bdc573d6000803e3d6000fd5b5050565b6060604051806104c0016040528061048481526020016123156104849139905090565b600081815260026020526040812054600160a060020a0316806105ab5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e6578697374604482015260b960020a6832b73a103a37b5b2b70260648201526084016106b3565b600e8054610c8d90612205565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb990612205565b8015610d065780601f10610cdb57610100808354040283529160200191610d06565b820191906000526020600020905b815481529060010190602001808311610ce957829003601f168201915b505050505081565b6000600160a060020a038216610d7f5760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015260b060020a69726f20616464726573730260648201526084016106b3565b50600160a060020a031660009081526003602052604090205490565b33610da4610f67565b600160a060020a031614610dcd5760405160e560020a62461bcd0281526004016106b39061210d565b600a54604051600091600160a060020a0316906000805160206122d5833981519152908390a3600a8054600160a060020a0319169055565b600b8181548110610e1557600080fd5b9060005260206000209060109182820401919006600202915054906101000a900461ffff1681565b33610e46610f67565b600160a060020a031614610e6f5760405160e560020a62461bcd0281526004016106b39061210d565b600a805460a060020a60ff0219169055565b60606000610e8e83610d0e565b905080610eab5750506040805160008152602081019091526105ae565b6000816001604060020a03811115610ed65760e060020a634e487b7102600052604160045260246000fd5b604051908082528060200260200182016040528015610eff578160200160208202803683370190505b50905060005b82811015610f5757610f178582610889565b828281518110610f3a5760e060020a634e487b7102600052603260045260246000fd5b602090810291909101015280610f4f8161223e565b915050610f05565b5091506105ae9050565b50919050565b600a54600160a060020a031690565b6060600180546105c290612205565b600160a060020a038216331415610fe05760405160e560020a62461bcd0281526020600482015260196024820152603960020a7822a9219b99189d1030b8383937bb32903a379031b0b63632b90260448201526064016106b3565b336000818152600560209081526040808320600160a060020a0387168085529252909120805460ff191684151517905590600160a060020a03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161104d911515815260200190565b60405180910390a35050565b33611062610f67565b600160a060020a03161461108b5760405160e560020a62461bcd0281526004016106b39061210d565b600a805460a060020a60ff02191660a060020a179055565b6110ad338361133d565b6110cc5760405160e560020a62461bcd0281526004016106b390612142565b6110d884848484611610565b50505050565b60606105ab6110eb611646565b6110f484611655565b61177b565b33611102610f67565b600160a060020a03161461112b5760405160e560020a62461bcd0281526004016106b39061210d565b8051610bdc90600e906020840190611ca6565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33611175610f67565b600160a060020a03161461119e5760405160e560020a62461bcd0281526004016106b39061210d565b600160a060020a0381166112095760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061604482015260d060020a656464726573730260648201526084016106b3565b600a54604051600160a060020a038084169216906000805160206122d583398151915290600090a3600a8054600160a060020a031916600160a060020a0392909216919091179055565b3b151590565b6000600160e060020a0319821660e060020a6380ac58cd0214806112905750600160e060020a0319821660e060020a635b5e139f02145b806105ab575060e060020a6301ffc9a702600160e060020a03198316146105ab565b600090815260026020526040902054600160a060020a0316151590565b60008181526004602052604090208054600160a060020a031916600160a060020a038416908117909155819061130482610c03565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611348826112b2565b6113af5760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578604482015260a160020a6b34b9ba32b73a103a37b5b2b70260648201526084016106b3565b60006113ba83610c03565b905080600160a060020a031684600160a060020a031614806113f5575083600160a060020a03166113ea84610645565b600160a060020a0316145b806114055750611405818561113e565b949350505050565b82600160a060020a031661142082610c03565b600160a060020a03161461148e5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e20746861742069604482015260b960020a6839903737ba1037bbb70260648201526084016106b3565b600160a060020a0382166114f65760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f20616464604482015260e060020a63726573730260648201526084016106b3565b6115018383836117a7565b61150c6000826112cf565b600160a060020a03831660009081526003602052604081208054600192906115359084906121c2565b9091555050600160a060020a0382166000908152600360205260408120805460019290611563908490612196565b90915550506000818152600260205260408082208054600160a060020a031916600160a060020a0386811691821790925591518493918716916000805160206122f583398151915291a4505050565b600042446115bf60085490565b604080516020810194909452830191909152606082015260800160408051601f198184030181529190528051602090910120905090565b610bdc828260405180602001604052806000815250611864565b61161b84848461140d565b6116278484848461189a565b6110d85760405160e560020a62461bcd0281526004016106b3906120b8565b6060600e80546105c290612205565b60608161167d5750604080518082019091526001815260fc60020a60030260208201526105ae565b8160005b81156116a757806116918161223e565b91506116a09050600a836121ae565b9150611681565b6000816001604060020a038111156116d25760e060020a634e487b7102600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116fc576020820181803683370190505b5090505b8415611405576117116001836121c2565b915061171e600a86612259565b611729906030612196565b60f860020a028183815181106117525760e060020a634e487b7102600052603260045260246000fd5b6020010190600160f860020a031916908160001a905350611774600a866121ae565b9450611700565b60608282604051602001611790929190611ff5565b604051602081830303815290604052905092915050565b600160a060020a038316611802576117fd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611825565b81600160a060020a031683600160a060020a0316146118255761182583826119b0565b600160a060020a0382166118415761183c81611a4d565b610850565b82600160a060020a031682600160a060020a031614610850576108508282611b2f565b61186e8383611b73565b61187b600084848461189a565b6108505760405160e560020a62461bcd0281526004016106b3906120b8565b6000600160a060020a0384163b156119a55760405160e160020a630a85bd01028152600160a060020a0385169063150b7a02906118e1903390899088908890600401612024565b602060405180830381600087803b1580156118fb57600080fd5b505af192505050801561192b575060408051601f3d908101601f1916820190925261192891810190611f50565b60015b611988573d808015611959576040519150601f19603f3d011682016040523d82523d6000602084013e61195e565b606091505b5080516119805760405160e560020a62461bcd0281526004016106b3906120b8565b805181602001fd5b600160e060020a03191660e160020a630a85bd0102149050611405565b506001949350505050565b600060016119bd84610d0e565b6119c791906121c2565b600083815260076020526040902054909150808214611a1a57600160a060020a03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b506000918252600760209081526040808420849055600160a060020a039094168352600681528383209183525290812055565b600854600090611a5f906001906121c2565b60008381526009602052604081205460088054939450909284908110611a985760e060020a634e487b7102600052603260045260246000fd5b906000526020600020015490508060088381548110611aca5760e060020a634e487b7102600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b135760e060020a634e487b7102600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b3a83610d0e565b600160a060020a039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600160a060020a038216611bcc5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b3565b611bd5816112b2565b15611c255760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b3565b611c31600083836117a7565b600160a060020a0382166000908152600360205260408120805460019290611c5a908490612196565b90915550506000818152600260205260408082208054600160a060020a031916600160a060020a03861690811790915590518392906000805160206122f5833981519152908290a45050565b828054611cb290612205565b90600052602060002090601f016020900481019282611cd45760008555611d1a565b82601f10611ced57805160ff1916838001178555611d1a565b82800160010185558215611d1a579182015b82811115611d1a578251825591602001919060010190611cff565b50611d26929150611d2a565b5090565b5b80821115611d265760008155600101611d2b565b60006001604060020a0380841115611d5957611d596122a1565b604051601f8501601f19908116603f01168101908282118183101715611d8157611d816122a1565b81604052809350858152868686011115611d9a57600080fd5b858560208301376000602087830101525050509392505050565b8035600160a060020a03811681146105ae57600080fd5b600060208284031215611ddc578081fd5b611de582611db4565b9392505050565b60008060408385031215611dfe578081fd5b611e0783611db4565b9150611e1560208401611db4565b90509250929050565b600080600060608486031215611e32578081fd5b611e3b84611db4565b9250611e4960208501611db4565b9150604084013590509250925092565b60008060008060808587031215611e6e578081fd5b611e7785611db4565b9350611e8560208601611db4565b92506040850135915060608501356001604060020a03811115611ea6578182fd5b8501601f81018713611eb6578182fd5b611ec587823560208401611d3f565b91505092959194509250565b60008060408385031215611ee3578182fd5b611eec83611db4565b915060208301358015158114611f00578182fd5b809150509250929050565b60008060408385031215611f1d578182fd5b611f2683611db4565b946020939093013593505050565b600060208284031215611f45578081fd5b8135611de5816122bb565b600060208284031215611f61578081fd5b8151611de5816122bb565b600060208284031215611f7d578081fd5b81356001604060020a03811115611f92578182fd5b8201601f81018413611fa2578182fd5b61140584823560208401611d3f565b600060208284031215611fc2578081fd5b5035919050565b60008151808452611fe18160208601602086016121d9565b601f01601f19169290920160200192915050565b600083516120078184602088016121d9565b83519083019061201b8183602088016121d9565b01949350505050565b600160a060020a038581168252841660208201526040810183905260806060820181905260009061205790830184611fc9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120995783518352928401929184019160010161207d565b50909695505050505050565b600060208252611de56020830184611fc9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e2045524337323152656040820152607160020a7131b2b4bb32b91034b6b83632b6b2b73a32b902606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152607a60020a701ddb995c881b9bdc88185c1c1c9bdd995902606082015260800190565b600082198211156121a9576121a961226d565b500190565b6000826121bd576121bd612287565b500490565b6000828210156121d4576121d461226d565b500390565b60005b838110156121f45781810151838201526020016121dc565b838111156110d85750506000910152565b60028104600182168061221957607f821691505b60208210811415610f615760e060020a634e487b710260009081526022600452602490fd5b60006000198214156122525761225261226d565b5060010190565b60008261226857612268612287565b500690565b60e060020a634e487b710260009081526011600452602490fd5b60e060020a634e487b710260009081526012600452602490fd5b60e060020a634e487b710260009081526041600452602490fd5b600160e060020a0319811681146122d157600080fd5b5056fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef636c6173732052616e646f6d7b636f6e7374727563746f722873297b746869732e733d737d725f6428297b72657475726e20746869732e735e3d746869732e733c3c31332c746869732e735e3d746869732e733e3e31372c746869732e735e3d746869732e733c3c352c28303e746869732e733f7e746869732e732b313a746869732e7329253165332f3165337d7228612c62297b72657475726e20612b28622d61292a746869732e725f6428297d7d636c617373205061727469636c657b636f6e7374727563746f7228297b746869732e7228297d7228297b746869732e783d522e7228302c77292c746869732e793d522e7228302c77292c746869732e76793d522e72282e3030312c2e31292c746869732e6d6178793d746869732e792b522e7228302c77292c746869732e723d302c746869732e74723d35302c746869732e773d522e72282e312c32292c746869732e636f6c6f723d5b522e7228302c323535292c522e7228302c323535292c522e7228302c323535295d7d7528297b746869732e793c746869732e6d6178793f746869732e792b3d746869732e76793a746869732e722b2b2c746869732e723e746869732e74722626746869732e7228297d6428297b7374726f6b6557656967687428746869732e77292c7374726f6b6528746869732e636f6c6f725b305d2c746869732e636f6c6f725b315d2c746869732e636f6c6f725b325d292c7075736828292c7472616e736c61746528746869732e782c746869732e79292c626567696e536861706528292c7374726f6b655765696768742836293b69662875297b76657274657828302c35292c717561647261746963566572746578282d362c302c302c2d32292c71756164726174696356657274657828362c302c302c3130297d656c73657b76657274657828302c2d35292c71756164726174696356657274657828362c302c302c32292c717561647261746963566572746578282d362c302c302c2d3130297d656e64536861706528434c4f5345292c706f7028297d7d66756e6374696f6e20736574757028297b63726561746543616e76617328772c77292e706172656e74282763616e766173506172656e7427292c656c6c697073654d6f646528524144495553292c6e6f46696c6c28292c673d522e7228302c3939293c353b69662867297b63313d636f6c6f7228522e7228302c323535292c522e7228302c323535292c522e7228302c32353529293b63323d636f6c6f7228522e7228302c323535292c522e7228302c323535292c522e7228302c32353529293b666f722876617220793d303b793c773b792b2b297b7374726f6b65286c657270436f6c6f722863312c63322c6d617028792c302c772c302c312929293b6c696e6528302c792c772c79297d7d656c73657b6261636b67726f756e6428522e7228302c323535292c522e7228302c323535292c522e7228302c32353529297d686f774d616e793d522e7228312c3230293b753d522e7228302c3939293c353b666f722876617220693d303b693c686f774d616e793b692b2b297b6c657420703d6e6577205061727469636c653b702e6428297d7da2646970667358221220b5e7261e54be036a468283331d539417c18f1e2b0514f2f4ccdc57f48b28a02064736f6c63430008030033

Deployed Bytecode Sourcemap

50049:4492:0:-:0;;;;;;;;-1:-1:-1;;;50049:4492:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43844:237;;;;;;;;;;-1:-1:-1;43844:237:0;;;;;:::i;:::-;;:::i;:::-;;;6753:14:1;;6746:22;6728:41;;6716:2;6701:18;43844:237:0;;;;;;;;22625:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24092:221::-;;;;;;;;;;-1:-1:-1;24092:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;24092:221:0;5348:102:1;52451:171:0;;;;;;;;;;-1:-1:-1;52451:171:0;;;;;:::i;:::-;;:::i;:::-;;23622:404;;;;;;;;;;-1:-1:-1;23622:404:0;;;;;:::i;:::-;;:::i;44497:113::-;;;;;;;;;;-1:-1:-1;44585:10:0;:17;44497:113;;;15183:25:1;;;15171:2;15156:18;44497:113:0;15138:76:1;24982:305:0;;;;;;;;;;-1:-1:-1;24982:305:0;;;;;:::i;:::-;;:::i;50265:22::-;;;;;;;;;;-1:-1:-1;50265:22:0;;;;-1:-1:-1;;;50265:22:0;;;;;;44165:256;;;;;;;;;;-1:-1:-1;44165:256:0;;;;;:::i;:::-;;:::i;25358:151::-;;;;;;;;;;-1:-1:-1;25358:151:0;;;;;:::i;:::-;;:::i;44687:233::-;;;;;;;;;;-1:-1:-1;44687:233:0;;;;;:::i;:::-;;:::i;51942:501::-;;;:::i;53295:1241::-;;;;;;;;;;;;;:::i;22319:239::-;;;;;;;;;;-1:-1:-1;22319:239:0;;;;;:::i;:::-;;:::i;50492:63::-;;;;;;;;;;;;;:::i;22049:208::-;;;;;;;;;;-1:-1:-1;22049:208:0;;;;;:::i;:::-;;:::i;35264:148::-;;;;;;;;;;;;;:::i;50294:27::-;;;;;;;;;;-1:-1:-1;50294:27:0;;;;;:::i;:::-;;:::i;:::-;;;15018:6:1;15006:19;;;14988:38;;14976:2;14961:18;50294:27:0;14943:89:1;53226:61:0;;;;;;;;;;;;;:::i;51251:501::-;;;;;;;;;;-1:-1:-1;51251:501:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34613:87::-;;;;;;;;;;;;;:::i;50410:75::-;;;;;;;;;;-1:-1:-1;50410:75:0;;;;-1:-1:-1;;;;;50410:75:0;;;22794:104;;;;;;;;;;;;;:::i;50211:47::-;;;;;;;;;;;;50240:18;50211:47;;24385:295;;;;;;;;;;-1:-1:-1;24385:295:0;;;;;:::i;:::-;;:::i;53160:60::-;;;;;;;;;;;;;:::i;25580:285::-;;;;;;;;;;-1:-1:-1;25580:285:0;;;;;:::i;:::-;;:::i;52991:157::-;;;;;;;;;;-1:-1:-1;52991:157:0;;;;;:::i;:::-;;:::i;50328:75::-;;;;;;;;;;-1:-1:-1;50328:75:0;;;;-1:-1:-1;;;;;50328:75:0;;;50174:30;;;;;;;;;;;;50201:3;50174:30;;52733:98;;;;;;;;;;-1:-1:-1;52733:98:0;;;;;:::i;:::-;;:::i;24751:164::-;;;;;;;;;;-1:-1:-1;24751:164:0;;;;;:::i;:::-;;:::i;35567:244::-;;;;;;;;;;-1:-1:-1;35567:244:0;;;;;:::i;:::-;;:::i;43844:237::-;43946:4;-1:-1:-1;;;;;;43970:50:0;;-1:-1:-1;;;;;43970:50:0;;:103;;;44037:36;44061:11;44037:23;:36::i;:::-;43963:110;;43844:237;;;;:::o;22625:100::-;22679:13;22712:5;22705:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22625:100;:::o;24092:221::-;24168:7;24196:16;24204:7;24196;:16::i;:::-;24188:73;;;;-1:-1:-1;;;;;24188:73:0;;12281:2:1;24188:73:0;;;12263:21:1;12320:2;12300:18;;;12293:30;12359:34;12339:18;;;12332:62;-1:-1:-1;;;;;12410:18:1;;;12403:42;12462:19;;24188:73:0;;;;;;;;;-1:-1:-1;24281:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24281:24:0;;24092:221::o;52451:171::-;17039:10;34833:7;:5;:7::i;:::-;-1:-1:-1;;;;;34833:23:0;;34825:68;;;;-1:-1:-1;;;;;34825:68:0;;;;;;;:::i;:::-;52549:15:::1;:27:::0;;-1:-1:-1;;;;;52549:27:0;;::::1;-1:-1:-1::0;;;;;;52549:27:0;;::::1;;::::0;;;52587:15:::1;:27:::0;;;;;::::1;::::0;::::1;;::::0;;52451:171::o;23622:404::-;23703:13;23719:23;23734:7;23719:14;:23::i;:::-;23703:39;;23767:5;-1:-1:-1;;;;;23761:11:0;:2;-1:-1:-1;;;;;23761:11:0;;;23753:57;;;;-1:-1:-1;;;;;23753:57:0;;13465:2:1;23753:57:0;;;13447:21:1;13504:2;13484:18;;;13477:30;13543:34;13523:18;;;13516:62;-1:-1:-1;;;;;13594:18:1;;;13587:31;13635:19;;23753:57:0;13437:223:1;23753:57:0;17039:10;-1:-1:-1;;;;;23831:21:0;;;;:69;;-1:-1:-1;23856:44:0;23880:5;17039:10;23887:12;16959:98;23856:44;23823:161;;;;-1:-1:-1;;;;;23823:161:0;;10674:2:1;23823:161:0;;;10656:21:1;10713:2;10693:18;;;10686:30;10752:34;10732:18;;;10725:62;-1:-1:-1;;;;;10803:18:1;;;10796:54;10867:19;;23823:161:0;10646:246:1;23823:161:0;23997:21;24006:2;24010:7;23997:8;:21::i;:::-;23622:404;;;:::o;24982:305::-;25143:41;17039:10;25176:7;25143:18;:41::i;:::-;25135:103;;;;-1:-1:-1;;;;;25135:103:0;;;;;;;:::i;:::-;25251:28;25261:4;25267:2;25271:7;25251:9;:28::i;44165:256::-;44262:7;44298:23;44315:5;44298:16;:23::i;:::-;44290:5;:31;44282:87;;;;-1:-1:-1;;;;;44282:87:0;;7559:2:1;44282:87:0;;;7541:21:1;7598:2;7578:18;;;7571:30;7637:34;7617:18;;;7610:62;-1:-1:-1;;;;;7688:18:1;;;7681:41;7739:19;;44282:87:0;7531:233:1;44282:87:0;-1:-1:-1;;;;;;44387:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44165:256::o;25358:151::-;25462:39;25479:4;25485:2;25489:7;25462:39;;;;;;;;;;;;:16;:39::i;44687:233::-;44762:7;44798:30;44585:10;:17;44497:113;;44798:30;44790:5;:38;44782:95;;;;-1:-1:-1;;;;;44782:95:0;;14285:2:1;44782:95:0;;;14267:21:1;14324:2;14304:18;;;14297:30;14363:34;14343:18;;;14336:62;-1:-1:-1;;;;;14414:18:1;;;14407:42;14466:19;;44782:95:0;14257:234:1;44782:95:0;44895:10;44906:5;44895:17;;;;;;-1:-1:-1;;;;;44895:17:0;;;;;;;;;;;;;;;;;44888:24;;44687:233;;;:::o;51942:501::-;51998:3;;-1:-1:-1;;;51998:3:0;;;;:11;;52005:4;51998:11;51990:43;;;;-1:-1:-1;;;;;51990:43:0;;14698:2:1;51990:43:0;;;14680:21:1;14737:2;14717:18;;;14710:30;-1:-1:-1;;;;;14756:18:1;;;14749:49;14815:18;;51990:43:0;14670:169:1;51990:43:0;50201:3;52052:13;44585:10;:17;44497:113;;52052:13;:19;52044:51;;;;-1:-1:-1;;;;;52044:51:0;;9913:2:1;52044:51:0;;;9895:21:1;9952:2;9932:18;;;9925:30;-1:-1:-1;;;;;9971:18:1;;;9964:49;10030:18;;52044:51:0;9885:169:1;52044:51:0;50240:18;52114:9;:18;;52106:55;;;;-1:-1:-1;;;;;52106:55:0;;7206:2:1;52106:55:0;;;7188:21:1;7245:2;7225:18;;;7218:30;-1:-1:-1;;;;;7264:18:1;;;7257:54;7328:18;;52106:55:0;7178:174:1;52106:55:0;52174:14;52191:13;44585:10;:17;44497:113;;52191:13;52174:30;;52240:8;:6;:8::i;:::-;52215:11;52227:9;52215:22;;;;;;-1:-1:-1;;;;;52215:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;52259:32;52269:10;52281:9;52259;:32::i;:::-;52318:15;;52302:61;;-1:-1:-1;;;;;52318:15:0;;;;;;52345:17;;52318:15;52302:61;52318:15;52302:61;52345:17;52318:15;;52302:61;;;;;;;;;;;;;;;;;;;-1:-1:-1;52390:15:0;;52374:61;;-1:-1:-1;;;;;52390:15:0;;;;;;52417:17;;52390:15;52374:61;52390:15;52374:61;52417:17;52390:15;;52374:61;;;;;;;;;;;;;;;;;;;;51942:501;:::o;53295:1241::-;53337:13;53363:1165;;;;;;;;;;;;;;;;;;;53295:1241;:::o;22319:239::-;22391:7;22427:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22427:16:0;22462:19;22454:73;;;;-1:-1:-1;;;;;22454:73:0;;11510:2:1;22454:73:0;;;11492:21:1;11549:2;11529:18;;;11522:30;11588:34;11568:18;;;11561:62;-1:-1:-1;;;;;11639:18:1;;;11632:39;11688:19;;22454:73:0;11482:231:1;50492:63:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22049:208::-;22121:7;-1:-1:-1;;;;;22149:19:0;;22141:74;;;;-1:-1:-1;;;;;22141:74:0;;11099:2:1;22141:74:0;;;11081:21:1;11138:2;11118:18;;;11111:30;11177:34;11157:18;;;11150:62;-1:-1:-1;;;;;11228:18:1;;;11221:40;11278:19;;22141:74:0;11071:232:1;22141:74:0;-1:-1:-1;;;;;;22233:16:0;;;;;:9;:16;;;;;;;22049:208::o;35264:148::-;17039:10;34833:7;:5;:7::i;:::-;-1:-1:-1;;;;;34833:23:0;;34825:68;;;;-1:-1:-1;;;;;34825:68:0;;;;;;;:::i;:::-;35355:6:::1;::::0;35334:40:::1;::::0;35371:1:::1;::::0;-1:-1:-1;;;;;35355:6:0::1;::::0;-1:-1:-1;;;;;;;;;;;35334:40:0;35371:1;;35334:40:::1;35385:6;:19:::0;;-1:-1:-1;;;;;;35385:19:0::1;::::0;;35264:148::o;50294:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53226:61::-;17039:10;34833:7;:5;:7::i;:::-;-1:-1:-1;;;;;34833:23:0;;34825:68;;;;-1:-1:-1;;;;;34825:68:0;;;;;;;:::i;:::-;53268:3:::1;:11:::0;;-1:-1:-1;;;;;;53268:11:0::1;::::0;;53226:61::o;51251:501::-;51312:16;51341:18;51362:17;51372:6;51362:9;:17::i;:::-;51341:38;-1:-1:-1;51394:15:0;51390:355;;-1:-1:-1;;51433:16:0;;;51447:1;51433:16;;;;;;;;51426:23;;51390:355;51482:23;51522:10;-1:-1:-1;;;;;51508:25:0;;;;;-1:-1:-1;;;;;51508:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51508:25:0;;51482:51;;51548:13;51576:130;51600:10;51592:5;:18;51576:130;;;51656:34;51676:6;51684:5;51656:19;:34::i;:::-;51640:6;51647:5;51640:13;;;;;;-1:-1:-1;;;;;51640:13:0;;;;;;;;;;;;;;;;;;:50;51612:7;;;;:::i;:::-;;;;51576:130;;;-1:-1:-1;51727:6:0;-1:-1:-1;51720:13:0;;-1:-1:-1;51720:13:0;51390:355;51251:501;;;;:::o;34613:87::-;34686:6;;-1:-1:-1;;;;;34686:6:0;34613:87;:::o;22794:104::-;22850:13;22883:7;22876:14;;;;;:::i;24385:295::-;-1:-1:-1;;;;;24488:24:0;;17039:10;24488:24;;24480:62;;;;-1:-1:-1;;;;;24480:62:0;;9559:2:1;24480:62:0;;;9541:21:1;9598:2;9578:18;;;9571:30;-1:-1:-1;;;;;9617:18:1;;;9610:55;9682:18;;24480:62:0;9531:175:1;24480:62:0;17039:10;24555:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24555:42:0;;;;;;;;;;:53;;-1:-1:-1;;24555:53:0;;;;;;;:42;-1:-1:-1;;;;;24624:48:0;;24663:8;24624:48;;;;6753:14:1;6746:22;6728:41;;6716:2;6701:18;;6683:92;24624:48:0;;;;;;;;24385:295;;:::o;53160:60::-;17039:10;34833:7;:5;:7::i;:::-;-1:-1:-1;;;;;34833:23:0;;34825:68;;;;-1:-1:-1;;;;;34825:68:0;;;;;;;:::i;:::-;53202:3:::1;:10:::0;;-1:-1:-1;;;;;;53202:10:0::1;-1:-1:-1::0;;;53202:10:0::1;::::0;;53160:60::o;25580:285::-;25712:41;17039:10;25745:7;25712:18;:41::i;:::-;25704:103;;;;-1:-1:-1;;;;;25704:103:0;;;;;;;:::i;:::-;25818:39;25832:4;25838:2;25842:7;25851:5;25818:13;:39::i;:::-;25580:285;;;;:::o;52991:157::-;53057:13;53090:50;53097:14;:12;:14::i;:::-;53113:26;53130:8;53113:16;:26::i;:::-;53090:6;:50::i;52733:98::-;17039:10;34833:7;:5;:7::i;:::-;-1:-1:-1;;;;;34833:23:0;;34825:68;;;;-1:-1:-1;;;;;34825:68:0;;;;;;;:::i;:::-;52809:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;24751:164::-:0;-1:-1:-1;;;;;24872:25:0;;;24848:4;24872:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24751:164::o;35567:244::-;17039:10;34833:7;:5;:7::i;:::-;-1:-1:-1;;;;;34833:23:0;;34825:68;;;;-1:-1:-1;;;;;34825:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35656:22:0;::::1;35648:73;;;::::0;-1:-1:-1;;;;;35648:73:0;;8390:2:1;35648:73:0::1;::::0;::::1;8372:21:1::0;8429:2;8409:18;;;8402:30;8468:34;8448:18;;;8441:62;-1:-1:-1;;;;;8519:18:1;;;8512:36;8565:19;;35648:73:0::1;8362:228:1::0;35648:73:0::1;35758:6;::::0;35737:38:::1;::::0;-1:-1:-1;;;;;35737:38:0;;::::1;::::0;35758:6:::1;::::0;-1:-1:-1;;;;;;;;;;;35737:38:0;35758:6:::1;::::0;35737:38:::1;35786:6;:17:::0;;-1:-1:-1;;;;;;35786:17:0::1;-1:-1:-1::0;;;;;35786:17:0;;;::::1;::::0;;;::::1;::::0;;35567:244::o;9068:422::-;9435:20;9474:8;;;9068:422::o;21693:292::-;21795:4;-1:-1:-1;;;;;;21819:40:0;;-1:-1:-1;;;;;21819:40:0;;:105;;-1:-1:-1;;;;;;;21876:48:0;;-1:-1:-1;;;;;21876:48:0;21819:105;:158;;;-1:-1:-1;;;;;;;;;;;;20292:40:0;;;21941:36;20183:157;27332:127;27397:4;27421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27421:16:0;:30;;;27332:127::o;31216:174::-;31291:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31291:29:0;-1:-1:-1;;;;;31291:29:0;;;;;;;;:24;;31345:23;31291:24;31345:14;:23::i;:::-;-1:-1:-1;;;;;31336:46:0;;;;;;;;;;;31216:174;;:::o;27626:355::-;27719:4;27744:16;27752:7;27744;:16::i;:::-;27736:73;;;;-1:-1:-1;;;;;27736:73:0;;10261:2:1;27736:73:0;;;10243:21:1;10300:2;10280:18;;;10273:30;10339:34;10319:18;;;10312:62;-1:-1:-1;;;;;10390:18:1;;;10383:42;10442:19;;27736:73:0;10233:234:1;27736:73:0;27820:13;27836:23;27851:7;27836:14;:23::i;:::-;27820:39;;27889:5;-1:-1:-1;;;;;27878:16:0;:7;-1:-1:-1;;;;;27878:16:0;;:51;;;;27922:7;-1:-1:-1;;;;;27898:31:0;:20;27910:7;27898:11;:20::i;:::-;-1:-1:-1;;;;;27898:31:0;;27878:51;:94;;;;27933:39;27957:5;27964:7;27933:23;:39::i;:::-;27870:103;27626:355;-1:-1:-1;;;;27626:355:0:o;30554:544::-;30679:4;-1:-1:-1;;;;;30652:31:0;:23;30667:7;30652:14;:23::i;:::-;-1:-1:-1;;;;;30652:31:0;;30644:85;;;;-1:-1:-1;;;;;30644:85:0;;13055:2:1;30644:85:0;;;13037:21:1;13094:2;13074:18;;;13067:30;13133:34;13113:18;;;13106:62;-1:-1:-1;;;;;13184:18:1;;;13177:39;13233:19;;30644:85:0;13027:231:1;30644:85:0;-1:-1:-1;;;;;30748:16:0;;30740:65;;;;-1:-1:-1;;;;;30740:65:0;;9154:2:1;30740:65:0;;;9136:21:1;9193:2;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;-1:-1:-1;;;;;9283:18:1;;;9276:34;9327:19;;30740:65:0;9126:226:1;30740:65:0;30818:39;30839:4;30845:2;30849:7;30818:20;:39::i;:::-;30922:29;30939:1;30943:7;30922:8;:29::i;:::-;-1:-1:-1;;;;;30964:15:0;;;;;;:9;:15;;;;;:20;;30983:1;;30964:15;:20;;30983:1;;30964:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30995:13:0;;;;;;:9;:13;;;;;:18;;31012:1;;30995:13;:18;;31012:1;;30995:18;:::i;:::-;;;;-1:-1:-1;;31024:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31024:21:0;-1:-1:-1;;;;;31024:21:0;;;;;;;;;31063:27;;31024:16;;31063:27;;;;-1:-1:-1;;;;;;;;;;;31063:27:0;;30554:544;;;:::o;51760:168::-;51800:6;51868:15;51885:16;51903:13;44585:10;:17;44497:113;;51903:13;51851:66;;;;;;5115:19:1;;;;5150:12;;5143:28;;;;5187:12;;;5180:28;5224:12;;51851:66:0;;;-1:-1:-1;;51851:66:0;;;;;;;;;51841:77;;51851:66;51841:77;;;;;-1:-1:-1;51760:168:0;:::o;28323:110::-;28399:26;28409:2;28413:7;28399:26;;;;;;;;;;;;:9;:26::i;26747:272::-;26861:28;26871:4;26877:2;26881:7;26861:9;:28::i;:::-;26908:48;26931:4;26937:2;26941:7;26950:5;26908:22;:48::i;:::-;26900:111;;;;-1:-1:-1;;;;;26900:111:0;;;;;;;:::i;52630:95::-;52677:13;52710:7;52703:14;;;;;:::i;17622:723::-;17678:13;17899:10;17895:53;;-1:-1:-1;17926:10:0;;;;;;;;;;;;-1:-1:-1;;;;;17926:10:0;;;;;;17895:53;17973:5;17958:12;18014:78;18021:9;;18014:78;;18047:8;;;;:::i;:::-;;-1:-1:-1;18070:10:0;;-1:-1:-1;18078:2:0;18070:10;;:::i;:::-;;;18014:78;;;18102:19;18134:6;-1:-1:-1;;;;;18124:17:0;;;;;-1:-1:-1;;;;;18124:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18124:17:0;;18102:39;;18152:154;18159:10;;18152:154;;18186:11;18196:1;18186:11;;:::i;:::-;;-1:-1:-1;18255:10:0;18263:2;18255:5;:10;:::i;:::-;18242:24;;:2;:24;:::i;:::-;-1:-1:-1;;;18229:39:0;18212:6;18219;18212:14;;;;;;-1:-1:-1;;;;;18212:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18212:56:0;;;;;;;;-1:-1:-1;18283:11:0;18292:2;18283:11;;:::i;:::-;;;18152:154;;52839:144;52912:13;52969:1;52972;52952:22;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52938:37;;52839:144;;;;:::o;45533:555::-;-1:-1:-1;;;;;45705:18:0;;45701:187;;45740:40;45772:7;46915:10;:17;;46888:24;;;;:15;:24;;;;;:44;;;46943:24;;;;;;;;;;;;46811:164;45740:40;45701:187;;;45810:2;-1:-1:-1;;;;;45802:10:0;:4;-1:-1:-1;;;;;45802:10:0;;45798:90;;45829:47;45862:4;45868:7;45829:32;:47::i;:::-;-1:-1:-1;;;;;45902:16:0;;45898:183;;45935:45;45972:7;45935:36;:45::i;:::-;45898:183;;;46008:4;-1:-1:-1;;;;;46002:10:0;:2;-1:-1:-1;;;;;46002:10:0;;45998:83;;46029:40;46057:2;46061:7;46029:27;:40::i;28660:250::-;28756:18;28762:2;28766:7;28756:5;:18::i;:::-;28793:54;28824:1;28828:2;28832:7;28841:5;28793:22;:54::i;:::-;28785:117;;;;-1:-1:-1;;;;;28785:117:0;;;;;;;:::i;31955:843::-;32076:4;-1:-1:-1;;;;;32102:13:0;;9435:20;9474:8;32098:693;;32138:72;;-1:-1:-1;;;;;32138:72:0;;-1:-1:-1;;;;;32138:36:0;;;;;:72;;17039:10;;32189:4;;32195:7;;32204:5;;32138:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32138:72:0;;;;;;;;-1:-1:-1;;32138:72:0;;;;;;;;;;;;:::i;:::-;;;32134:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32384:13:0;;32380:341;;32427:60;;-1:-1:-1;;;;;32427:60:0;;;;;;;:::i;32380:341::-;32671:6;32665:13;32656:6;32652:2;32648:15;32641:38;32134:602;-1:-1:-1;;;;;;32261:55:0;-1:-1:-1;;;;;32261:55:0;;-1:-1:-1;32254:62:0;;32098:693;-1:-1:-1;32775:4:0;31955:843;;;;;;:::o;47602:988::-;47868:22;47918:1;47893:22;47910:4;47893:16;:22::i;:::-;:26;;;;:::i;:::-;47930:18;47951:26;;;:17;:26;;;;;;47868:51;;-1:-1:-1;48084:28:0;;;48080:328;;-1:-1:-1;;;;;48151:18:0;;48129:19;48151:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48202:30;;;;;;:44;;;48319:30;;:17;:30;;;;;:43;;;48080:328;-1:-1:-1;48504:26:0;;;;:17;:26;;;;;;;;48497:33;;;-1:-1:-1;;;;;48548:18:0;;;;;:12;:18;;;;;:34;;;;;;;48541:41;47602:988::o;48885:1079::-;49163:10;:17;49138:22;;49163:21;;49183:1;;49163:21;:::i;:::-;49195:18;49216:24;;;:15;:24;;;;;;49589:10;:26;;49138:46;;-1:-1:-1;49216:24:0;;49138:46;;49589:26;;;;-1:-1:-1;;;;;49589:26:0;;;;;;;;;;;;;;;;;49567:48;;49653:11;49628:10;49639;49628:22;;;;;;-1:-1:-1;;;;;49628:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;49733:28;;;:15;:28;;;;;;;:41;;;49905:24;;;;;49898:31;49940:10;:16;;;;;-1:-1:-1;;;;;49940:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;48885:1079;;;;:::o;46389:221::-;46474:14;46491:20;46508:2;46491:16;:20::i;:::-;-1:-1:-1;;;;;46522:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46567:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46389:221:0:o;29246:382::-;-1:-1:-1;;;;;29326:16:0;;29318:61;;;;-1:-1:-1;;;;;29318:61:0;;11920:2:1;29318:61:0;;;11902:21:1;;;11939:18;;;11932:30;11998:34;11978:18;;;11971:62;12050:18;;29318:61:0;11892:182:1;29318:61:0;29399:16;29407:7;29399;:16::i;:::-;29398:17;29390:58;;;;-1:-1:-1;;;;;29390:58:0;;8797:2:1;29390:58:0;;;8779:21:1;8836:2;8816:18;;;8809:30;8875;8855:18;;;8848:58;8923:18;;29390:58:0;8769:178:1;29390:58:0;29461:45;29490:1;29494:2;29498:7;29461:20;:45::i;:::-;-1:-1:-1;;;;;29519:13:0;;;;;;:9;:13;;;;;:18;;29536:1;;29519:13;:18;;29536:1;;29519:18;:::i;:::-;;;;-1:-1:-1;;29548:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29548:21:0;-1:-1:-1;;;;;29548:21:0;;;;;;;;29587:33;;29548:16;;;-1:-1:-1;;;;;;;;;;;29587:33:0;29548:16;;29587:33;29246:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;-1:-1:-1;;;;;138:14:1;;;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;:::-;979:39;898:126;-1:-1:-1;;;898:126:1:o;1029:270::-;;;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;;;;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;;;;;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;-1:-1:-1;2002:2:1;1987:18;;1974:32;;-1:-1:-1;2057:2:1;2042:18;;2029:32;-1:-1:-1;;;;;2073:30:1;;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;;;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;;;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3688:23;;-1:-1:-1;;;;;3723:30:1;;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5455:488::-;-1:-1:-1;;;;;5724:15:1;;;5706:34;;5776:15;;5771:2;5756:18;;5749:43;5823:2;5808:18;;5801:34;;;5871:3;5866:2;5851:18;;5844:31;;;5455:488;;5892:45;;5917:19;;5909:6;5892:45;:::i;:::-;5884:53;5658:285;-1:-1:-1;;;;;;5658:285:1:o;5948:635::-;6119:2;6171:21;;;6241:13;;6144:18;;;6263:22;;;5948:635;;6119:2;6342:15;;;;6316:2;6301:18;;;5948:635;6388:169;6402:6;6399:1;6396:13;6388:169;;;6463:13;;6451:26;;6532:15;;;;6497:12;;;;6424:1;6417:9;6388:169;;;-1:-1:-1;6574:3:1;;6099:484;-1:-1:-1;;;;;;6099:484:1:o;6780:219::-;;6929:2;6918:9;6911:21;6949:44;6989:2;6978:9;6974:18;6966:6;6949:44;:::i;7769:414::-;7971:2;7953:21;;;8010:2;7990:18;;;7983:30;8049:34;8044:2;8029:18;;8022:62;-1:-1:-1;;;;;8115:2:1;8100:18;;8093:48;8173:3;8158:19;;7943:240::o;12492:356::-;12694:2;12676:21;;;12713:18;;;12706:30;12772:34;12767:2;12752:18;;12745:62;12839:2;12824:18;;12666:182::o;13665:413::-;13867:2;13849:21;;;13906:2;13886:18;;;13879:30;13945:34;13940:2;13925:18;;13918:62;-1:-1:-1;;;;;14011:2:1;13996:18;;13989:47;14068:3;14053:19;;13839:239::o;15219:128::-;;15290:1;15286:6;15283:1;15280:13;15277:2;;;15296:18;;:::i;:::-;-1:-1:-1;15332:9:1;;15267:80::o;15352:120::-;;15418:1;15408:2;;15423:18;;:::i;:::-;-1:-1:-1;15457:9:1;;15398:74::o;15477:125::-;;15545:1;15542;15539:8;15536:2;;;15550:18;;:::i;:::-;-1:-1:-1;15587:9:1;;15526:76::o;15607:258::-;15679:1;15689:113;15703:6;15700:1;15697:13;15689:113;;;15779:11;;;15773:18;15760:11;;;15753:39;15725:2;15718:10;15689:113;;;15820:6;15817:1;15814:13;15811:2;;;-1:-1:-1;;15855:1:1;15837:16;;15830:27;15660:205::o;15870:388::-;15955:1;15945:12;;16002:1;15992:12;;;16013:2;;16067:4;16059:6;16055:17;16045:27;;16013:2;16120;16112:6;16109:14;16089:18;16086:38;16083:2;;;-1:-1:-1;;;;;16154:1:1;16147:39;;;16209:4;16206:1;16199:15;16237:4;;16227:15;16263:135;;-1:-1:-1;;16323:17:1;;16320:2;;;16343:18;;:::i;:::-;-1:-1:-1;16390:1:1;16379:13;;16310:88::o;16403:112::-;;16461:1;16451:2;;16466:18;;:::i;:::-;-1:-1:-1;16500:9:1;;16441:74::o;16520:135::-;-1:-1:-1;;;;;16569:1:1;16562:39;;;16620:4;16617:1;16610:15;16644:4;;16634:15;16660:135;-1:-1:-1;;;;;16709:1:1;16702:39;;;16760:4;16757:1;16750:15;16784:4;;16774:15;16800:135;-1:-1:-1;;;;;16849:1:1;16842:39;;;16900:4;16897:1;16890:15;16924:4;;16914:15;16940:135;-1:-1:-1;;;;;;17014:36:1;;17004:47;;16994:2;;17065:1;17062;17055:12;16994:2;16984:91;:::o

Swarm Source

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