Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 90 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15500356 | 894 days ago | IN | 0 ETH | 0.00064769 | ||||
Set Approval For... | 15363699 | 916 days ago | IN | 0 ETH | 0.00034308 | ||||
Set Approval For... | 15088658 | 959 days ago | IN | 0 ETH | 0.00082798 | ||||
Set Approval For... | 13951759 | 1140 days ago | IN | 0 ETH | 0.00607 | ||||
Transfer From | 13951720 | 1140 days ago | IN | 0 ETH | 0.00714487 | ||||
Transfer From | 13240705 | 1251 days ago | IN | 0 ETH | 0.00501988 | ||||
Claim | 13183689 | 1260 days ago | IN | 0 ETH | 0.00782928 | ||||
Claim | 13183688 | 1260 days ago | IN | 0 ETH | 0.01282814 | ||||
Claim | 13177391 | 1261 days ago | IN | 0 ETH | 0.01394078 | ||||
Claim | 13176490 | 1261 days ago | IN | 0 ETH | 0.01160511 | ||||
Claim | 13176338 | 1261 days ago | IN | 0 ETH | 0.01573674 | ||||
Claim | 13176321 | 1261 days ago | IN | 0 ETH | 0.01635558 | ||||
Claim | 13176292 | 1261 days ago | IN | 0 ETH | 0.01196119 | ||||
Claim | 13176161 | 1261 days ago | IN | 0 ETH | 0.01403186 | ||||
Claim | 13175835 | 1261 days ago | IN | 0 ETH | 0.01419009 | ||||
Claim | 13175794 | 1261 days ago | IN | 0 ETH | 0.01416017 | ||||
Claim | 13175756 | 1261 days ago | IN | 0 ETH | 0.00963228 | ||||
Claim | 13174738 | 1261 days ago | IN | 0 ETH | 0.01583624 | ||||
Claim | 13173980 | 1261 days ago | IN | 0 ETH | 0.02437518 | ||||
Claim | 13173964 | 1261 days ago | IN | 0 ETH | 0.01968698 | ||||
Claim | 13172918 | 1262 days ago | IN | 0 ETH | 0.01271457 | ||||
Claim | 13172881 | 1262 days ago | IN | 0 ETH | 0.01730133 | ||||
Claim | 13172635 | 1262 days ago | IN | 0 ETH | 0.00908662 | ||||
Claim | 13172635 | 1262 days ago | IN | 0 ETH | 0.01552134 | ||||
Claim | 13172585 | 1262 days ago | IN | 0 ETH | 0.01465501 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Root
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-06 */ // SPDX-License-Identifier: MIT 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); } /** * @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); function keyOfRoot(uint256 root) external view returns (address); /** * @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; } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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; address private _pending_owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } function proposeOwner(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new pending owner is the zero address"); _pending_owner = newOwner; } function claimOwner() public virtual { require(_pending_owner == msg.sender, "Ownable: msg.sender is not the pending owner"); address oldOwner = _owner; _owner = _pending_owner; _pending_owner = address(0); emit OwnershipTransferred(oldOwner, _owner); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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; } } /** * @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; } function keyOfRoot(uint256 root) public view virtual override returns (address) { return _owners[root]; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @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 the assets stored by the contract. */ function assets() external view returns (address); /** * @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); function rootOfKey(address key) external view returns (uint256); } /** * @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; address private _assets; /** * @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; } function assets() external view virtual override returns (address) { return _assets; } /** * @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]; } function rootOfKey(address key) public view virtual override returns (uint256) { return ERC721.balanceOf(key) == 0 ? type(uint256).max : _ownedTokens[key][0]; } /** * @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 != 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); require(length == 0, "Root: already exists!"); _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). require(ERC721.balanceOf(from) == 1, "Root: not exists!"); // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][0]; } /** * @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(); } function _setAssets(address assets_) internal { _assets = assets_; } } contract Root is ERC721Enumerable, ReentrancyGuard, Ownable { using Address for address; uint256 public start_time = 0; uint256 public deploy_time = 0; uint256 public MAX_TOTAL_SUPPLY = 21000000; function claim() external nonReentrant { require(claimable(), "not claimable"); uint256 ts = totalSupply(); if (ts == 2100) { start_time = deploy_time + (21 days); } else if (ts == 21000) { start_time = deploy_time + (21 * 4 days); } else if (ts == 210000) { start_time = deploy_time + (21 * 4 * 4 days); } else if (ts == 2100000) { start_time = deploy_time + (21 * 4 * 4 * 4 days); } _safeMint(_msgSender(), ts); } function claimable() public view returns (bool) { return block.timestamp >= start_time && totalSupply() < MAX_TOTAL_SUPPLY; } function claimableId() external view returns (uint256) { return claimable() ? totalSupply() : type(uint256).max; } function setAssets(address _assets) external onlyOwner { super._setAssets(_assets); } function expand() external onlyOwner { require(totalSupply() == MAX_TOTAL_SUPPLY, "ROOT: totalSupply not equal to current max_total_supply"); MAX_TOTAL_SUPPLY = MAX_TOTAL_SUPPLY * 10; } constructor() ERC721("ROOT", "ROOT") Ownable() { deploy_time = block.timestamp; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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_TOTAL_SUPPLY","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":[],"name":"assets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimableId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deploy_time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"root","type":"uint256"}],"name":"keyOfRoot","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"proposeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"key","type":"address"}],"name":"rootOfKey","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_assets","type":"address"}],"name":"setAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start_time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600e556000600f556301406f406010553480156200002357600080fd5b506040805180820182526004808252631493d3d560e21b6020808401828152855180870190965292855284015281519192916200006391600091620000e8565b50805162000079906001906020840190620000e8565b50506001600b55506200008c3362000096565b42600f55620001cb565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f6906200018e565b90600052602060002090601f0160209004810192826200011a576000855562000165565b82601f106200013557805160ff191683800117855562000165565b8280016001018555821562000165579182015b828111156200016557825182559160200191906001019062000148565b506200017392915062000177565b5090565b5b8082111562000173576000815560010162000178565b600181811c90821680620001a357607f821691505b60208210811415620001c557634e487b7160e01b600052602260045260246000fd5b50919050565b611d6780620001db6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806371a9730511610104578063a5d8cdf2116100a2578063c87b56dd11610071578063c87b56dd146103ba578063e111e44a146103cd578063e985e9c5146103d5578063ee1559da1461041157600080fd5b8063a5d8cdf214610383578063af38d7571461038c578063b5ed298a14610394578063b88d4fde146103a757600080fd5b80638da5cb5b116100de5780638da5cb5b1461034457806394ba6cfa1461035557806395d89b4114610368578063a22cb4651461037057600080fd5b806371a97305146103015780637dacda1414610312578063834ee4171461033b57600080fd5b80632f745c591161017c5780634e71d92d1161014b5780634e71d92d146102c05780634f6ccce7146102c85780636352211e146102db57806370a08231146102ee57600080fd5b80632f745c591461028957806333039d3d1461029c5780633bd1adec146102a557806342842e0e146102ad57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c5780631cf28a651461026e57806323b872dd1461027657600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046119f5565b610424565b60405190151581526020015b60405180910390f35b61020f61044f565b6040516101fe9190611ae0565b61022f61022a366004611a2f565b6104e1565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046119cb565b61057b565b005b6008545b6040519081526020016101fe565b61025a610691565b61025a610284366004611877565b610747565b6102606102973660046119cb565b610778565b61026060105481565b61025a61080e565b61025a6102bb366004611877565b6108da565b61025a6108f5565b6102606102d6366004611a2f565b610a28565b61022f6102e9366004611a2f565b610abb565b6102606102fc366004611829565b610b32565b600a546001600160a01b031661022f565b61022f610320366004611a2f565b6000908152600260205260409020546001600160a01b031690565b610260600e5481565b600c546001600160a01b031661022f565b610260610363366004611829565b610bb9565b61020f610bfb565b61025a61037e36600461198f565b610c0a565b610260600f5481565b6101f2610ccf565b61025a6103a2366004611829565b610ceb565b61025a6103b53660046118b3565b610da4565b61020f6103c8366004611a2f565b610ddc565b610260610ec4565b6101f26103e3366004611844565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025a61041f366004611829565b610ee0565b60006001600160e01b0319821663274760a760e21b1480610449575061044982610f2b565b92915050565b60606000805461045e90611c59565b80601f016020809104026020016040519081016040528092919081815260200182805461048a90611c59565b80156104d75780601f106104ac576101008083540402835291602001916104d7565b820191906000526020600020905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661055f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058682610abb565b9050806001600160a01b0316836001600160a01b031614156105f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610556565b336001600160a01b0382161480610610575061061081336103e3565b6106825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610556565b61068c8383610f7b565b505050565b600c546001600160a01b031633146106bb5760405162461bcd60e51b815260040161055690611b45565b601054600854146107345760405162461bcd60e51b815260206004820152603760248201527f524f4f543a20746f74616c537570706c79206e6f7420657175616c20746f206360448201527f757272656e74206d61785f746f74616c5f737570706c790000000000000000006064820152608401610556565b60105461074290600a611bf7565b601055565b6107513382610fe9565b61076d5760405162461bcd60e51b815260040161055690611b7a565b61068c8383836110e0565b600061078383610b32565b82106107e55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610556565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600d546001600160a01b0316331461087d5760405162461bcd60e51b815260206004820152602c60248201527f4f776e61626c653a206d73672e73656e646572206973206e6f7420746865207060448201526b32b73234b7339037bbb732b960a11b6064820152608401610556565b600c8054600d80546001600160a01b03198084166001600160a01b038381169182179096559116909155604051929091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b61068c83838360405180602001604052806000815250610da4565b6002600b5414156109485760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610556565b6002600b55610955610ccf565b6109915760405162461bcd60e51b815260206004820152600d60248201526c6e6f7420636c61696d61626c6560981b6044820152606401610556565b600061099c60085490565b90508061083414156109c057600f546109b890621baf80611bcb565b600e55610a16565b8061520814156109da57600f546109b890626ebe00611bcb565b806203345014156109f657600f546109b8906301baf800611bcb565b8062200b201415610a1657600f54610a12906306ebe000611bcb565b600e555b610a20338261128b565b506001600b55565b6000610a3360085490565b8210610a965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610556565b60088281548110610aa957610aa9611cef565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104495760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610556565b60006001600160a01b038216610b9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610556565b506001600160a01b031660009081526003602052604090205490565b6000610bc482610b32565b15610bf2576001600160a01b0382166000908152600660209081526040808320838052909152902054610449565b60001992915050565b60606001805461045e90611c59565b6001600160a01b038216331415610c635760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610556565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600e544210158015610ce65750601054600854105b905090565b600c546001600160a01b03163314610d155760405162461bcd60e51b815260040161055690611b45565b6001600160a01b038116610d825760405162461bcd60e51b815260206004820152602e60248201527f4f776e61626c653a206e65772070656e64696e67206f776e657220697320746860448201526d65207a65726f206164647265737360901b6064820152608401610556565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610dae3383610fe9565b610dca5760405162461bcd60e51b815260040161055690611b7a565b610dd6848484846112a9565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e5b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610556565b6000610e7260408051602081019091526000815290565b90506000815111610e925760405180602001604052806000815250610ebd565b80610e9c846112dc565b604051602001610ead929190611a74565b6040516020818303038152906040525b9392505050565b6000610ece610ccf565b610ed9575060001990565b5060085490565b600c546001600160a01b03163314610f0a5760405162461bcd60e51b815260040161055690611b45565b600a80546001600160a01b0319166001600160a01b03831617905550565b50565b60006001600160e01b0319821663fd0082d960e01b1480610f5c57506001600160e01b03198216635b5e139f60e01b145b8061044957506301ffc9a760e01b6001600160e01b0319831614610449565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fb082610abb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610556565b600061106d83610abb565b9050806001600160a01b0316846001600160a01b031614806110a85750836001600160a01b031661109d846104e1565b6001600160a01b0316145b806110d857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110f382610abb565b6001600160a01b03161461115b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610556565b6001600160a01b0382166111bd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6111c88383836113da565b6111d3600082610f7b565b6001600160a01b03831660009081526003602052604081208054600192906111fc908490611c16565b90915550506001600160a01b038216600090815260036020526040812080546001929061122a908490611bcb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112a582826040518060200160405280600081525061147b565b5050565b6112b48484846110e0565b6112c0848484846114ae565b610dd65760405162461bcd60e51b815260040161055690611af3565b6060816113005750506040805180820190915260018152600360fc1b602082015290565b8160005b811561132a578061131481611c94565b91506113239050600a83611be3565b9150611304565b60008167ffffffffffffffff81111561134557611345611d05565b6040519080825280601f01601f19166020018201604052801561136f576020820181803683370190505b5090505b84156110d857611384600183611c16565b9150611391600a86611caf565b61139c906030611bcb565b60f81b8183815181106113b1576113b1611cef565b60200101906001600160f81b031916908160001a9053506113d3600a86611be3565b9450611373565b6001600160a01b0383166114355761143081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611458565b816001600160a01b0316836001600160a01b0316146114585761145883826115bb565b826001600160a01b0316826001600160a01b03161461068c5761068c828261163a565b61148583836116bf565b61149260008484846114ae565b61068c5760405162461bcd60e51b815260040161055690611af3565b60006001600160a01b0384163b156115b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114f2903390899088908890600401611aa3565b602060405180830381600087803b15801561150c57600080fd5b505af192505050801561153c575060408051601f3d908101601f1916820190925261153991810190611a12565b60015b611596573d80801561156a576040519150601f19603f3d011682016040523d82523d6000602084013e61156f565b606091505b50805161158e5760405162461bcd60e51b815260040161055690611af3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110d8565b506001949350505050565b6115c482610b32565b6001146116075760405162461bcd60e51b8152602060048201526011602482015270526f6f743a206e6f74206578697374732160781b6044820152606401610556565b60009081526007602090815260408083208390556001600160a01b03909316825260068152828220828052905290812055565b600061164583610b32565b9050801561168d5760405162461bcd60e51b8152602060048201526015602482015274526f6f743a20616c7265616479206578697374732160581b6044820152606401610556565b6001600160a01b0390921660009081526006602090815260408083208584528252808320849055928252600790522055565b6001600160a01b0382166117155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610556565b6000818152600260205260409020546001600160a01b03161561177a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610556565b611786600083836113da565b6001600160a01b03821660009081526003602052604081208054600192906117af908490611bcb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b038116811461182457600080fd5b919050565b60006020828403121561183b57600080fd5b610ebd8261180d565b6000806040838503121561185757600080fd5b6118608361180d565b915061186e6020840161180d565b90509250929050565b60008060006060848603121561188c57600080fd5b6118958461180d565b92506118a36020850161180d565b9150604084013590509250925092565b600080600080608085870312156118c957600080fd5b6118d28561180d565b93506118e06020860161180d565b925060408501359150606085013567ffffffffffffffff8082111561190457600080fd5b818701915087601f83011261191857600080fd5b81358181111561192a5761192a611d05565b604051601f8201601f19908116603f0116810190838211818310171561195257611952611d05565b816040528281528a602084870101111561196b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119a257600080fd5b6119ab8361180d565b9150602083013580151581146119c057600080fd5b809150509250929050565b600080604083850312156119de57600080fd5b6119e78361180d565b946020939093013593505050565b600060208284031215611a0757600080fd5b8135610ebd81611d1b565b600060208284031215611a2457600080fd5b8151610ebd81611d1b565b600060208284031215611a4157600080fd5b5035919050565b60008151808452611a60816020860160208601611c2d565b601f01601f19169290920160200192915050565b60008351611a86818460208801611c2d565b835190830190611a9a818360208801611c2d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ad690830184611a48565b9695505050505050565b602081526000610ebd6020830184611a48565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611bde57611bde611cc3565b500190565b600082611bf257611bf2611cd9565b500490565b6000816000190483118215151615611c1157611c11611cc3565b500290565b600082821015611c2857611c28611cc3565b500390565b60005b83811015611c48578181015183820152602001611c30565b83811115610dd65750506000910152565b600181811c90821680611c6d57607f821691505b60208210811415611c8e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ca857611ca8611cc3565b5060010190565b600082611cbe57611cbe611cd9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f2857600080fdfea2646970667358221220cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e264736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806371a9730511610104578063a5d8cdf2116100a2578063c87b56dd11610071578063c87b56dd146103ba578063e111e44a146103cd578063e985e9c5146103d5578063ee1559da1461041157600080fd5b8063a5d8cdf214610383578063af38d7571461038c578063b5ed298a14610394578063b88d4fde146103a757600080fd5b80638da5cb5b116100de5780638da5cb5b1461034457806394ba6cfa1461035557806395d89b4114610368578063a22cb4651461037057600080fd5b806371a97305146103015780637dacda1414610312578063834ee4171461033b57600080fd5b80632f745c591161017c5780634e71d92d1161014b5780634e71d92d146102c05780634f6ccce7146102c85780636352211e146102db57806370a08231146102ee57600080fd5b80632f745c591461028957806333039d3d1461029c5780633bd1adec146102a557806342842e0e146102ad57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c5780631cf28a651461026e57806323b872dd1461027657600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046119f5565b610424565b60405190151581526020015b60405180910390f35b61020f61044f565b6040516101fe9190611ae0565b61022f61022a366004611a2f565b6104e1565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046119cb565b61057b565b005b6008545b6040519081526020016101fe565b61025a610691565b61025a610284366004611877565b610747565b6102606102973660046119cb565b610778565b61026060105481565b61025a61080e565b61025a6102bb366004611877565b6108da565b61025a6108f5565b6102606102d6366004611a2f565b610a28565b61022f6102e9366004611a2f565b610abb565b6102606102fc366004611829565b610b32565b600a546001600160a01b031661022f565b61022f610320366004611a2f565b6000908152600260205260409020546001600160a01b031690565b610260600e5481565b600c546001600160a01b031661022f565b610260610363366004611829565b610bb9565b61020f610bfb565b61025a61037e36600461198f565b610c0a565b610260600f5481565b6101f2610ccf565b61025a6103a2366004611829565b610ceb565b61025a6103b53660046118b3565b610da4565b61020f6103c8366004611a2f565b610ddc565b610260610ec4565b6101f26103e3366004611844565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025a61041f366004611829565b610ee0565b60006001600160e01b0319821663274760a760e21b1480610449575061044982610f2b565b92915050565b60606000805461045e90611c59565b80601f016020809104026020016040519081016040528092919081815260200182805461048a90611c59565b80156104d75780601f106104ac576101008083540402835291602001916104d7565b820191906000526020600020905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661055f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058682610abb565b9050806001600160a01b0316836001600160a01b031614156105f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610556565b336001600160a01b0382161480610610575061061081336103e3565b6106825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610556565b61068c8383610f7b565b505050565b600c546001600160a01b031633146106bb5760405162461bcd60e51b815260040161055690611b45565b601054600854146107345760405162461bcd60e51b815260206004820152603760248201527f524f4f543a20746f74616c537570706c79206e6f7420657175616c20746f206360448201527f757272656e74206d61785f746f74616c5f737570706c790000000000000000006064820152608401610556565b60105461074290600a611bf7565b601055565b6107513382610fe9565b61076d5760405162461bcd60e51b815260040161055690611b7a565b61068c8383836110e0565b600061078383610b32565b82106107e55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610556565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600d546001600160a01b0316331461087d5760405162461bcd60e51b815260206004820152602c60248201527f4f776e61626c653a206d73672e73656e646572206973206e6f7420746865207060448201526b32b73234b7339037bbb732b960a11b6064820152608401610556565b600c8054600d80546001600160a01b03198084166001600160a01b038381169182179096559116909155604051929091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b61068c83838360405180602001604052806000815250610da4565b6002600b5414156109485760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610556565b6002600b55610955610ccf565b6109915760405162461bcd60e51b815260206004820152600d60248201526c6e6f7420636c61696d61626c6560981b6044820152606401610556565b600061099c60085490565b90508061083414156109c057600f546109b890621baf80611bcb565b600e55610a16565b8061520814156109da57600f546109b890626ebe00611bcb565b806203345014156109f657600f546109b8906301baf800611bcb565b8062200b201415610a1657600f54610a12906306ebe000611bcb565b600e555b610a20338261128b565b506001600b55565b6000610a3360085490565b8210610a965760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610556565b60088281548110610aa957610aa9611cef565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104495760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610556565b60006001600160a01b038216610b9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610556565b506001600160a01b031660009081526003602052604090205490565b6000610bc482610b32565b15610bf2576001600160a01b0382166000908152600660209081526040808320838052909152902054610449565b60001992915050565b60606001805461045e90611c59565b6001600160a01b038216331415610c635760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610556565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600e544210158015610ce65750601054600854105b905090565b600c546001600160a01b03163314610d155760405162461bcd60e51b815260040161055690611b45565b6001600160a01b038116610d825760405162461bcd60e51b815260206004820152602e60248201527f4f776e61626c653a206e65772070656e64696e67206f776e657220697320746860448201526d65207a65726f206164647265737360901b6064820152608401610556565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610dae3383610fe9565b610dca5760405162461bcd60e51b815260040161055690611b7a565b610dd6848484846112a9565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e5b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610556565b6000610e7260408051602081019091526000815290565b90506000815111610e925760405180602001604052806000815250610ebd565b80610e9c846112dc565b604051602001610ead929190611a74565b6040516020818303038152906040525b9392505050565b6000610ece610ccf565b610ed9575060001990565b5060085490565b600c546001600160a01b03163314610f0a5760405162461bcd60e51b815260040161055690611b45565b600a80546001600160a01b0319166001600160a01b03831617905550565b50565b60006001600160e01b0319821663fd0082d960e01b1480610f5c57506001600160e01b03198216635b5e139f60e01b145b8061044957506301ffc9a760e01b6001600160e01b0319831614610449565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fb082610abb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610556565b600061106d83610abb565b9050806001600160a01b0316846001600160a01b031614806110a85750836001600160a01b031661109d846104e1565b6001600160a01b0316145b806110d857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110f382610abb565b6001600160a01b03161461115b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610556565b6001600160a01b0382166111bd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6111c88383836113da565b6111d3600082610f7b565b6001600160a01b03831660009081526003602052604081208054600192906111fc908490611c16565b90915550506001600160a01b038216600090815260036020526040812080546001929061122a908490611bcb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112a582826040518060200160405280600081525061147b565b5050565b6112b48484846110e0565b6112c0848484846114ae565b610dd65760405162461bcd60e51b815260040161055690611af3565b6060816113005750506040805180820190915260018152600360fc1b602082015290565b8160005b811561132a578061131481611c94565b91506113239050600a83611be3565b9150611304565b60008167ffffffffffffffff81111561134557611345611d05565b6040519080825280601f01601f19166020018201604052801561136f576020820181803683370190505b5090505b84156110d857611384600183611c16565b9150611391600a86611caf565b61139c906030611bcb565b60f81b8183815181106113b1576113b1611cef565b60200101906001600160f81b031916908160001a9053506113d3600a86611be3565b9450611373565b6001600160a01b0383166114355761143081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611458565b816001600160a01b0316836001600160a01b0316146114585761145883826115bb565b826001600160a01b0316826001600160a01b03161461068c5761068c828261163a565b61148583836116bf565b61149260008484846114ae565b61068c5760405162461bcd60e51b815260040161055690611af3565b60006001600160a01b0384163b156115b057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114f2903390899088908890600401611aa3565b602060405180830381600087803b15801561150c57600080fd5b505af192505050801561153c575060408051601f3d908101601f1916820190925261153991810190611a12565b60015b611596573d80801561156a576040519150601f19603f3d011682016040523d82523d6000602084013e61156f565b606091505b50805161158e5760405162461bcd60e51b815260040161055690611af3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110d8565b506001949350505050565b6115c482610b32565b6001146116075760405162461bcd60e51b8152602060048201526011602482015270526f6f743a206e6f74206578697374732160781b6044820152606401610556565b60009081526007602090815260408083208390556001600160a01b03909316825260068152828220828052905290812055565b600061164583610b32565b9050801561168d5760405162461bcd60e51b8152602060048201526015602482015274526f6f743a20616c7265616479206578697374732160581b6044820152606401610556565b6001600160a01b0390921660009081526006602090815260408083208584528252808320849055928252600790522055565b6001600160a01b0382166117155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610556565b6000818152600260205260409020546001600160a01b03161561177a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610556565b611786600083836113da565b6001600160a01b03821660009081526003602052604081208054600192906117af908490611bcb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b038116811461182457600080fd5b919050565b60006020828403121561183b57600080fd5b610ebd8261180d565b6000806040838503121561185757600080fd5b6118608361180d565b915061186e6020840161180d565b90509250929050565b60008060006060848603121561188c57600080fd5b6118958461180d565b92506118a36020850161180d565b9150604084013590509250925092565b600080600080608085870312156118c957600080fd5b6118d28561180d565b93506118e06020860161180d565b925060408501359150606085013567ffffffffffffffff8082111561190457600080fd5b818701915087601f83011261191857600080fd5b81358181111561192a5761192a611d05565b604051601f8201601f19908116603f0116810190838211818310171561195257611952611d05565b816040528281528a602084870101111561196b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119a257600080fd5b6119ab8361180d565b9150602083013580151581146119c057600080fd5b809150509250929050565b600080604083850312156119de57600080fd5b6119e78361180d565b946020939093013593505050565b600060208284031215611a0757600080fd5b8135610ebd81611d1b565b600060208284031215611a2457600080fd5b8151610ebd81611d1b565b600060208284031215611a4157600080fd5b5035919050565b60008151808452611a60816020860160208601611c2d565b601f01601f19169290920160200192915050565b60008351611a86818460208801611c2d565b835190830190611a9a818360208801611c2d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ad690830184611a48565b9695505050505050565b602081526000610ebd6020830184611a48565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611bde57611bde611cc3565b500190565b600082611bf257611bf2611cd9565b500490565b6000816000190483118215151615611c1157611c11611cc3565b500290565b600082821015611c2857611c28611cc3565b500390565b60005b83811015611c48578181015183820152602001611c30565b83811115610dd65750506000910152565b600181811c90821680611c6d57607f821691505b60208210811415611c8e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ca857611ca8611cc3565b5060010190565b600082611cbe57611cbe611cd9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f2857600080fdfea2646970667358221220cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e264736f6c63430008070033
Deployed Bytecode Sourcemap
44567:1499:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38563:224;;;;;;:::i;:::-;;:::i;:::-;;;5027:14:1;;5020:22;5002:41;;4990:2;4975:18;38563:224:0;;;;;;;;25435:100;;;:::i;:::-;;;;;;;:::i;26994:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4325:32:1;;;4307:51;;4295:2;4280:18;26994:221:0;4161:203:1;26517:411:0;;;;;;:::i;:::-;;:::i;:::-;;39203:113;39291:10;:17;39203:113;;;14874:25:1;;;14862:2;14847:18;39203:113:0;14728:177:1;45750:208:0;;;:::i;27884:339::-;;;;;;:::i;:::-;;:::i;38871:256::-;;;;;;:::i;:::-;;:::i;44747:42::-;;;;;;10019:303;;;:::i;28294:185::-;;;;;;:::i;:::-;;:::i;44798:550::-;;;:::i;39501:233::-;;;;;;:::i;:::-;;:::i;25002:239::-;;;;;;:::i;:::-;;:::i;24732:208::-;;;;;;:::i;:::-;;:::i;39324:100::-;39409:7;;-1:-1:-1;;;;;39409:7:0;39324:100;;25249:119;;;;;;:::i;:::-;25320:7;25347:13;;;:7;:13;;;;;;-1:-1:-1;;;;;25347:13:0;;25249:119;44668:29;;;;;;9321:87;9394:6;;-1:-1:-1;;;;;9394:6:0;9321:87;;39743:172;;;;;;:::i;:::-;;:::i;25604:104::-;;;:::i;27287:295::-;;;;;;:::i;:::-;;:::i;44704:30::-;;;;;;45356:139;;;:::i;9810:201::-;;;;;;:::i;:::-;;:::i;28550:328::-;;;;;;:::i;:::-;;:::i;25779:334::-;;;;;;:::i;:::-;;:::i;45503:128::-;;;:::i;27653:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27774:25:0;;;27750:4;27774:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27653:164;45643:99;;;;;;:::i;:::-;;:::i;38563:224::-;38665:4;-1:-1:-1;;;;;;38689:50:0;;-1:-1:-1;;;38689:50:0;;:90;;;38743:36;38767:11;38743:23;:36::i;:::-;38682:97;38563:224;-1:-1:-1;;38563:224:0:o;25435:100::-;25489:13;25522:5;25515:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25435:100;:::o;26994:221::-;27070:7;30477:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30477:16:0;27090:73;;;;-1:-1:-1;;;27090:73:0;;10636:2:1;27090:73:0;;;10618:21:1;10675:2;10655:18;;;10648:30;10714:34;10694:18;;;10687:62;-1:-1:-1;;;10765:18:1;;;10758:42;10817:19;;27090:73:0;;;;;;;;;-1:-1:-1;27183:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27183:24:0;;26994:221::o;26517:411::-;26598:13;26614:23;26629:7;26614:14;:23::i;:::-;26598:39;;26662:5;-1:-1:-1;;;;;26656:11:0;:2;-1:-1:-1;;;;;26656:11:0;;;26648:57;;;;-1:-1:-1;;;26648:57:0;;12582:2:1;26648:57:0;;;12564:21:1;12621:2;12601:18;;;12594:30;12660:34;12640:18;;;12633:62;-1:-1:-1;;;12711:18:1;;;12704:31;12752:19;;26648:57:0;12380:397:1;26648:57:0;8224:10;-1:-1:-1;;;;;26740:21:0;;;;:62;;-1:-1:-1;26765:37:0;26782:5;8224:10;27653:164;:::i;26765:37::-;26718:168;;;;-1:-1:-1;;;26718:168:0;;7840:2:1;26718:168:0;;;7822:21:1;7879:2;7859:18;;;7852:30;7918:34;7898:18;;;7891:62;7989:26;7969:18;;;7962:54;8033:19;;26718:168:0;7638:420:1;26718:168:0;26899:21;26908:2;26912:7;26899:8;:21::i;:::-;26587:341;26517:411;;:::o;45750:208::-;9394:6;;-1:-1:-1;;;;;9394:6:0;8224:10;9541:23;9533:68;;;;-1:-1:-1;;;9533:68:0;;;;;;;:::i;:::-;45823:16:::1;::::0;39291:10;:17;45806:33:::1;45798:101;;;::::0;-1:-1:-1;;;45798:101:0;;9862:2:1;45798:101:0::1;::::0;::::1;9844:21:1::0;9901:2;9881:18;;;9874:30;9940:34;9920:18;;;9913:62;10011:25;9991:18;;;9984:53;10054:19;;45798:101:0::1;9660:419:1::0;45798:101:0::1;45929:16;::::0;:21:::1;::::0;45948:2:::1;45929:21;:::i;:::-;45910:16;:40:::0;45750:208::o;27884:339::-;28079:41;8224:10;28112:7;28079:18;:41::i;:::-;28071:103;;;;-1:-1:-1;;;28071:103:0;;;;;;;:::i;:::-;28187:28;28197:4;28203:2;28207:7;28187:9;:28::i;38871:256::-;38968:7;39004:23;39021:5;39004:16;:23::i;:::-;38996:5;:31;38988:87;;;;-1:-1:-1;;;38988:87:0;;5480:2:1;38988:87:0;;;5462:21:1;5519:2;5499:18;;;5492:30;5558:34;5538:18;;;5531:62;-1:-1:-1;;;5609:18:1;;;5602:41;5660:19;;38988:87:0;5278:407:1;38988:87:0;-1:-1:-1;;;;;;39093:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38871:256::o;10019:303::-;10075:14;;-1:-1:-1;;;;;10075:14:0;10093:10;10075:28;10067:85;;;;-1:-1:-1;;;10067:85:0;;13744:2:1;10067:85:0;;;13726:21:1;13783:2;13763:18;;;13756:30;13822:34;13802:18;;;13795:62;-1:-1:-1;;;13873:18:1;;;13866:42;13925:19;;10067:85:0;13542:408:1;10067:85:0;10182:6;;;10208:14;;;-1:-1:-1;;;;;;10199:23:0;;;-1:-1:-1;;;;;10208:14:0;;;10199:23;;;;;;10233:27;;;;;10276:38;;10182:6;;;;;;;10276:38;;10163:16;;10276:38;10056:266;10019:303::o;28294:185::-;28432:39;28449:4;28455:2;28459:7;28432:39;;;;;;;;;;;;:16;:39::i;44798:550::-;11988:1;12584:7;;:19;;12576:63;;;;-1:-1:-1;;;12576:63:0;;14570:2:1;12576:63:0;;;14552:21:1;14609:2;14589:18;;;14582:30;14648:33;14628:18;;;14621:61;14699:18;;12576:63:0;14368:355:1;12576:63:0;11988:1;12717:7;:18;44858:11:::1;:9;:11::i;:::-;44850:37;;;::::0;-1:-1:-1;;;44850:37:0;;12984:2:1;44850:37:0::1;::::0;::::1;12966:21:1::0;13023:2;13003:18;;;12996:30;-1:-1:-1;;;13042:18:1;;;13035:43;13095:18;;44850:37:0::1;12782:337:1::0;44850:37:0::1;44900:10;44913:13;39291:10:::0;:17;;39203:113;44913:13:::1;44900:26;;44941:2;44947:4;44941:10;44937:364;;;44981:11;::::0;:23:::1;::::0;44996:7:::1;44981:23;:::i;:::-;44968:10;:36:::0;44937:364:::1;;;45026:2;45032:5;45026:11;45022:279;;;45067:11;::::0;:27:::1;::::0;45082:11:::1;45067:27;:::i;45022:279::-;45116:2;45122:6;45116:12;45112:189;;;45158:11;::::0;:31:::1;::::0;45173:15:::1;45158:31;:::i;45112:189::-;45211:2;45217:7;45211:13;45207:94;;;45254:11;::::0;:35:::1;::::0;45269:19:::1;45254:35;:::i;:::-;45241:10;:48:::0;45207:94:::1;45313:27;8224:10:::0;45337:2:::1;45313:9;:27::i;:::-;-1:-1:-1::0;11944:1:0;12896:7;:22;44798:550::o;39501:233::-;39576:7;39612:30;39291:10;:17;;39203:113;39612:30;39604:5;:38;39596:95;;;;-1:-1:-1;;;39596:95:0;;14157:2:1;39596:95:0;;;14139:21:1;14196:2;14176:18;;;14169:30;14235:34;14215:18;;;14208:62;-1:-1:-1;;;14286:18:1;;;14279:42;14338:19;;39596:95:0;13955:408:1;39596:95:0;39709:10;39720:5;39709:17;;;;;;;;:::i;:::-;;;;;;;;;39702:24;;39501:233;;;:::o;25002:239::-;25074:7;25110:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25110:16:0;25145:19;25137:73;;;;-1:-1:-1;;;25137:73:0;;8676:2:1;25137:73:0;;;8658:21:1;8715:2;8695:18;;;8688:30;8754:34;8734:18;;;8727:62;-1:-1:-1;;;8805:18:1;;;8798:39;8854:19;;25137:73:0;8474:405:1;24732:208:0;24804:7;-1:-1:-1;;;;;24832:19:0;;24824:74;;;;-1:-1:-1;;;24824:74:0;;8265:2:1;24824:74:0;;;8247:21:1;8304:2;8284:18;;;8277:30;8343:34;8323:18;;;8316:62;-1:-1:-1;;;8394:18:1;;;8387:40;8444:19;;24824:74:0;8063:406:1;24824:74:0;-1:-1:-1;;;;;;24916:16:0;;;;;:9;:16;;;;;;;24732:208::o;39743:172::-;39813:7;39838:21;39855:3;39838:16;:21::i;:::-;:26;:69;;-1:-1:-1;;;;;39887:17:0;;;;;;:12;:17;;;;;;;;:20;;;;;;;;;39838:69;;;-1:-1:-1;;39831:76:0;39743:172;-1:-1:-1;;39743:172:0:o;25604:104::-;25660:13;25693:7;25686:14;;;;;:::i;27287:295::-;-1:-1:-1;;;;;27390:24:0;;8224:10;27390:24;;27382:62;;;;-1:-1:-1;;;27382:62:0;;7073:2:1;27382:62:0;;;7055:21:1;7112:2;7092:18;;;7085:30;7151:27;7131:18;;;7124:55;7196:18;;27382:62:0;6871:349:1;27382:62:0;8224:10;27457:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27457:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27457:53:0;;;;;;;;;;27526:48;;5002:41:1;;;27457:42:0;;8224:10;27526:48;;4975:18:1;27526:48:0;;;;;;;27287:295;;:::o;45356:139::-;45398:4;45441:10;;45422:15;:29;;:65;;;;-1:-1:-1;45471:16:0;;39291:10;:17;45455:32;45422:65;45415:72;;45356:139;:::o;9810:201::-;9394:6;;-1:-1:-1;;;;;9394:6:0;8224:10;9541:23;9533:68;;;;-1:-1:-1;;;9533:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9894:22:0;::::1;9886:81;;;::::0;-1:-1:-1;;;9886:81:0;;9086:2:1;9886:81:0::1;::::0;::::1;9068:21:1::0;9125:2;9105:18;;;9098:30;9164:34;9144:18;;;9137:62;-1:-1:-1;;;9215:18:1;;;9208:44;9269:19;;9886:81:0::1;8884:410:1::0;9886:81:0::1;9978:14;:25:::0;;-1:-1:-1;;;;;;9978:25:0::1;-1:-1:-1::0;;;;;9978:25:0;;;::::1;::::0;;;::::1;::::0;;9810:201::o;28550:328::-;28725:41;8224:10;28758:7;28725:18;:41::i;:::-;28717:103;;;;-1:-1:-1;;;28717:103:0;;;;;;;:::i;:::-;28831:39;28845:4;28851:2;28855:7;28864:5;28831:13;:39::i;:::-;28550:328;;;;:::o;25779:334::-;30453:4;30477:16;;;:7;:16;;;;;;25852:13;;-1:-1:-1;;;;;30477:16:0;25878:76;;;;-1:-1:-1;;;25878:76:0;;12166:2:1;25878:76:0;;;12148:21:1;12205:2;12185:18;;;12178:30;12244:34;12224:18;;;12217:62;-1:-1:-1;;;12295:18:1;;;12288:45;12350:19;;25878:76:0;11964:411:1;25878:76:0;25967:21;25991:10;26438:9;;;;;;;;;-1:-1:-1;26438:9:0;;;26361:94;25991:10;25967:34;;26043:1;26025:7;26019:21;:25;:86;;;;;;;;;;;;;;;;;26071:7;26080:18;:7;:16;:18::i;:::-;26054:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26019:86;26012:93;25779:334;-1:-1:-1;;;25779:334:0:o;45503:128::-;45549:7;45576:11;:9;:11::i;:::-;:47;;-1:-1:-1;;;45606:17:0;45356:139::o;45576:47::-;-1:-1:-1;39291:10:0;:17;;45356:139::o;45643:99::-;9394:6;;-1:-1:-1;;;;;9394:6:0;8224:10;9541:23;9533:68;;;;-1:-1:-1;;;9533:68:0;;;;;;;:::i;:::-;44533:7;:17;;-1:-1:-1;;;;;;44533:17:0;-1:-1:-1;;;;;44533:17:0;;;;;45643:99;:::o;45709:25::-:1;45643:99:::0;:::o;24363:305::-;24465:4;-1:-1:-1;;;;;;24502:40:0;;-1:-1:-1;;;24502:40:0;;:105;;-1:-1:-1;;;;;;;24559:48:0;;-1:-1:-1;;;24559:48:0;24502:105;:158;;;-1:-1:-1;;;;;;;;;;23079:40:0;;;24624:36;22970:157;34370:174;34445:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34445:29:0;-1:-1:-1;;;;;34445:29:0;;;;;;;;:24;;34499:23;34445:24;34499:14;:23::i;:::-;-1:-1:-1;;;;;34490:46:0;;;;;;;;;;;34370:174;;:::o;30682:348::-;30775:4;30477:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30477:16:0;30792:73;;;;-1:-1:-1;;;30792:73:0;;7427:2:1;30792:73:0;;;7409:21:1;7466:2;7446:18;;;7439:30;7505:34;7485:18;;;7478:62;-1:-1:-1;;;7556:18:1;;;7549:42;7608:19;;30792:73:0;7225:408:1;30792:73:0;30876:13;30892:23;30907:7;30892:14;:23::i;:::-;30876:39;;30945:5;-1:-1:-1;;;;;30934:16:0;:7;-1:-1:-1;;;;;30934:16:0;;:51;;;;30978:7;-1:-1:-1;;;;;30954:31:0;:20;30966:7;30954:11;:20::i;:::-;-1:-1:-1;;;;;30954:31:0;;30934:51;:87;;;-1:-1:-1;;;;;;27774:25:0;;;27750:4;27774:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30989:32;30926:96;30682:348;-1:-1:-1;;;;30682:348:0:o;33674:578::-;33833:4;-1:-1:-1;;;;;33806:31:0;:23;33821:7;33806:14;:23::i;:::-;-1:-1:-1;;;;;33806:31:0;;33798:85;;;;-1:-1:-1;;;33798:85:0;;11756:2:1;33798:85:0;;;11738:21:1;11795:2;11775:18;;;11768:30;11834:34;11814:18;;;11807:62;-1:-1:-1;;;11885:18:1;;;11878:39;11934:19;;33798:85:0;11554:405:1;33798:85:0;-1:-1:-1;;;;;33902:16:0;;33894:65;;;;-1:-1:-1;;;33894:65:0;;6668:2:1;33894:65:0;;;6650:21:1;6707:2;6687:18;;;6680:30;6746:34;6726:18;;;6719:62;-1:-1:-1;;;6797:18:1;;;6790:34;6841:19;;33894:65:0;6466:400:1;33894:65:0;33972:39;33993:4;33999:2;34003:7;33972:20;:39::i;:::-;34076:29;34093:1;34097:7;34076:8;:29::i;:::-;-1:-1:-1;;;;;34118:15:0;;;;;;:9;:15;;;;;:20;;34137:1;;34118:15;:20;;34137:1;;34118:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34149:13:0;;;;;;:9;:13;;;;;:18;;34166:1;;34149:13;:18;;34166:1;;34149:18;:::i;:::-;;;;-1:-1:-1;;34178:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34178:21:0;-1:-1:-1;;;;;34178:21:0;;;;;;;;;34217:27;;34178:16;;34217:27;;;;;;;33674:578;;;:::o;31372:110::-;31448:26;31458:2;31462:7;31448:26;;;;;;;;;;;;:9;:26::i;:::-;31372:110;;:::o;29760:315::-;29917:28;29927:4;29933:2;29937:7;29917:9;:28::i;:::-;29964:48;29987:4;29993:2;29997:7;30006:5;29964:22;:48::i;:::-;29956:111;;;;-1:-1:-1;;;29956:111:0;;;;;;;:::i;5840:723::-;5896:13;6117:10;6113:53;;-1:-1:-1;;6144:10:0;;;;;;;;;;;;-1:-1:-1;;;6144:10:0;;;;;5840:723::o;6113:53::-;6191:5;6176:12;6232:78;6239:9;;6232:78;;6265:8;;;;:::i;:::-;;-1:-1:-1;6288:10:0;;-1:-1:-1;6296:2:0;6288:10;;:::i;:::-;;;6232:78;;;6320:19;6352:6;6342:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6342:17:0;;6320:39;;6370:154;6377:10;;6370:154;;6404:11;6414:1;6404:11;;:::i;:::-;;-1:-1:-1;6473:10:0;6481:2;6473:5;:10;:::i;:::-;6460:24;;:2;:24;:::i;:::-;6447:39;;6430:6;6437;6430:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6430:56:0;;;;;;;;-1:-1:-1;6501:11:0;6510:2;6501:11;;:::i;:::-;;;6370:154;;40532:499;-1:-1:-1;;;;;40738:18:0;;40734:187;;40773:40;40805:7;41916:10;:17;;41889:24;;;;:15;:24;;;;;:44;;;41944:24;;;;;;;;;;;;41812:164;40773:40;40734:187;;;40843:2;-1:-1:-1;;;;;40835:10:0;:4;-1:-1:-1;;;;;40835:10:0;;40831:90;;40862:47;40895:4;40901:7;40862:32;:47::i;:::-;40951:4;-1:-1:-1;;;;;40945:10:0;:2;-1:-1:-1;;;;;40945:10:0;;40941:83;;40972:40;41000:2;41004:7;40972:27;:40::i;31709:321::-;31839:18;31845:2;31849:7;31839:5;:18::i;:::-;31890:54;31921:1;31925:2;31929:7;31938:5;31890:22;:54::i;:::-;31868:154;;;;-1:-1:-1;;;31868:154:0;;;;;;;:::i;35109:803::-;35264:4;-1:-1:-1;;;;;35285:13:0;;15465:20;15513:8;35281:624;;35321:72;;-1:-1:-1;;;35321:72:0;;-1:-1:-1;;;;;35321:36:0;;;;;:72;;8224:10;;35372:4;;35378:7;;35387:5;;35321:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35321:72:0;;;;;;;;-1:-1:-1;;35321:72:0;;;;;;;;;;;;:::i;:::-;;;35317:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35567:13:0;;35563:272;;35610:60;;-1:-1:-1;;;35610:60:0;;;;;;;:::i;35563:272::-;35785:6;35779:13;35770:6;35766:2;35762:15;35755:38;35317:533;-1:-1:-1;;;;;;35444:55:0;-1:-1:-1;;;35444:55:0;;-1:-1:-1;35437:62:0;;35281:624;-1:-1:-1;35889:4:0;35109:803;;;;;;:::o;42603:491::-;42875:22;42892:4;42875:16;:22::i;:::-;42901:1;42875:27;42867:57;;;;-1:-1:-1;;;42867:57:0;;11410:2:1;42867:57:0;;;11392:21:1;11449:2;11429:18;;;11422:30;-1:-1:-1;;;11468:18:1;;;11461:47;11525:18;;42867:57:0;11208:341:1;42867:57:0;43021:26;;;;:17;:26;;;;;;;;43014:33;;;-1:-1:-1;;;;;43065:18:0;;;;;:12;:18;;;;;:21;;;;;;;;43058:28;42603:491::o;41332:279::-;41417:14;41434:20;41451:2;41434:16;:20::i;:::-;41417:37;-1:-1:-1;41473:11:0;;41465:45;;;;-1:-1:-1;;;41465:45:0;;10286:2:1;41465:45:0;;;10268:21:1;10325:2;10305:18;;;10298:30;-1:-1:-1;;;10344:18:1;;;10337:51;10405:18;;41465:45:0;10084:345:1;41465:45:0;-1:-1:-1;;;;;41523:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41568:26;;;:17;:26;;;:35;41332:279::o;32366:382::-;-1:-1:-1;;;;;32446:16:0;;32438:61;;;;-1:-1:-1;;;32438:61:0;;9501:2:1;32438:61:0;;;9483:21:1;;;9520:18;;;9513:30;9579:34;9559:18;;;9552:62;9631:18;;32438:61:0;9299:356:1;32438:61:0;30453:4;30477:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30477:16:0;:30;32510:58;;;;-1:-1:-1;;;32510:58:0;;6311:2:1;32510:58:0;;;6293:21:1;6350:2;6330:18;;;6323:30;6389;6369:18;;;6362:58;6437:18;;32510:58:0;6109:352:1;32510:58:0;32581:45;32610:1;32614:2;32618:7;32581:20;:45::i;:::-;-1:-1:-1;;;;;32639:13:0;;;;;;:9;:13;;;;;:18;;32656:1;;32639:13;:18;;32656:1;;32639:18;:::i;:::-;;;;-1:-1:-1;;32668:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32668:21:0;-1:-1:-1;;;;;32668:21:0;;;;;;;;32707:33;;32668:16;;;32707:33;;32668:16;;32707:33;32366:382;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:1:o;3686:470::-;3865:3;3903:6;3897:13;3919:53;3965:6;3960:3;3953:4;3945:6;3941:17;3919:53;:::i;:::-;4035:13;;3994:16;;;;4057:57;4035:13;3994:16;4091:4;4079:17;;4057:57;:::i;:::-;4130:20;;3686:470;-1:-1:-1;;;;3686:470:1:o;4369:488::-;-1:-1:-1;;;;;4638:15:1;;;4620:34;;4690:15;;4685:2;4670:18;;4663:43;4737:2;4722:18;;4715:34;;;4785:3;4780:2;4765:18;;4758:31;;;4563:4;;4806:45;;4831:19;;4823:6;4806:45;:::i;:::-;4798:53;4369:488;-1:-1:-1;;;;;;4369:488:1:o;5054:219::-;5203:2;5192:9;5185:21;5166:4;5223:44;5263:2;5252:9;5248:18;5240:6;5223:44;:::i;5690:414::-;5892:2;5874:21;;;5931:2;5911:18;;;5904:30;5970:34;5965:2;5950:18;;5943:62;-1:-1:-1;;;6036:2:1;6021:18;;6014:48;6094:3;6079:19;;5690:414::o;10847:356::-;11049:2;11031:21;;;11068:18;;;11061:30;11127:34;11122:2;11107:18;;11100:62;11194:2;11179:18;;10847:356::o;13124:413::-;13326:2;13308:21;;;13365:2;13345:18;;;13338:30;13404:34;13399:2;13384:18;;13377:62;-1:-1:-1;;;13470:2:1;13455:18;;13448:47;13527:3;13512:19;;13124:413::o;14910:128::-;14950:3;14981:1;14977:6;14974:1;14971:13;14968:39;;;14987:18;;:::i;:::-;-1:-1:-1;15023:9:1;;14910:128::o;15043:120::-;15083:1;15109;15099:35;;15114:18;;:::i;:::-;-1:-1:-1;15148:9:1;;15043:120::o;15168:168::-;15208:7;15274:1;15270;15266:6;15262:14;15259:1;15256:21;15251:1;15244:9;15237:17;15233:45;15230:71;;;15281:18;;:::i;:::-;-1:-1:-1;15321:9:1;;15168:168::o;15341:125::-;15381:4;15409:1;15406;15403:8;15400:34;;;15414:18;;:::i;:::-;-1:-1:-1;15451:9:1;;15341:125::o;15471:258::-;15543:1;15553:113;15567:6;15564:1;15561:13;15553:113;;;15643:11;;;15637:18;15624:11;;;15617:39;15589:2;15582:10;15553:113;;;15684:6;15681:1;15678:13;15675:48;;;-1:-1:-1;;15719:1:1;15701:16;;15694:27;15471:258::o;15734:380::-;15813:1;15809:12;;;;15856;;;15877:61;;15931:4;15923:6;15919:17;15909:27;;15877:61;15984:2;15976:6;15973:14;15953:18;15950:38;15947:161;;;16030:10;16025:3;16021:20;16018:1;16011:31;16065:4;16062:1;16055:15;16093:4;16090:1;16083:15;15947:161;;15734:380;;;:::o;16119:135::-;16158:3;-1:-1:-1;;16179:17:1;;16176:43;;;16199:18;;:::i;:::-;-1:-1:-1;16246:1:1;16235:13;;16119:135::o;16259:112::-;16291:1;16317;16307:35;;16322:18;;:::i;:::-;-1:-1:-1;16356:9:1;;16259:112::o;16376:127::-;16437:10;16432:3;16428:20;16425:1;16418:31;16468:4;16465:1;16458:15;16492:4;16489:1;16482:15;16508:127;16569:10;16564:3;16560:20;16557:1;16550:31;16600:4;16597:1;16590:15;16624:4;16621:1;16614:15;16640:127;16701:10;16696:3;16692:20;16689:1;16682:31;16732:4;16729:1;16722:15;16756:4;16753:1;16746:15;16772:127;16833:10;16828:3;16824:20;16821:1;16814:31;16864:4;16861:1;16854:15;16888:4;16885:1;16878:15;16904:131;-1:-1:-1;;;;;;16978:32:1;;16968:43;;16958:71;;17025:1;17022;17015:12
Swarm Source
ipfs://cbe59b4a14822b34ead2825b8a4fe6ff93878e9bea62a03150729c42d4a8f5e2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $2,703.6 | 0.0001 | $0.2703 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.