Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Reward Pool | 19363863 | 719 days ago | IN | 0 ETH | 0.00563237 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
GPUMINERNode
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-03-04
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(
address indexed from,
address indexed to,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(
address indexed owner,
address indexed approved,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(
address indexed owner,
address indexed operator,
bool approved
);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId)
external
view
returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator)
external
view
returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
external
view
returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length)
internal
pure
returns (string memory)
{
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
(bool success, ) = recipient.call{value: amount}("");
require(
success,
"Address: unable to send value, recipient may have reverted"
);
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/laTest2/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return
functionCallWithValue(
target,
data,
value,
"Address: low-level call with value failed"
);
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(
address(this).balance >= value,
"Address: insufficient balance for call"
);
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(
data
);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data)
internal
view
returns (bytes memory)
{
return
functionStaticCall(
target,
data,
"Address: low-level static call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return
functionDelegateCall(
target,
data,
"Address: low-level delegate call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner)
public
view
virtual
override
returns (uint256)
{
require(
owner != address(0),
"ERC721: balance query for the zero address"
);
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId)
public
view
virtual
override
returns (address)
{
address owner = _owners[tokenId];
require(
owner != address(0),
"ERC721: owner query for nonexistent token"
);
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory baseURI = _baseURI();
return
bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
virtual
override
returns (address)
{
require(
_exists(tokenId),
"ERC721: approved query for nonexistent token"
);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
virtual
override
{
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId)
internal
view
virtual
returns (bool)
{
require(
_exists(tokenId),
"ERC721: operator query for nonexistent token"
);
address owner = ERC721.ownerOf(tokenId);
return (spender == owner ||
getApproved(tokenId) == spender ||
isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(
ERC721.ownerOf(tokenId) == from,
"ERC721: transfer of token that is not own"
);
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721: transfer to non ERC721Receiver implementer"
);
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(IERC165, ERC721)
returns (bool)
{
return
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
public
view
virtual
override
returns (uint256)
{
require(
index < ERC721.balanceOf(owner),
"ERC721Enumerable: owner index out of bounds"
);
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index)
public
view
virtual
override
returns (uint256)
{
require(
index < ERC721Enumerable.totalSupply(),
"ERC721Enumerable: global index out of bounds"
);
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
private
{
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
interface IRewardPool {
function addNodeInfo(uint _nftId, uint _nodeType, address _owner) external returns (bool);
function updateNodeOwner(uint _nftId, address _owner) external returns (bool);
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
pragma solidity ^0.8.7;
contract ControlledAccess is Ownable {
/*
* @dev Requires msg.sender to have valid access message.
* @param _v ECDSA signature parameter v.
* @param _r ECDSA signature parameters r.
* @param _s ECDSA signature parameters s.
*/
modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s)
{
require( isValidAccessMessage(msg.sender,_v,_r,_s), "Not valid Message");
_;
}
/*
* @dev Verifies if message was signed by owner to give access to _add for this contract.
* Assumes Geth signature prefix.
* @param _add Address of agent with access
* @param _v ECDSA signature parameter v.
* @param _r ECDSA signature parameters r.
* @param _s ECDSA signature parameters s.
* @return Validity of access message for a given address.
*/
function isValidAccessMessage(
address _add,
uint8 _v,
bytes32 _r,
bytes32 _s
)
public view returns (bool)
{
bytes32 msgHash = keccak256(abi.encodePacked(address(this), _add));
bytes memory prefix = "\x19Ethereum Signed Message:\n32";
bytes32 prefixedHash = keccak256(abi.encodePacked(prefix, msgHash));
address _recovered = ecrecover(prefixedHash, _v, _r, _s);
if (owner() == _recovered)
{
return true;
}
return false;
}
}
pragma solidity >=0.7.0 <0.9.0;
contract GPUMINERNode is ERC721Enumerable, Ownable, ControlledAccess{
using Strings for uint256;
string baseURI;
string public baseExtension = ".json";
uint256 public timeDeployed;
uint256 public allowMintingAfter = 0;
address public Test2;
bool public isPaused = false;
address public rewardPool;
uint[5] public nodeCount = [0,0,0,0,0];
mapping(uint256 => uint) public nodeType;
uint[5] public maxSupplyPerNode = [2000,2000,2000,2000, 2000];
// tax in 1e4 (10000 = 100%)
uint256 public tax = 0;
uint256[5] public mintPrices=[3000000000,15000000000,75000000000,150000000000,275000000000];
constructor(
string memory _name,
string memory _symbol,
string memory _initBaseURI,
uint256 _revealTime,
address _Test2Address
) ERC721(_name, _symbol) {
if (_revealTime > block.timestamp) {
allowMintingAfter = _revealTime;
}
Test2 = _Test2Address;
timeDeployed = block.timestamp;
setBaseURI(_initBaseURI);
}
modifier onlyRewardPool() {
require(rewardPool == msg.sender, "Ownable: caller is not the rewardPool");
_;
}
receive() external payable {
}
function getMintPrices() public view returns (uint256[5] memory) {
return mintPrices;
}
function updateMaxSupplyPerNode(uint256[5] memory _newMaxSupplyPerNode) public onlyOwner {
for (uint i = 0; i < 5; i++) {
require(nodeCount[i]< _newMaxSupplyPerNode[i], "Cannot update max supply if there are more nodes than the new max supply");
}
maxSupplyPerNode = _newMaxSupplyPerNode;
}
function updateMintPrices(uint256[5] memory _prices) public onlyOwner{
mintPrices = _prices;
}
function setRewardPool(address _rewardPool) public onlyOwner{
rewardPool = _rewardPool;
}
function updateTax(uint256 _tax) public onlyOwner{
tax = _tax;
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function updateTest2Address( address _Test2Address) public onlyOwner{
Test2 = _Test2Address;
}
function _mint(uint _type, address to) internal{
require(
block.timestamp >= allowMintingAfter,
"Minting now allowed yet"
);
require(_type>0 && _type<=5, "Invalid node type");
require(
nodeCount[_type-1] <= maxSupplyPerNode[_type-1],
"Max supply reached"
);
nodeCount[_type-1] += 1;
uint256 supply = totalSupply();
nodeType[supply+1] = _type;
require(!isPaused);
_safeMint(to, supply + 1);
}
function mintFromRewards(uint _type, address to, uint256 n_tokens) public onlyRewardPool{
for (uint i = 0; i < n_tokens; i++) {
_mint(_type, to);
}
}
function mint(uint _type, uint256 n_tokens) public payable {
uint256 price = mintPrices[_type-1]*n_tokens;
uint256 _tax = (price*tax)/10000;
if (msg.sender != owner()) {
require(IERC20(Test2).transferFrom(msg.sender, address(this), price), "Not enough funds");
IERC20(Test2).transfer(rewardPool, price-_tax);
}
for (uint i = 0; i < n_tokens; i++) {
_mint(_type, msg.sender);
}
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory tokenIds = new uint256[](ownerTokenCount);
for (uint256 i; i < ownerTokenCount; i++) {
tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokenIds;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory currentBaseURI = _baseURI();
return
bytes(currentBaseURI).length > 0
? string(
abi.encodePacked(
currentBaseURI,
nodeType[tokenId].toString(),
baseExtension
)
)
: "";
}
function getSecondsUntilMinting() public view returns (uint256) {
if (block.timestamp < allowMintingAfter) {
return (allowMintingAfter) - block.timestamp;
} else {
return 0;
}
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function setBaseExtension(string memory _newBaseExtension)
public
onlyOwner
{
baseExtension = _newBaseExtension;
}
function setIsPaused(bool _state) public onlyOwner {
isPaused = _state;
}
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
IRewardPool(rewardPool).addNodeInfo(tokenId, nodeType[tokenId], to);
} else if (from != to) {
IRewardPool(rewardPool).updateNodeOwner(tokenId, to);
}
}
function emergenceyWithdrawTokens() public onlyOwner {
IERC20(Test2).transfer(owner(), IERC20(Test2).balanceOf(address(this)));
}
function withdraw() public payable onlyOwner {
(bool success, ) = payable(msg.sender).call{
value: address(this).balance
}("");
require(success);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"uint256","name":"_revealTime","type":"uint256"},{"internalType":"address","name":"_Test2Address","type":"address"}],"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":"Test2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowMintingAfter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergenceyWithdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrices","outputs":[{"internalType":"uint256[5]","name":"","type":"uint256[5]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSecondsUntilMinting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxSupplyPerNode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_type","type":"uint256"},{"internalType":"uint256","name":"n_tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_type","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"n_tokens","type":"uint256"}],"name":"mintFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nodeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nodeType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardPool","type":"address"}],"name":"setRewardPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeDeployed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[5]","name":"_newMaxSupplyPerNode","type":"uint256[5]"}],"name":"updateMaxSupplyPerNode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[5]","name":"_prices","type":"uint256[5]"}],"name":"updateMintPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"updateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Test2Address","type":"address"}],"name":"updateTest2Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000297565b506000600e819055600f805460ff60a01b191690556040805160a081018252828152602081018390529081018290526060810182905260808101919091526200007690601190600562000326565b506040805160a0810182526107d080825260208201819052918101829052606081018290526080810191909152620000b39060179060056200035c565b506000601c556040805160a08101825263b2d05e00815264037e11d6006020820152641176592e00918101919091526422ecb25c00606082015264400746fe0060808201526200010890601d90600562000393565b503480156200011657600080fd5b50604051620035d4380380620035d483398101604081905262000139916200049b565b8451859085906200015290600090602085019062000297565b5080516200016890600190602084019062000297565b505050620001856200017f620001c960201b60201c565b620001cd565b428211156200019457600e8290555b600f80546001600160a01b0319166001600160a01b03831617905542600d55620001be836200021f565b5050505050620005ad565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200027e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200029390600b90602084019062000297565b5050565b828054620002a5906200055a565b90600052602060002090601f016020900481019282620002c9576000855562000314565b82601f10620002e457805160ff191683800117855562000314565b8280016001018555821562000314579182015b8281111562000314578251825591602001919060010190620002f7565b5062000322929150620003cd565b5090565b826005810192821562000314579160200282015b8281111562000314578251829060ff169055916020019190600101906200033a565b826005810192821562000314579160200282015b8281111562000314578251829061ffff1690559160200191906001019062000370565b826005810192821562000314579160200282015b8281111562000314578251829064ffffffffff16905591602001919060010190620003a7565b5b80821115620003225760008155600101620003ce565b600082601f830112620003f657600080fd5b81516001600160401b038082111562000413576200041362000597565b604051601f8301601f19908116603f011681019082821181831017156200043e576200043e62000597565b816040528381526020925086838588010111156200045b57600080fd5b600091505b838210156200047f578582018301518183018401529082019062000460565b83821115620004915760008385830101525b9695505050505050565b600080600080600060a08688031215620004b457600080fd5b85516001600160401b0380821115620004cc57600080fd5b620004da89838a01620003e4565b96506020880151915080821115620004f157600080fd5b620004ff89838a01620003e4565b955060408801519150808211156200051657600080fd5b506200052588828901620003e4565b60608801516080890151919550935090506001600160a01b03811681146200054c57600080fd5b809150509295509295909350565b600181811c908216806200056f57607f821691505b602082108114156200059157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61301780620005bd6000396000f3fe6080604052600436106102805760003560e01c806370a082311161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461076a578063db00fb201461078a578063e985e9c5146107ac578063f2fde38b146107f5578063fa1f7b0c14610815578063fa7e685b1461083557600080fd5b8063b88d4fde146106b5578063c6682862146106d5578063c87b56dd146106ea578063cca0feb61461070a578063cdc4878b1461072a578063d883c7131461074a57600080fd5b806395d89b411161011357806395d89b411461061457806399c8d55614610629578063a22cb4651461063f578063a75052cb1461065f578063aab1400614610674578063b187bd261461069457600080fd5b806370a082311461058b578063715018a6146105ab57806378238c37146105c0578063872bdcdb146105e05780638da5cb5b146105f657600080fd5b806323b872dd116101f3578063438b6300116101ac578063438b6300146104be5780634f6ccce7146104eb57806355f804b31461050b5780636187b33e1461052b5780636352211e1461054b57806366666aa91461056b57600080fd5b806323b872dd14610416578063240976bf146104365780632f745c591461045657806332624114146104765780633ccfd60b1461049657806342842e0e1461049e57600080fd5b80630a165fdc116102455780630a165fdc1461035d57806318160ddd1461038b57806319188c35146103a05780631b2ef1ca146103b65780631c794b84146103c9578063218444ab146103f657600080fd5b8062d83c211461028c57806301ffc9a7146102ae57806306fdde03146102e3578063081812fc14610305578063095ea7b31461033d57600080fd5b3661028757005b600080fd5b34801561029857600080fd5b506102ac6102a736600461283b565b61084a565b005b3480156102ba57600080fd5b506102ce6102c9366004612aac565b61089f565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f86108ca565b6040516102da9190612d6c565b34801561031157600080fd5b50610325610320366004612b2f565b61095c565b6040516001600160a01b0390911681526020016102da565b34801561034957600080fd5b506102ac610358366004612978565b6109f1565b34801561036957600080fd5b5061037d610378366004612b2f565b610b07565b6040519081526020016102da565b34801561039757600080fd5b5060085461037d565b3480156103ac57600080fd5b5061037d600d5481565b6102ac6103c4366004612b86565b610b1e565b3480156103d557600080fd5b5061037d6103e4366004612b2f565b60166020526000908152604090205481565b34801561040257600080fd5b50600f54610325906001600160a01b031681565b34801561042257600080fd5b506102ac610431366004612889565b610d2f565b34801561044257600080fd5b506102ac610451366004612a72565b610d60565b34801561046257600080fd5b5061037d610471366004612978565b610da8565b34801561048257600080fd5b506102ce6104913660046129a2565b610e3e565b6102ac610f89565b3480156104aa57600080fd5b506102ac6104b9366004612889565b61100b565b3480156104ca57600080fd5b506104de6104d936600461283b565b611026565b6040516102da9190612d28565b3480156104f757600080fd5b5061037d610506366004612b2f565b6110c8565b34801561051757600080fd5b506102ac610526366004612ae6565b61115b565b34801561053757600080fd5b5061037d610546366004612b2f565b61119c565b34801561055757600080fd5b50610325610566366004612b2f565b6111ac565b34801561057757600080fd5b50601054610325906001600160a01b031681565b34801561059757600080fd5b5061037d6105a636600461283b565b611223565b3480156105b757600080fd5b506102ac6112aa565b3480156105cc57600080fd5b506102ac6105db36600461283b565b6112e0565b3480156105ec57600080fd5b5061037d600e5481565b34801561060257600080fd5b50600a546001600160a01b0316610325565b34801561062057600080fd5b506102f861132c565b34801561063557600080fd5b5061037d601c5481565b34801561064b57600080fd5b506102ac61065a366004612941565b61133b565b34801561066b57600080fd5b5061037d611400565b34801561068057600080fd5b506102ac61068f3660046129ec565b611425565b3480156106a057600080fd5b50600f546102ce90600160a01b900460ff1681565b3480156106c157600080fd5b506102ac6106d03660046128c5565b61152b565b3480156106e157600080fd5b506102f8611563565b3480156106f657600080fd5b506102f8610705366004612b2f565b6115f1565b34801561071657600080fd5b506102ac610725366004612b2f565b6116df565b34801561073657600080fd5b5061037d610745366004612b2f565b61170e565b34801561075657600080fd5b506102ac610765366004612b61565b61171e565b34801561077657600080fd5b506102ac610785366004612ae6565b6117ad565b34801561079657600080fd5b5061079f6117ea565b6040516102da9190612cf7565b3480156107b857600080fd5b506102ce6107c7366004612856565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561080157600080fd5b506102ac61081036600461283b565b611825565b34801561082157600080fd5b506102ac6108303660046129ec565b6118bd565b34801561084157600080fd5b506102ac6118f4565b600a546001600160a01b0316331461087d5760405162461bcd60e51b815260040161087490612dd1565b60405180910390fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806108c457506108c482611a3a565b92915050565b6060600080546108d990612ee5565b80601f016020809104026020016040519081016040528092919081815260200182805461090590612ee5565b80156109525780601f1061092757610100808354040283529160200191610952565b820191906000526020600020905b81548152906001019060200180831161093557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109d55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610874565b506000908152600460205260409020546001600160a01b031690565b60006109fc826111ac565b9050806001600160a01b0316836001600160a01b03161415610a6a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610874565b336001600160a01b0382161480610a865750610a8681336107c7565b610af85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610874565b610b028383611a8a565b505050565b60178160058110610b1757600080fd5b0154905081565b600081601d610b2e600186612ea2565b60058110610b3e57610b3e612f91565b0154610b4a9190612e83565b90506000612710601c5483610b5f9190612e83565b610b699190612e6f565b9050610b7d600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610d0157600f546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015610be757600080fd5b505af1158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f9190612a8f565b610c5e5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610874565b600f546010546001600160a01b039182169163a9059cbb9116610c818486612ea2565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610cc757600080fd5b505af1158015610cdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cff9190612a8f565b505b60005b83811015610d2857610d168533611af8565b80610d2081612f20565b915050610d04565b5050505050565b610d393382611c9e565b610d555760405162461bcd60e51b815260040161087490612e06565b610b02838383611d91565b600a546001600160a01b03163314610d8a5760405162461bcd60e51b815260040161087490612dd1565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b6000610db383611223565b8210610e155760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610874565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6040516bffffffffffffffffffffffff1930606090811b8216602084015286901b166034820152600090819060480160408051601f1981840301815282825280516020918201208383018352601c84527f19457468657265756d205369676e6564204d6573736167653a0a333200000000848301529151919350600091610ec9918491869101612bd4565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff8b169284019290925260608301899052608083018890529092509060019060a0016020604051602081039080840390855afa158015610f34573d6000803e3d6000fd5b505050602060405103519050806001600160a01b0316610f5c600a546001600160a01b031690565b6001600160a01b03161415610f78576001945050505050610f81565b60009450505050505b949350505050565b600a546001600160a01b03163314610fb35760405162461bcd60e51b815260040161087490612dd1565b604051600090339047908381818185875af1925050503d8060008114610ff5576040519150601f19603f3d011682016040523d82523d6000602084013e610ffa565b606091505b505090508061100857600080fd5b50565b610b028383836040518060200160405280600081525061152b565b6060600061103383611223565b905060008167ffffffffffffffff81111561105057611050612fa7565b604051908082528060200260200182016040528015611079578160200160208202803683370190505b50905060005b828110156110c0576110918582610da8565b8282815181106110a3576110a3612f91565b6020908102919091010152806110b881612f20565b91505061107f565b509392505050565b60006110d360085490565b82106111365760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610874565b6008828154811061114957611149612f91565b90600052602060002001549050919050565b600a546001600160a01b031633146111855760405162461bcd60e51b815260040161087490612dd1565b805161119890600b9060208401906126c5565b5050565b601d8160058110610b1757600080fd5b6000818152600260205260408120546001600160a01b0316806108c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610874565b60006001600160a01b03821661128e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610874565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112d45760405162461bcd60e51b815260040161087490612dd1565b6112de6000611f3c565b565b600a546001600160a01b0316331461130a5760405162461bcd60e51b815260040161087490612dd1565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546108d990612ee5565b6001600160a01b0382163314156113945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610874565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600e5442101561141f5742600e5461141a9190612ea2565b905090565b50600090565b600a546001600160a01b0316331461144f5760405162461bcd60e51b815260040161087490612dd1565b60005b600581101561151d5781816005811061146d5761146d612f91565b60200201516011826005811061148557611485612f91565b01541061150b5760405162461bcd60e51b815260206004820152604860248201527f43616e6e6f7420757064617465206d617820737570706c79206966207468657260448201527f6520617265206d6f7265206e6f646573207468616e20746865206e6577206d616064820152677820737570706c7960c01b608482015260a401610874565b8061151581612f20565b915050611452565b506111986017826005612749565b6115353383611c9e565b6115515760405162461bcd60e51b815260040161087490612e06565b61155d84848484611f8e565b50505050565b600c805461157090612ee5565b80601f016020809104026020016040519081016040528092919081815260200182805461159c90612ee5565b80156115e95780601f106115be576101008083540402835291602001916115e9565b820191906000526020600020905b8154815290600101906020018083116115cc57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166116705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610874565b600061167a611fc1565b9050600081511161169a57604051806020016040528060008152506116d8565b60008381526016602052604090205481906116b490611fd0565b600c6040516020016116c893929190612bf6565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117095760405162461bcd60e51b815260040161087490612dd1565b601c55565b60118160058110610b1757600080fd5b6010546001600160a01b031633146117865760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c653a2063616c6c6572206973206e6f742074686520726577617260448201526419141bdbdb60da1b6064820152608401610874565b60005b8181101561155d5761179b8484611af8565b806117a581612f20565b915050611789565b600a546001600160a01b031633146117d75760405162461bcd60e51b815260040161087490612dd1565b805161119890600c9060208401906126c5565b6117f2612776565b6040805160a081019182905290601d9060059082845b815481526020019060010190808311611808575050505050905090565b600a546001600160a01b0316331461184f5760405162461bcd60e51b815260040161087490612dd1565b6001600160a01b0381166118b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610874565b61100881611f3c565b600a546001600160a01b031633146118e75760405162461bcd60e51b815260040161087490612dd1565b611198601d826005612749565b600a546001600160a01b0316331461191e5760405162461bcd60e51b815260040161087490612dd1565b600f546001600160a01b031663a9059cbb611941600a546001600160a01b031690565b600f546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561198457600080fd5b505afa158015611998573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119bc9190612b48565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611a0257600080fd5b505af1158015611a16573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110089190612a8f565b60006001600160e01b031982166380ac58cd60e01b1480611a6b57506001600160e01b03198216635b5e139f60e01b145b806108c457506301ffc9a760e01b6001600160e01b03198316146108c4565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611abf826111ac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600e54421015611b4a5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206e6f7720616c6c6f776564207965740000000000000000006044820152606401610874565b600082118015611b5b575060058211155b611b9b5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964206e6f6465207479706560781b6044820152606401610874565b6017611ba8600184612ea2565b60058110611bb857611bb8612f91565b01546011611bc7600185612ea2565b60058110611bd757611bd7612f91565b01541115611c1c5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610874565b60016011611c2a8285612ea2565b60058110611c3a57611c3a612f91565b016000828254611c4a9190612e57565b90915550506008548260166000611c62846001612e57565b8152602081019190915260400160002055600f54600160a01b900460ff1615611c8a57600080fd5b610b0282611c99836001612e57565b6120ce565b6000818152600260205260408120546001600160a01b0316611d175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610874565b6000611d22836111ac565b9050806001600160a01b0316846001600160a01b03161480611d5d5750836001600160a01b0316611d528461095c565b6001600160a01b0316145b80610f8157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f81565b826001600160a01b0316611da4826111ac565b6001600160a01b031614611e0c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610874565b6001600160a01b038216611e6e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610874565b611e798383836120e8565b611e84600082611a8a565b6001600160a01b0383166000908152600360205260408120805460019290611ead908490612ea2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611edb908490612e57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f99848484611d91565b611fa5848484846121f2565b61155d5760405162461bcd60e51b815260040161087490612d7f565b6060600b80546108d990612ee5565b606081611ff45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561201e578061200881612f20565b91506120179050600a83612e6f565b9150611ff8565b60008167ffffffffffffffff81111561203957612039612fa7565b6040519080825280601f01601f191660200182016040528015612063576020820181803683370190505b5090505b8415610f8157612078600183612ea2565b9150612085600a86612f3b565b612090906030612e57565b60f81b8183815181106120a5576120a5612f91565b60200101906001600160f81b031916908160001a9053506120c7600a86612e6f565b9450612067565b6111988282604051806020016040528060008152506122fc565b6120f383838361232f565b6001600160a01b0383166121a05760105460008281526016602052604090819020549051638b9b466760e01b81526004810184905260248101919091526001600160a01b03848116604483015290911690638b9b4667906064015b602060405180830381600087803b15801561216857600080fd5b505af115801561217c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155d9190612a8f565b816001600160a01b0316836001600160a01b031614610b0257601054604051634bba4a8360e11b8152600481018390526001600160a01b0384811660248301529091169063977495069060440161214e565b60006001600160a01b0384163b156122f457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612236903390899088908890600401612cba565b602060405180830381600087803b15801561225057600080fd5b505af1925050508015612280575060408051601f3d908101601f1916820190925261227d91810190612ac9565b60015b6122da573d8080156122ae576040519150601f19603f3d011682016040523d82523d6000602084013e6122b3565b606091505b5080516122d25760405162461bcd60e51b815260040161087490612d7f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f81565b506001610f81565b61230683836123e7565b61231360008484846121f2565b610b025760405162461bcd60e51b815260040161087490612d7f565b6001600160a01b03831661238a5761238581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123ad565b816001600160a01b0316836001600160a01b0316146123ad576123ad8382612535565b6001600160a01b0382166123c457610b02816125d2565b826001600160a01b0316826001600160a01b031614610b0257610b028282612681565b6001600160a01b03821661243d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610874565b6000818152600260205260409020546001600160a01b0316156124a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610874565b6124ae600083836120e8565b6001600160a01b03821660009081526003602052604081208054600192906124d7908490612e57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161254284611223565b61254c9190612ea2565b60008381526007602052604090205490915080821461259f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906125e490600190612ea2565b6000838152600960205260408120546008805493945090928490811061260c5761260c612f91565b90600052602060002001549050806008838154811061262d5761262d612f91565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061266557612665612f7b565b6001900381819060005260206000200160009055905550505050565b600061268c83611223565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546126d190612ee5565b90600052602060002090601f0160209004810192826126f35760008555612739565b82601f1061270c57805160ff1916838001178555612739565b82800160010185558215612739579182015b8281111561273957825182559160200191906001019061271e565b50612745929150612794565b5090565b8260058101928215612739579160200282018281111561273957825182559160200191906001019061271e565b6040518060a001604052806005906020820280368337509192915050565b5b808211156127455760008155600101612795565b600067ffffffffffffffff808411156127c4576127c4612fa7565b604051601f8501601f19908116603f011681019082821181831017156127ec576127ec612fa7565b8160405280935085815286868601111561280557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461283657600080fd5b919050565b60006020828403121561284d57600080fd5b6116d88261281f565b6000806040838503121561286957600080fd5b6128728361281f565b91506128806020840161281f565b90509250929050565b60008060006060848603121561289e57600080fd5b6128a78461281f565b92506128b56020850161281f565b9150604084013590509250925092565b600080600080608085870312156128db57600080fd5b6128e48561281f565b93506128f26020860161281f565b925060408501359150606085013567ffffffffffffffff81111561291557600080fd5b8501601f8101871361292657600080fd5b612935878235602084016127a9565b91505092959194509250565b6000806040838503121561295457600080fd5b61295d8361281f565b9150602083013561296d81612fbd565b809150509250929050565b6000806040838503121561298b57600080fd5b6129948361281f565b946020939093013593505050565b600080600080608085870312156129b857600080fd5b6129c18561281f565b9350602085013560ff811681146129d757600080fd5b93969395505050506040820135916060013590565b600060a082840312156129fe57600080fd5b82601f830112612a0d57600080fd5b60405160a0810181811067ffffffffffffffff82111715612a3057612a30612fa7565b604052808360a08101861015612a4557600080fd5b60005b6005811015612a67578135835260209283019290910190600101612a48565b509195945050505050565b600060208284031215612a8457600080fd5b81356116d881612fbd565b600060208284031215612aa157600080fd5b81516116d881612fbd565b600060208284031215612abe57600080fd5b81356116d881612fcb565b600060208284031215612adb57600080fd5b81516116d881612fcb565b600060208284031215612af857600080fd5b813567ffffffffffffffff811115612b0f57600080fd5b8201601f81018413612b2057600080fd5b610f81848235602084016127a9565b600060208284031215612b4157600080fd5b5035919050565b600060208284031215612b5a57600080fd5b5051919050565b600080600060608486031215612b7657600080fd5b833592506128b56020850161281f565b60008060408385031215612b9957600080fd5b50508035926020909101359150565b60008151808452612bc0816020860160208601612eb9565b601f01601f19169290920160200192915050565b60008351612be6818460208801612eb9565b9190910191825250602001919050565b600084516020612c098285838a01612eb9565b855191840191612c1c8184848a01612eb9565b8554920191600090600181811c9080831680612c3957607f831692505b858310811415612c5757634e487b7160e01b85526022600452602485fd5b808015612c6b5760018114612c7c57612ca9565b60ff19851688528388019550612ca9565b60008b81526020902060005b85811015612ca15781548a820152908401908801612c88565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ced90830184612ba8565b9695505050505050565b60a08101818360005b6005811015612d1f578151835260209283019290910190600101612d00565b50505092915050565b6020808252825182820181905260009190848201906040850190845b81811015612d6057835183529284019291840191600101612d44565b50909695505050505050565b6020815260006116d86020830184612ba8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612e6a57612e6a612f4f565b500190565b600082612e7e57612e7e612f65565b500490565b6000816000190483118215151615612e9d57612e9d612f4f565b500290565b600082821015612eb457612eb4612f4f565b500390565b60005b83811015612ed4578181015183820152602001612ebc565b8381111561155d5750506000910152565b600181811c90821680612ef957607f821691505b60208210811415612f1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f3457612f34612f4f565b5060010190565b600082612f4a57612f4a612f65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461100857600080fd5b6001600160e01b03198116811461100857600080fdfea264697066735822122070042143f8b075174dba0f3df360c81ebf4561d31299edddfde6e8107ac2dd8b64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d9b9b39a783d906c1794607b91600749ada46123000000000000000000000000000000000000000000000000000000000000000e4750554d696e657241494e6f6465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4750554d494e455241494e4f44450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012697066733a2f2f5258526f526d467962516f0000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102805760003560e01c806370a082311161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461076a578063db00fb201461078a578063e985e9c5146107ac578063f2fde38b146107f5578063fa1f7b0c14610815578063fa7e685b1461083557600080fd5b8063b88d4fde146106b5578063c6682862146106d5578063c87b56dd146106ea578063cca0feb61461070a578063cdc4878b1461072a578063d883c7131461074a57600080fd5b806395d89b411161011357806395d89b411461061457806399c8d55614610629578063a22cb4651461063f578063a75052cb1461065f578063aab1400614610674578063b187bd261461069457600080fd5b806370a082311461058b578063715018a6146105ab57806378238c37146105c0578063872bdcdb146105e05780638da5cb5b146105f657600080fd5b806323b872dd116101f3578063438b6300116101ac578063438b6300146104be5780634f6ccce7146104eb57806355f804b31461050b5780636187b33e1461052b5780636352211e1461054b57806366666aa91461056b57600080fd5b806323b872dd14610416578063240976bf146104365780632f745c591461045657806332624114146104765780633ccfd60b1461049657806342842e0e1461049e57600080fd5b80630a165fdc116102455780630a165fdc1461035d57806318160ddd1461038b57806319188c35146103a05780631b2ef1ca146103b65780631c794b84146103c9578063218444ab146103f657600080fd5b8062d83c211461028c57806301ffc9a7146102ae57806306fdde03146102e3578063081812fc14610305578063095ea7b31461033d57600080fd5b3661028757005b600080fd5b34801561029857600080fd5b506102ac6102a736600461283b565b61084a565b005b3480156102ba57600080fd5b506102ce6102c9366004612aac565b61089f565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f86108ca565b6040516102da9190612d6c565b34801561031157600080fd5b50610325610320366004612b2f565b61095c565b6040516001600160a01b0390911681526020016102da565b34801561034957600080fd5b506102ac610358366004612978565b6109f1565b34801561036957600080fd5b5061037d610378366004612b2f565b610b07565b6040519081526020016102da565b34801561039757600080fd5b5060085461037d565b3480156103ac57600080fd5b5061037d600d5481565b6102ac6103c4366004612b86565b610b1e565b3480156103d557600080fd5b5061037d6103e4366004612b2f565b60166020526000908152604090205481565b34801561040257600080fd5b50600f54610325906001600160a01b031681565b34801561042257600080fd5b506102ac610431366004612889565b610d2f565b34801561044257600080fd5b506102ac610451366004612a72565b610d60565b34801561046257600080fd5b5061037d610471366004612978565b610da8565b34801561048257600080fd5b506102ce6104913660046129a2565b610e3e565b6102ac610f89565b3480156104aa57600080fd5b506102ac6104b9366004612889565b61100b565b3480156104ca57600080fd5b506104de6104d936600461283b565b611026565b6040516102da9190612d28565b3480156104f757600080fd5b5061037d610506366004612b2f565b6110c8565b34801561051757600080fd5b506102ac610526366004612ae6565b61115b565b34801561053757600080fd5b5061037d610546366004612b2f565b61119c565b34801561055757600080fd5b50610325610566366004612b2f565b6111ac565b34801561057757600080fd5b50601054610325906001600160a01b031681565b34801561059757600080fd5b5061037d6105a636600461283b565b611223565b3480156105b757600080fd5b506102ac6112aa565b3480156105cc57600080fd5b506102ac6105db36600461283b565b6112e0565b3480156105ec57600080fd5b5061037d600e5481565b34801561060257600080fd5b50600a546001600160a01b0316610325565b34801561062057600080fd5b506102f861132c565b34801561063557600080fd5b5061037d601c5481565b34801561064b57600080fd5b506102ac61065a366004612941565b61133b565b34801561066b57600080fd5b5061037d611400565b34801561068057600080fd5b506102ac61068f3660046129ec565b611425565b3480156106a057600080fd5b50600f546102ce90600160a01b900460ff1681565b3480156106c157600080fd5b506102ac6106d03660046128c5565b61152b565b3480156106e157600080fd5b506102f8611563565b3480156106f657600080fd5b506102f8610705366004612b2f565b6115f1565b34801561071657600080fd5b506102ac610725366004612b2f565b6116df565b34801561073657600080fd5b5061037d610745366004612b2f565b61170e565b34801561075657600080fd5b506102ac610765366004612b61565b61171e565b34801561077657600080fd5b506102ac610785366004612ae6565b6117ad565b34801561079657600080fd5b5061079f6117ea565b6040516102da9190612cf7565b3480156107b857600080fd5b506102ce6107c7366004612856565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561080157600080fd5b506102ac61081036600461283b565b611825565b34801561082157600080fd5b506102ac6108303660046129ec565b6118bd565b34801561084157600080fd5b506102ac6118f4565b600a546001600160a01b0316331461087d5760405162461bcd60e51b815260040161087490612dd1565b60405180910390fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806108c457506108c482611a3a565b92915050565b6060600080546108d990612ee5565b80601f016020809104026020016040519081016040528092919081815260200182805461090590612ee5565b80156109525780601f1061092757610100808354040283529160200191610952565b820191906000526020600020905b81548152906001019060200180831161093557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109d55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610874565b506000908152600460205260409020546001600160a01b031690565b60006109fc826111ac565b9050806001600160a01b0316836001600160a01b03161415610a6a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610874565b336001600160a01b0382161480610a865750610a8681336107c7565b610af85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610874565b610b028383611a8a565b505050565b60178160058110610b1757600080fd5b0154905081565b600081601d610b2e600186612ea2565b60058110610b3e57610b3e612f91565b0154610b4a9190612e83565b90506000612710601c5483610b5f9190612e83565b610b699190612e6f565b9050610b7d600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610d0157600f546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015610be757600080fd5b505af1158015610bfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1f9190612a8f565b610c5e5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b6044820152606401610874565b600f546010546001600160a01b039182169163a9059cbb9116610c818486612ea2565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610cc757600080fd5b505af1158015610cdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cff9190612a8f565b505b60005b83811015610d2857610d168533611af8565b80610d2081612f20565b915050610d04565b5050505050565b610d393382611c9e565b610d555760405162461bcd60e51b815260040161087490612e06565b610b02838383611d91565b600a546001600160a01b03163314610d8a5760405162461bcd60e51b815260040161087490612dd1565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b6000610db383611223565b8210610e155760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610874565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6040516bffffffffffffffffffffffff1930606090811b8216602084015286901b166034820152600090819060480160408051601f1981840301815282825280516020918201208383018352601c84527f19457468657265756d205369676e6564204d6573736167653a0a333200000000848301529151919350600091610ec9918491869101612bd4565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff8b169284019290925260608301899052608083018890529092509060019060a0016020604051602081039080840390855afa158015610f34573d6000803e3d6000fd5b505050602060405103519050806001600160a01b0316610f5c600a546001600160a01b031690565b6001600160a01b03161415610f78576001945050505050610f81565b60009450505050505b949350505050565b600a546001600160a01b03163314610fb35760405162461bcd60e51b815260040161087490612dd1565b604051600090339047908381818185875af1925050503d8060008114610ff5576040519150601f19603f3d011682016040523d82523d6000602084013e610ffa565b606091505b505090508061100857600080fd5b50565b610b028383836040518060200160405280600081525061152b565b6060600061103383611223565b905060008167ffffffffffffffff81111561105057611050612fa7565b604051908082528060200260200182016040528015611079578160200160208202803683370190505b50905060005b828110156110c0576110918582610da8565b8282815181106110a3576110a3612f91565b6020908102919091010152806110b881612f20565b91505061107f565b509392505050565b60006110d360085490565b82106111365760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610874565b6008828154811061114957611149612f91565b90600052602060002001549050919050565b600a546001600160a01b031633146111855760405162461bcd60e51b815260040161087490612dd1565b805161119890600b9060208401906126c5565b5050565b601d8160058110610b1757600080fd5b6000818152600260205260408120546001600160a01b0316806108c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610874565b60006001600160a01b03821661128e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610874565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112d45760405162461bcd60e51b815260040161087490612dd1565b6112de6000611f3c565b565b600a546001600160a01b0316331461130a5760405162461bcd60e51b815260040161087490612dd1565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546108d990612ee5565b6001600160a01b0382163314156113945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610874565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600e5442101561141f5742600e5461141a9190612ea2565b905090565b50600090565b600a546001600160a01b0316331461144f5760405162461bcd60e51b815260040161087490612dd1565b60005b600581101561151d5781816005811061146d5761146d612f91565b60200201516011826005811061148557611485612f91565b01541061150b5760405162461bcd60e51b815260206004820152604860248201527f43616e6e6f7420757064617465206d617820737570706c79206966207468657260448201527f6520617265206d6f7265206e6f646573207468616e20746865206e6577206d616064820152677820737570706c7960c01b608482015260a401610874565b8061151581612f20565b915050611452565b506111986017826005612749565b6115353383611c9e565b6115515760405162461bcd60e51b815260040161087490612e06565b61155d84848484611f8e565b50505050565b600c805461157090612ee5565b80601f016020809104026020016040519081016040528092919081815260200182805461159c90612ee5565b80156115e95780601f106115be576101008083540402835291602001916115e9565b820191906000526020600020905b8154815290600101906020018083116115cc57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166116705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610874565b600061167a611fc1565b9050600081511161169a57604051806020016040528060008152506116d8565b60008381526016602052604090205481906116b490611fd0565b600c6040516020016116c893929190612bf6565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117095760405162461bcd60e51b815260040161087490612dd1565b601c55565b60118160058110610b1757600080fd5b6010546001600160a01b031633146117865760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c653a2063616c6c6572206973206e6f742074686520726577617260448201526419141bdbdb60da1b6064820152608401610874565b60005b8181101561155d5761179b8484611af8565b806117a581612f20565b915050611789565b600a546001600160a01b031633146117d75760405162461bcd60e51b815260040161087490612dd1565b805161119890600c9060208401906126c5565b6117f2612776565b6040805160a081019182905290601d9060059082845b815481526020019060010190808311611808575050505050905090565b600a546001600160a01b0316331461184f5760405162461bcd60e51b815260040161087490612dd1565b6001600160a01b0381166118b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610874565b61100881611f3c565b600a546001600160a01b031633146118e75760405162461bcd60e51b815260040161087490612dd1565b611198601d826005612749565b600a546001600160a01b0316331461191e5760405162461bcd60e51b815260040161087490612dd1565b600f546001600160a01b031663a9059cbb611941600a546001600160a01b031690565b600f546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561198457600080fd5b505afa158015611998573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119bc9190612b48565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611a0257600080fd5b505af1158015611a16573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110089190612a8f565b60006001600160e01b031982166380ac58cd60e01b1480611a6b57506001600160e01b03198216635b5e139f60e01b145b806108c457506301ffc9a760e01b6001600160e01b03198316146108c4565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611abf826111ac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600e54421015611b4a5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206e6f7720616c6c6f776564207965740000000000000000006044820152606401610874565b600082118015611b5b575060058211155b611b9b5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964206e6f6465207479706560781b6044820152606401610874565b6017611ba8600184612ea2565b60058110611bb857611bb8612f91565b01546011611bc7600185612ea2565b60058110611bd757611bd7612f91565b01541115611c1c5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610874565b60016011611c2a8285612ea2565b60058110611c3a57611c3a612f91565b016000828254611c4a9190612e57565b90915550506008548260166000611c62846001612e57565b8152602081019190915260400160002055600f54600160a01b900460ff1615611c8a57600080fd5b610b0282611c99836001612e57565b6120ce565b6000818152600260205260408120546001600160a01b0316611d175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610874565b6000611d22836111ac565b9050806001600160a01b0316846001600160a01b03161480611d5d5750836001600160a01b0316611d528461095c565b6001600160a01b0316145b80610f8157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f81565b826001600160a01b0316611da4826111ac565b6001600160a01b031614611e0c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610874565b6001600160a01b038216611e6e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610874565b611e798383836120e8565b611e84600082611a8a565b6001600160a01b0383166000908152600360205260408120805460019290611ead908490612ea2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611edb908490612e57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f99848484611d91565b611fa5848484846121f2565b61155d5760405162461bcd60e51b815260040161087490612d7f565b6060600b80546108d990612ee5565b606081611ff45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561201e578061200881612f20565b91506120179050600a83612e6f565b9150611ff8565b60008167ffffffffffffffff81111561203957612039612fa7565b6040519080825280601f01601f191660200182016040528015612063576020820181803683370190505b5090505b8415610f8157612078600183612ea2565b9150612085600a86612f3b565b612090906030612e57565b60f81b8183815181106120a5576120a5612f91565b60200101906001600160f81b031916908160001a9053506120c7600a86612e6f565b9450612067565b6111988282604051806020016040528060008152506122fc565b6120f383838361232f565b6001600160a01b0383166121a05760105460008281526016602052604090819020549051638b9b466760e01b81526004810184905260248101919091526001600160a01b03848116604483015290911690638b9b4667906064015b602060405180830381600087803b15801561216857600080fd5b505af115801561217c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155d9190612a8f565b816001600160a01b0316836001600160a01b031614610b0257601054604051634bba4a8360e11b8152600481018390526001600160a01b0384811660248301529091169063977495069060440161214e565b60006001600160a01b0384163b156122f457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612236903390899088908890600401612cba565b602060405180830381600087803b15801561225057600080fd5b505af1925050508015612280575060408051601f3d908101601f1916820190925261227d91810190612ac9565b60015b6122da573d8080156122ae576040519150601f19603f3d011682016040523d82523d6000602084013e6122b3565b606091505b5080516122d25760405162461bcd60e51b815260040161087490612d7f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f81565b506001610f81565b61230683836123e7565b61231360008484846121f2565b610b025760405162461bcd60e51b815260040161087490612d7f565b6001600160a01b03831661238a5761238581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123ad565b816001600160a01b0316836001600160a01b0316146123ad576123ad8382612535565b6001600160a01b0382166123c457610b02816125d2565b826001600160a01b0316826001600160a01b031614610b0257610b028282612681565b6001600160a01b03821661243d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610874565b6000818152600260205260409020546001600160a01b0316156124a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610874565b6124ae600083836120e8565b6001600160a01b03821660009081526003602052604081208054600192906124d7908490612e57565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161254284611223565b61254c9190612ea2565b60008381526007602052604090205490915080821461259f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906125e490600190612ea2565b6000838152600960205260408120546008805493945090928490811061260c5761260c612f91565b90600052602060002001549050806008838154811061262d5761262d612f91565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061266557612665612f7b565b6001900381819060005260206000200160009055905550505050565b600061268c83611223565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546126d190612ee5565b90600052602060002090601f0160209004810192826126f35760008555612739565b82601f1061270c57805160ff1916838001178555612739565b82800160010185558215612739579182015b8281111561273957825182559160200191906001019061271e565b50612745929150612794565b5090565b8260058101928215612739579160200282018281111561273957825182559160200191906001019061271e565b6040518060a001604052806005906020820280368337509192915050565b5b808211156127455760008155600101612795565b600067ffffffffffffffff808411156127c4576127c4612fa7565b604051601f8501601f19908116603f011681019082821181831017156127ec576127ec612fa7565b8160405280935085815286868601111561280557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461283657600080fd5b919050565b60006020828403121561284d57600080fd5b6116d88261281f565b6000806040838503121561286957600080fd5b6128728361281f565b91506128806020840161281f565b90509250929050565b60008060006060848603121561289e57600080fd5b6128a78461281f565b92506128b56020850161281f565b9150604084013590509250925092565b600080600080608085870312156128db57600080fd5b6128e48561281f565b93506128f26020860161281f565b925060408501359150606085013567ffffffffffffffff81111561291557600080fd5b8501601f8101871361292657600080fd5b612935878235602084016127a9565b91505092959194509250565b6000806040838503121561295457600080fd5b61295d8361281f565b9150602083013561296d81612fbd565b809150509250929050565b6000806040838503121561298b57600080fd5b6129948361281f565b946020939093013593505050565b600080600080608085870312156129b857600080fd5b6129c18561281f565b9350602085013560ff811681146129d757600080fd5b93969395505050506040820135916060013590565b600060a082840312156129fe57600080fd5b82601f830112612a0d57600080fd5b60405160a0810181811067ffffffffffffffff82111715612a3057612a30612fa7565b604052808360a08101861015612a4557600080fd5b60005b6005811015612a67578135835260209283019290910190600101612a48565b509195945050505050565b600060208284031215612a8457600080fd5b81356116d881612fbd565b600060208284031215612aa157600080fd5b81516116d881612fbd565b600060208284031215612abe57600080fd5b81356116d881612fcb565b600060208284031215612adb57600080fd5b81516116d881612fcb565b600060208284031215612af857600080fd5b813567ffffffffffffffff811115612b0f57600080fd5b8201601f81018413612b2057600080fd5b610f81848235602084016127a9565b600060208284031215612b4157600080fd5b5035919050565b600060208284031215612b5a57600080fd5b5051919050565b600080600060608486031215612b7657600080fd5b833592506128b56020850161281f565b60008060408385031215612b9957600080fd5b50508035926020909101359150565b60008151808452612bc0816020860160208601612eb9565b601f01601f19169290920160200192915050565b60008351612be6818460208801612eb9565b9190910191825250602001919050565b600084516020612c098285838a01612eb9565b855191840191612c1c8184848a01612eb9565b8554920191600090600181811c9080831680612c3957607f831692505b858310811415612c5757634e487b7160e01b85526022600452602485fd5b808015612c6b5760018114612c7c57612ca9565b60ff19851688528388019550612ca9565b60008b81526020902060005b85811015612ca15781548a820152908401908801612c88565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ced90830184612ba8565b9695505050505050565b60a08101818360005b6005811015612d1f578151835260209283019290910190600101612d00565b50505092915050565b6020808252825182820181905260009190848201906040850190845b81811015612d6057835183529284019291840191600101612d44565b50909695505050505050565b6020815260006116d86020830184612ba8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612e6a57612e6a612f4f565b500190565b600082612e7e57612e7e612f65565b500490565b6000816000190483118215151615612e9d57612e9d612f4f565b500290565b600082821015612eb457612eb4612f4f565b500390565b60005b83811015612ed4578181015183820152602001612ebc565b8381111561155d5750506000910152565b600181811c90821680612ef957607f821691505b60208210811415612f1a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f3457612f34612f4f565b5060010190565b600082612f4a57612f4a612f65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461100857600080fd5b6001600160e01b03198116811461100857600080fdfea264697066735822122070042143f8b075174dba0f3df360c81ebf4561d31299edddfde6e8107ac2dd8b64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d9b9b39a783d906c1794607b91600749ada46123000000000000000000000000000000000000000000000000000000000000000e4750554d696e657241494e6f6465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4750554d494e455241494e4f44450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012697066733a2f2f5258526f526d467962516f0000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): GPUMinerAINode
Arg [1] : _symbol (string): GPUMINERAINODE
Arg [2] : _initBaseURI (string): ipfs://RXRoRmFybQo
Arg [3] : _revealTime (uint256): 0
Arg [4] : _Test2Address (address): 0xd9B9b39A783d906C1794607B91600749ADA46123
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000d9b9b39a783d906c1794607b91600749ada46123
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 4750554d696e657241494e6f6465000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [8] : 4750554d494e455241494e4f4445000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [10] : 697066733a2f2f5258526f526d467962516f0000000000000000000000000000
Deployed Bytecode Sourcemap
49354:5994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51533:108;;;;;;;;;;-1:-1:-1;51533:108:0;;;;;:::i;:::-;;:::i;:::-;;36335:300;;;;;;;;;;-1:-1:-1;36335:300:0;;;;;:::i;:::-;;:::i;:::-;;;11942:14:1;;11935:22;11917:41;;11905:2;11890:18;36335:300:0;;;;;;;;23499:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25192:308::-;;;;;;;;;;-1:-1:-1;25192:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9444:32:1;;;9426:51;;9414:2;9399:18;25192:308:0;9280:203:1;24715:411:0;;;;;;;;;;-1:-1:-1;24715:411:0;;;;;:::i;:::-;;:::i;49789:61::-;;;;;;;;;;-1:-1:-1;49789:61:0;;;;;:::i;:::-;;:::i;:::-;;;22226:25:1;;;22214:2;22199:18;49789:61:0;22080:177:1;37138:113:0;;;;;;;;;;-1:-1:-1;37226:10:0;:17;37138:113;;49526:27;;;;;;;;;;;;;;;;52390:480;;;;;;:::i;:::-;;:::i;49742:40::-;;;;;;;;;;-1:-1:-1;49742:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;49603:20;;;;;;;;;;-1:-1:-1;49603:20:0;;;;-1:-1:-1;;;;;49603:20:0;;;26251:376;;;;;;;;;;-1:-1:-1;26251:376:0;;;;;:::i;:::-;;:::i;54461:87::-;;;;;;;;;;-1:-1:-1;54461:87:0;;;;;:::i;:::-;;:::i;36719:343::-;;;;;;;;;;-1:-1:-1;36719:343:0;;;;;:::i;:::-;;:::i;48695:613::-;;;;;;;;;;-1:-1:-1;48695:613:0;;;;;:::i;:::-;;:::i;55151:192::-;;;:::i;26698:185::-;;;;;;;;;;-1:-1:-1;26698:185:0;;;;;:::i;:::-;;:::i;52887:390::-;;;;;;;;;;-1:-1:-1;52887:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37328:320::-;;;;;;;;;;-1:-1:-1;37328:320:0;;;;;:::i;:::-;;:::i;54190:104::-;;;;;;;;;;-1:-1:-1;54190:104:0;;;;;:::i;:::-;;:::i;49920:91::-;;;;;;;;;;-1:-1:-1;49920:91:0;;;;;:::i;:::-;;:::i;23106:326::-;;;;;;;;;;-1:-1:-1;23106:326:0;;;;;:::i;:::-;;:::i;49665:25::-;;;;;;;;;;-1:-1:-1;49665:25:0;;;;-1:-1:-1;;;;;49665:25:0;;;22749:295;;;;;;;;;;-1:-1:-1;22749:295:0;;;;;:::i;:::-;;:::i;44413:94::-;;;;;;;;;;;;;:::i;51203:103::-;;;;;;;;;;-1:-1:-1;51203:103:0;;;;;:::i;:::-;;:::i;49560:36::-;;;;;;;;;;;;;;;;43762:87;;;;;;;;;;-1:-1:-1;43835:6:0;;-1:-1:-1;;;;;43835:6:0;43762:87;;23668:104;;;;;;;;;;;;;:::i;49891:22::-;;;;;;;;;;;;;;;;25572:327;;;;;;;;;;-1:-1:-1;25572:327:0;;;;;:::i;:::-;;:::i;53945:235::-;;;;;;;;;;;;;:::i;50744:335::-;;;;;;;;;;-1:-1:-1;50744:335:0;;;;;:::i;:::-;;:::i;49630:28::-;;;;;;;;;;-1:-1:-1;49630:28:0;;;;-1:-1:-1;;;49630:28:0;;;;;;26954:365;;;;;;;;;;-1:-1:-1;26954:365:0;;;;;:::i;:::-;;:::i;49482:37::-;;;;;;;;;;;;;:::i;53285:652::-;;;;;;;;;;-1:-1:-1;53285:652:0;;;;;:::i;:::-;;:::i;51314:78::-;;;;;;;;;;-1:-1:-1;51314:78:0;;;;;:::i;:::-;;:::i;49697:38::-;;;;;;;;;;-1:-1:-1;49697:38:0;;;;;:::i;:::-;;:::i;52197:185::-;;;;;;;;;;-1:-1:-1;52197:185:0;;;;;:::i;:::-;;:::i;54302:151::-;;;;;;;;;;-1:-1:-1;54302:151:0;;;;;:::i;:::-;;:::i;50635:101::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25970:214::-;;;;;;;;;;-1:-1:-1;25970:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26141:25:0;;;26112:4;26141:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25970:214;44662:229;;;;;;;;;;-1:-1:-1;44662:229:0;;;;;:::i;:::-;;:::i;51087:108::-;;;;;;;;;;-1:-1:-1;51087:108:0;;;;;:::i;:::-;;:::i;54998:143::-;;;;;;;;;;;;;:::i;51533:108::-;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;;;;;;;;;51612:5:::1;:21:::0;;-1:-1:-1;;;;;;51612:21:0::1;-1:-1:-1::0;;;;;51612:21:0;;;::::1;::::0;;;::::1;::::0;;51533:108::o;36335:300::-;36482:4;-1:-1:-1;;;;;;36524:50:0;;-1:-1:-1;;;36524:50:0;;:103;;;36591:36;36615:11;36591:23;:36::i;:::-;36504:123;36335:300;-1:-1:-1;;36335:300:0:o;23499:100::-;23553:13;23586:5;23579:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23499:100;:::o;25192:308::-;25313:7;28955:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28955:16:0;25338:110;;;;-1:-1:-1;;;25338:110:0;;18750:2:1;25338:110:0;;;18732:21:1;18789:2;18769:18;;;18762:30;18828:34;18808:18;;;18801:62;-1:-1:-1;;;18879:18:1;;;18872:42;18931:19;;25338:110:0;18548:408:1;25338:110:0;-1:-1:-1;25468:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25468:24:0;;25192:308::o;24715:411::-;24796:13;24812:23;24827:7;24812:14;:23::i;:::-;24796:39;;24860:5;-1:-1:-1;;;;;24854:11:0;:2;-1:-1:-1;;;;;24854:11:0;;;24846:57;;;;-1:-1:-1;;;24846:57:0;;20350:2:1;24846:57:0;;;20332:21:1;20389:2;20369:18;;;20362:30;20428:34;20408:18;;;20401:62;-1:-1:-1;;;20479:18:1;;;20472:31;20520:19;;24846:57:0;20148:397:1;24846:57:0;20884:10;-1:-1:-1;;;;;24938:21:0;;;;:62;;-1:-1:-1;24963:37:0;24980:5;20884:10;25970:214;:::i;24963:37::-;24916:168;;;;-1:-1:-1;;;24916:168:0;;17143:2:1;24916:168:0;;;17125:21:1;17182:2;17162:18;;;17155:30;17221:34;17201:18;;;17194:62;17292:26;17272:18;;;17265:54;17336:19;;24916:168:0;16941:420:1;24916:168:0;25097:21;25106:2;25110:7;25097:8;:21::i;:::-;24785:341;24715:411;;:::o;49789:61::-;;;;;;;;;;;;;;;-1:-1:-1;49789:61:0;:::o;52390:480::-;52460:13;52496:8;52476:10;52487:7;52493:1;52487:5;:7;:::i;:::-;52476:19;;;;;;;:::i;:::-;;;:28;;;;:::i;:::-;52460:44;;52515:12;52542:5;52537:3;;52531:5;:9;;;;:::i;:::-;52530:17;;;;:::i;:::-;52515:32;;52578:7;43835:6;;-1:-1:-1;;;;;43835:6:0;;43762:87;52578:7;-1:-1:-1;;;;;52564:21:0;:10;-1:-1:-1;;;;;52564:21:0;;52560:204;;52617:5;;52610:60;;-1:-1:-1;;;52610:60:0;;52637:10;52610:60;;;9728:34:1;52657:4:0;9778:18:1;;;9771:43;9830:18;;;9823:34;;;-1:-1:-1;;;;;52617:5:0;;;;52610:26;;9663:18:1;;52610:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52602:89;;;;-1:-1:-1;;;52602:89:0;;14874:2:1;52602:89:0;;;14856:21:1;14913:2;14893:18;;;14886:30;-1:-1:-1;;;14932:18:1;;;14925:46;14988:18;;52602:89:0;14672:340:1;52602:89:0;52713:5;;52729:10;;-1:-1:-1;;;;;52713:5:0;;;;52706:22;;52729:10;52741;52747:4;52741:5;:10;:::i;:::-;52706:46;;-1:-1:-1;;;;;;52706:46:0;;;;;;;-1:-1:-1;;;;;10553:32:1;;;52706:46:0;;;10535:51:1;10602:18;;;10595:34;10508:18;;52706:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52560:204;52781:6;52776:87;52797:8;52793:1;:12;52776:87;;;52827:24;52833:5;52840:10;52827:5;:24::i;:::-;52807:3;;;;:::i;:::-;;;;52776:87;;;;52449:421;;52390:480;;:::o;26251:376::-;26460:41;20884:10;26493:7;26460:18;:41::i;:::-;26438:140;;;;-1:-1:-1;;;26438:140:0;;;;;;;:::i;:::-;26591:28;26601:4;26607:2;26611:7;26591:9;:28::i;54461:87::-;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;54523:8:::1;:17:::0;;;::::1;;-1:-1:-1::0;;;54523:17:0::1;-1:-1:-1::0;;;;54523:17:0;;::::1;::::0;;;::::1;::::0;;54461:87::o;36719:343::-;36861:7;36916:23;36933:5;36916:16;:23::i;:::-;36908:5;:31;36886:124;;;;-1:-1:-1;;;36886:124:0;;12798:2:1;36886:124:0;;;12780:21:1;12837:2;12817:18;;;12810:30;12876:34;12856:18;;;12849:62;-1:-1:-1;;;12927:18:1;;;12920:41;12978:19;;36886:124:0;12596:407:1;36886:124:0;-1:-1:-1;;;;;;37028:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36719:343::o;48695:613::-;48907:37;;-1:-1:-1;;48932:4:0;7052:2:1;7048:15;;;7044:24;;48907:37:0;;;7032::1;7103:15;;;7099:24;7085:12;;;7078:46;48855:4:0;;;;7140:12:1;;48907:37:0;;;-1:-1:-1;;48907:37:0;;;;;;;;;48897:48;;48907:37;48897:48;;;;48958:56;;;;;;;;;;;;;49058:33;;48897:48;;-1:-1:-1;48958:19:0;;49058:33;;48907:37;;48897:48;;49058:33;;:::i;:::-;;;;-1:-1:-1;;49058:33:0;;;;;;;;;49048:44;;49058:33;49048:44;;;;49121:18;49142:35;;;;;;;;;12196:25:1;;;12269:4;12257:17;;12237:18;;;12230:45;;;;12291:18;;;12284:34;;;12334:18;;;12327:34;;;49048:44:0;;-1:-1:-1;49121:18:0;49142:35;;12168:19:1;;49142:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49121:56;;49203:10;-1:-1:-1;;;;;49192:21:0;:7;43835:6;;-1:-1:-1;;;;;43835:6:0;;43762:87;49192:7;-1:-1:-1;;;;;49192:21:0;;49188:86;;;49254:4;49247:11;;;;;;;;49188:86;49295:5;49288:12;;;;;;48695:613;;;;;;;:::o;55151:192::-;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;55226:82:::1;::::0;55208:12:::1;::::0;55234:10:::1;::::0;55272:21:::1;::::0;55208:12;55226:82;55208:12;55226:82;55272:21;55234:10;55226:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55207:101;;;55327:7;55319:16;;;::::0;::::1;;55196:147;55151:192::o:0;26698:185::-;26836:39;26853:4;26859:2;26863:7;26836:39;;;;;;;;;;;;:16;:39::i;52887:390::-;52974:16;53008:23;53034:17;53044:6;53034:9;:17::i;:::-;53008:43;;53062:25;53104:15;53090:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53090:30:0;;53062:58;;53136:9;53131:113;53151:15;53147:1;:19;53131:113;;;53202:30;53222:6;53230:1;53202:19;:30::i;:::-;53188:8;53197:1;53188:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53168:3;;;;:::i;:::-;;;;53131:113;;;-1:-1:-1;53261:8:0;52887:390;-1:-1:-1;;;52887:390:0:o;37328:320::-;37448:7;37503:30;37226:10;:17;;37138:113;37503:30;37495:5;:38;37473:132;;;;-1:-1:-1;;;37473:132:0;;21869:2:1;37473:132:0;;;21851:21:1;21908:2;21888:18;;;21881:30;21947:34;21927:18;;;21920:62;-1:-1:-1;;;21998:18:1;;;21991:42;22050:19;;37473:132:0;21667:408:1;37473:132:0;37623:10;37634:5;37623:17;;;;;;;;:::i;:::-;;;;;;;;;37616:24;;37328:320;;;:::o;54190:104::-;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;54265:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54190:104:::0;:::o;49920:91::-;;;;;;;;;;;23106:326;23223:7;23264:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23264:16:0;23313:19;23291:110;;;;-1:-1:-1;;;23291:110:0;;17979:2:1;23291:110:0;;;17961:21:1;18018:2;17998:18;;;17991:30;18057:34;18037:18;;;18030:62;-1:-1:-1;;;18108:18:1;;;18101:39;18157:19;;23291:110:0;17777:405:1;22749:295:0;22866:7;-1:-1:-1;;;;;22913:19:0;;22891:111;;;;-1:-1:-1;;;22891:111:0;;17568:2:1;22891:111:0;;;17550:21:1;17607:2;17587:18;;;17580:30;17646:34;17626:18;;;17619:62;-1:-1:-1;;;17697:18:1;;;17690:40;17747:19;;22891:111:0;17366:406:1;22891:111:0;-1:-1:-1;;;;;;23020:16:0;;;;;:9;:16;;;;;;;22749:295::o;44413:94::-;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;44478:21:::1;44496:1;44478:9;:21::i;:::-;44413:94::o:0;51203:103::-;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;51274:10:::1;:24:::0;;-1:-1:-1;;;;;;51274:24:0::1;-1:-1:-1::0;;;;;51274:24:0;;;::::1;::::0;;;::::1;::::0;;51203:103::o;23668:104::-;23724:13;23757:7;23750:14;;;;;:::i;25572:327::-;-1:-1:-1;;;;;25707:24:0;;20884:10;25707:24;;25699:62;;;;-1:-1:-1;;;25699:62:0;;16376:2:1;25699:62:0;;;16358:21:1;16415:2;16395:18;;;16388:30;16454:27;16434:18;;;16427:55;16499:18;;25699:62:0;16174:349:1;25699:62:0;20884:10;25774:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25774:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25774:53:0;;;;;;;;;;25843:48;;11917:41:1;;;25774:42:0;;20884:10;25843:48;;11890:18:1;25843:48:0;;;;;;;25572:327;;:::o;53945:235::-;54000:7;54042:17;;54024:15;:35;54020:153;;;54105:15;54084:17;;54083:37;;;;:::i;:::-;54076:44;;53945:235;:::o;54020:153::-;-1:-1:-1;54160:1:0;;53945:235::o;50744:335::-;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;50849:6:::1;50844:178;50865:1;50861;:5;50844:178;;;50910:20;50931:1;50910:23;;;;;;;:::i;:::-;;;;;50896:9;50906:1;50896:12;;;;;;;:::i;:::-;;;:37;50888:122;;;::::0;-1:-1:-1;;;50888:122:0;;14393:2:1;50888:122:0::1;::::0;::::1;14375:21:1::0;14432:2;14412:18;;;14405:30;14471:34;14451:18;;;14444:62;14542:34;14522:18;;;14515:62;-1:-1:-1;;;14593:19:1;;;14586:39;14642:19;;50888:122:0::1;14191:476:1::0;50888:122:0::1;50868:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50844:178;;;-1:-1:-1::0;51032:39:0::1;:16;51051:20:::0;51032:39:::1;;:::i;26954:365::-:0;27143:41;20884:10;27176:7;27143:18;:41::i;:::-;27121:140;;;;-1:-1:-1;;;27121:140:0;;;;;;;:::i;:::-;27272:39;27286:4;27292:2;27296:7;27305:5;27272:13;:39::i;:::-;26954:365;;;;:::o;49482:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53285:652::-;28931:4;28955:16;;;:7;:16;;;;;;53403:13;;-1:-1:-1;;;;;28955:16:0;53434:113;;;;-1:-1:-1;;;53434:113:0;;19934:2:1;53434:113:0;;;19916:21:1;19973:2;19953:18;;;19946:30;20012:34;19992:18;;;19985:62;-1:-1:-1;;;20063:18:1;;;20056:45;20118:19;;53434:113:0;19732:411:1;53434:113:0;53560:28;53591:10;:8;:10::i;:::-;53560:41;;53663:1;53638:14;53632:28;:32;:297;;;;;;;;;;;;;;;;;53797:17;;;;:8;:17;;;;;;53756:14;;53797:28;;:26;:28::i;:::-;53852:13;53713:175;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53632:297;53612:317;53285:652;-1:-1:-1;;;53285:652:0:o;51314:78::-;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;51374:3:::1;:10:::0;51314:78::o;49697:38::-;;;;;;;;;;;52197:185;50495:10;;-1:-1:-1;;;;;50495:10:0;50509;50495:24;50487:74;;;;-1:-1:-1;;;50487:74:0;;15565:2:1;50487:74:0;;;15547:21:1;15604:2;15584:18;;;15577:30;15643:34;15623:18;;;15616:62;-1:-1:-1;;;15694:18:1;;;15687:35;15739:19;;50487:74:0;15363:401:1;50487:74:0;52301:6:::1;52296:79;52317:8;52313:1;:12;52296:79;;;52347:16;52353:5;52360:2;52347:5;:16::i;:::-;52327:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52296:79;;54302:151:::0;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;54412:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50635:101::-:0;50681:17;;:::i;:::-;50711;;;;;;;;;;;50718:10;;50711:17;;50718:10;50711:17;;;;;;;;;;;;;;;;;;;;;;;;50635:101;:::o;44662:229::-;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44765:22:0;::::1;44743:110;;;::::0;-1:-1:-1;;;44743:110:0;;13629:2:1;44743:110:0::1;::::0;::::1;13611:21:1::0;13668:2;13648:18;;;13641:30;13707:34;13687:18;;;13680:62;-1:-1:-1;;;13758:18:1;;;13751:36;13804:19;;44743:110:0::1;13427:402:1::0;44743:110:0::1;44864:19;44874:8;44864:9;:19::i;51087:108::-:0;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;51167:20:::1;:10;51180:7:::0;51167:20:::1;;:::i;54998:143::-:0;43835:6;;-1:-1:-1;;;;;43835:6:0;20884:10;43982:23;43974:68;;;;-1:-1:-1;;;43974:68:0;;;;;;;:::i;:::-;55069:5:::1;::::0;-1:-1:-1;;;;;55069:5:0::1;55062:22;55085:7;43835:6:::0;;-1:-1:-1;;;;;43835:6:0;;43762:87;55085:7:::1;55101:5;::::0;55094:38:::1;::::0;-1:-1:-1;;;55094:38:0;;55126:4:::1;55094:38;::::0;::::1;9426:51:1::0;-1:-1:-1;;;;;55101:5:0;;::::1;::::0;55094:23:::1;::::0;9399:18:1;;55094:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55062:71;::::0;-1:-1:-1;;;;;;55062:71:0::1;::::0;;;;;;-1:-1:-1;;;;;10553:32:1;;;55062:71:0::1;::::0;::::1;10535:51:1::0;10602:18;;;10595:34;10508:18;;55062:71:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;22330:355::-:0;22477:4;-1:-1:-1;;;;;;22519:40:0;;-1:-1:-1;;;22519:40:0;;:105;;-1:-1:-1;;;;;;;22576:48:0;;-1:-1:-1;;;22576:48:0;22519:105;:158;;;-1:-1:-1;;;;;;;;;;7786:40:0;;;22641:36;7627:207;32989:174;33064:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33064:29:0;-1:-1:-1;;;;;33064:29:0;;;;;;;;:24;;33118:23;33064:24;33118:14;:23::i;:::-;-1:-1:-1;;;;;33109:46:0;;;;;;;;;;;32989:174;;:::o;51649:538::-;51748:17;;51729:15;:36;;51707:109;;;;-1:-1:-1;;;51707:109:0;;20752:2:1;51707:109:0;;;20734:21:1;20791:2;20771:18;;;20764:30;20830:25;20810:18;;;20803:53;20873:18;;51707:109:0;20550:347:1;51707:109:0;51841:1;51835:5;:7;:19;;;;;51853:1;51846:5;:8;;51835:19;51827:49;;;;-1:-1:-1;;;51827:49:0;;15219:2:1;51827:49:0;;;15201:21:1;15258:2;15238:18;;;15231:30;-1:-1:-1;;;15277:18:1;;;15270:47;15334:18;;51827:49:0;15017:341:1;51827:49:0;51931:16;51948:7;51954:1;51948:5;:7;:::i;:::-;51931:25;;;;;;;:::i;:::-;;;51909:9;51919:7;51925:1;51919:5;:7;:::i;:::-;51909:18;;;;;;;:::i;:::-;;;:47;;51887:115;;;;-1:-1:-1;;;51887:115:0;;21522:2:1;51887:115:0;;;21504:21:1;21561:2;21541:18;;;21534:30;-1:-1:-1;;;21580:18:1;;;21573:48;21638:18;;51887:115:0;21320:342:1;51887:115:0;52035:1;52013:9;52023:7;52035:1;52023:5;:7;:::i;:::-;52013:18;;;;;;;:::i;:::-;;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;37226:10:0;:17;52109:5;52088:8;:18;52097:8;52047:30;52104:1;52097:8;:::i;:::-;52088:18;;;;;;;;;;;-1:-1:-1;52088:18:0;:26;52134:8;;-1:-1:-1;;;52134:8:0;;;;52133:9;52125:18;;;;;;52154:25;52164:2;52168:10;:6;52177:1;52168:10;:::i;:::-;52154:9;:25::i;29160:452::-;29289:4;28955:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28955:16:0;29311:110;;;;-1:-1:-1;;;29311:110:0;;16730:2:1;29311:110:0;;;16712:21:1;16769:2;16749:18;;;16742:30;16808:34;16788:18;;;16781:62;-1:-1:-1;;;16859:18:1;;;16852:42;16911:19;;29311:110:0;16528:408:1;29311:110:0;29432:13;29448:23;29463:7;29448:14;:23::i;:::-;29432:39;;29501:5;-1:-1:-1;;;;;29490:16:0;:7;-1:-1:-1;;;;;29490:16:0;;:64;;;;29547:7;-1:-1:-1;;;;;29523:31:0;:20;29535:7;29523:11;:20::i;:::-;-1:-1:-1;;;;;29523:31:0;;29490:64;:113;;;-1:-1:-1;;;;;;26141:25:0;;;26112:4;26141:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29571:32;25970:214;32256:615;32429:4;-1:-1:-1;;;;;32402:31:0;:23;32417:7;32402:14;:23::i;:::-;-1:-1:-1;;;;;32402:31:0;;32380:122;;;;-1:-1:-1;;;32380:122:0;;19524:2:1;32380:122:0;;;19506:21:1;19563:2;19543:18;;;19536:30;19602:34;19582:18;;;19575:62;-1:-1:-1;;;19653:18:1;;;19646:39;19702:19;;32380:122:0;19322:405:1;32380:122:0;-1:-1:-1;;;;;32521:16:0;;32513:65;;;;-1:-1:-1;;;32513:65:0;;15971:2:1;32513:65:0;;;15953:21:1;16010:2;15990:18;;;15983:30;16049:34;16029:18;;;16022:62;-1:-1:-1;;;16100:18:1;;;16093:34;16144:19;;32513:65:0;15769:400:1;32513:65:0;32591:39;32612:4;32618:2;32622:7;32591:20;:39::i;:::-;32695:29;32712:1;32716:7;32695:8;:29::i;:::-;-1:-1:-1;;;;;32737:15:0;;;;;;:9;:15;;;;;:20;;32756:1;;32737:15;:20;;32756:1;;32737:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32768:13:0;;;;;;:9;:13;;;;;:18;;32785:1;;32768:13;:18;;32785:1;;32768:18;:::i;:::-;;;;-1:-1:-1;;32797:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32797:21:0;-1:-1:-1;;;;;32797:21:0;;;;;;;;;32836:27;;32797:16;;32836:27;;;;;;;32256:615;;;:::o;44899:173::-;44974:6;;;-1:-1:-1;;;;;44991:17:0;;;-1:-1:-1;;;;;;44991:17:0;;;;;;;45024:40;;44974:6;;;44991:17;44974:6;;45024:40;;44955:16;;45024:40;44944:128;44899:173;:::o;28201:352::-;28358:28;28368:4;28374:2;28378:7;28358:9;:28::i;:::-;28419:48;28442:4;28448:2;28452:7;28461:5;28419:22;:48::i;:::-;28397:148;;;;-1:-1:-1;;;28397:148:0;;;;;;;:::i;51417:108::-;51477:13;51510:7;51503:14;;;;;:::i;8148:723::-;8204:13;8425:10;8421:53;;-1:-1:-1;;8452:10:0;;;;;;;;;;;;-1:-1:-1;;;8452:10:0;;;;;8148:723::o;8421:53::-;8499:5;8484:12;8540:78;8547:9;;8540:78;;8573:8;;;;:::i;:::-;;-1:-1:-1;8596:10:0;;-1:-1:-1;8604:2:0;8596:10;;:::i;:::-;;;8540:78;;;8628:19;8660:6;8650:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8650:17:0;;8628:39;;8678:154;8685:10;;8678:154;;8712:11;8722:1;8712:11;;:::i;:::-;;-1:-1:-1;8781:10:0;8789:2;8781:5;:10;:::i;:::-;8768:24;;:2;:24;:::i;:::-;8755:39;;8738:6;8745;8738:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8738:56:0;;;;;;;;-1:-1:-1;8809:11:0;8818:2;8809:11;;:::i;:::-;;;8678:154;;29954:110;30030:26;30040:2;30044:7;30030:26;;;;;;;;;;;;:9;:26::i;54556:434::-;54700:45;54727:4;54733:2;54737:7;54700:26;:45::i;:::-;-1:-1:-1;;;;;54760:18:0;;54756:227;;54807:10;;;54840:17;;;:8;:17;;;;;;;;54795:67;;-1:-1:-1;;;54795:67:0;;;;;22743:25:1;;;22784:18;;;22777:34;;;;-1:-1:-1;;;;;22847:32:1;;;22827:18;;;22820:60;54807:10:0;;;;54795:35;;22716:18:1;;54795:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;54756:227::-;54900:2;-1:-1:-1;;;;;54892:10:0;:4;-1:-1:-1;;;;;54892:10:0;;54888:95;;54931:10;;54919:52;;-1:-1:-1;;;54919:52:0;;;;;22436:25:1;;;-1:-1:-1;;;;;22497:32:1;;;22477:18;;;22470:60;54931:10:0;;;;54919:39;;22409:18:1;;54919:52:0;22262:274:1;33728:980:0;33883:4;-1:-1:-1;;;;;33904:13:0;;11024:20;11072:8;33900:801;;33957:175;;-1:-1:-1;;;33957:175:0;;-1:-1:-1;;;;;33957:36:0;;;;;:175;;20884:10;;34051:4;;34078:7;;34108:5;;33957:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33957:175:0;;;;;;;;-1:-1:-1;;33957:175:0;;;;;;;;;;;;:::i;:::-;;;33936:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34315:13:0;;34311:320;;34358:108;;-1:-1:-1;;;34358:108:0;;;;;;;:::i;34311:320::-;34581:6;34575:13;34566:6;34562:2;34558:15;34551:38;33936:710;-1:-1:-1;;;;;;34196:51:0;-1:-1:-1;;;34196:51:0;;-1:-1:-1;34189:58:0;;33900:801;-1:-1:-1;34685:4:0;34678:11;;30291:321;30421:18;30427:2;30431:7;30421:5;:18::i;:::-;30472:54;30503:1;30507:2;30511:7;30520:5;30472:22;:54::i;:::-;30450:154;;;;-1:-1:-1;;;30450:154:0;;;;;;;:::i;38261:589::-;-1:-1:-1;;;;;38467:18:0;;38463:187;;38502:40;38534:7;39677:10;:17;;39650:24;;;;:15;:24;;;;;:44;;;39705:24;;;;;;;;;;;;39573:164;38502:40;38463:187;;;38572:2;-1:-1:-1;;;;;38564:10:0;:4;-1:-1:-1;;;;;38564:10:0;;38560:90;;38591:47;38624:4;38630:7;38591:32;:47::i;:::-;-1:-1:-1;;;;;38664:16:0;;38660:183;;38697:45;38734:7;38697:36;:45::i;38660:183::-;38770:4;-1:-1:-1;;;;;38764:10:0;:2;-1:-1:-1;;;;;38764:10:0;;38760:83;;38791:40;38819:2;38823:7;38791:27;:40::i;30948:382::-;-1:-1:-1;;;;;31028:16:0;;31020:61;;;;-1:-1:-1;;;31020:61:0;;18389:2:1;31020:61:0;;;18371:21:1;;;18408:18;;;18401:30;18467:34;18447:18;;;18440:62;18519:18;;31020:61:0;18187:356:1;31020:61:0;28931:4;28955:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28955:16:0;:30;31092:58;;;;-1:-1:-1;;;31092:58:0;;14036:2:1;31092:58:0;;;14018:21:1;14075:2;14055:18;;;14048:30;14114;14094:18;;;14087:58;14162:18;;31092:58:0;13834:352:1;31092:58:0;31163:45;31192:1;31196:2;31200:7;31163:20;:45::i;:::-;-1:-1:-1;;;;;31221:13:0;;;;;;:9;:13;;;;;:18;;31238:1;;31221:13;:18;;31238:1;;31221:18;:::i;:::-;;;;-1:-1:-1;;31250:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31250:21:0;-1:-1:-1;;;;;31250:21:0;;;;;;;;31289:33;;31250:16;;;31289:33;;31250:16;;31289:33;30948:382;;:::o;40364:1002::-;40644:22;40694:1;40669:22;40686:4;40669:16;:22::i;:::-;:26;;;;:::i;:::-;40706:18;40727:26;;;:17;:26;;;;;;40644:51;;-1:-1:-1;40860:28:0;;;40856:328;;-1:-1:-1;;;;;40927:18:0;;40905:19;40927:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40978:30;;;;;;:44;;;41095:30;;:17;:30;;;;;:43;;;40856:328;-1:-1:-1;41280:26:0;;;;:17;:26;;;;;;;;41273:33;;;-1:-1:-1;;;;;41324:18:0;;;;;:12;:18;;;;;:34;;;;;;;41317:41;40364:1002::o;41661:1079::-;41939:10;:17;41914:22;;41939:21;;41959:1;;41939:21;:::i;:::-;41971:18;41992:24;;;:15;:24;;;;;;42365:10;:26;;41914:46;;-1:-1:-1;41992:24:0;;41914:46;;42365:26;;;;;;:::i;:::-;;;;;;;;;42343:48;;42429:11;42404:10;42415;42404:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42509:28;;;:15;:28;;;;;;;:41;;;42681:24;;;;;42674:31;42716:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41732:1008;;;41661:1079;:::o;39151:221::-;39236:14;39253:20;39270:2;39253:16;:20::i;:::-;-1:-1:-1;;;;;39284:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39329:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39151:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:315::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2545:28;2567:5;2545:28;:::i;:::-;2592:5;2582:15;;;2288:315;;;;;:::o;2608:254::-;2676:6;2684;2737:2;2725:9;2716:7;2712:23;2708:32;2705:52;;;2753:1;2750;2743:12;2705:52;2776:29;2795:9;2776:29;:::i;:::-;2766:39;2852:2;2837:18;;;;2824:32;;-1:-1:-1;;;2608:254:1:o;2867:480::-;2951:6;2959;2967;2975;3028:3;3016:9;3007:7;3003:23;2999:33;2996:53;;;3045:1;3042;3035:12;2996:53;3068:29;3087:9;3068:29;:::i;:::-;3058:39;;3147:2;3136:9;3132:18;3119:32;3191:4;3184:5;3180:16;3173:5;3170:27;3160:55;;3211:1;3208;3201:12;3160:55;2867:480;;3234:5;;-1:-1:-1;;;;3286:2:1;3271:18;;3258:32;;3337:2;3322:18;3309:32;;2867:480::o;3352:797::-;3434:6;3487:3;3475:9;3466:7;3462:23;3458:33;3455:53;;;3504:1;3501;3494:12;3455:53;3553:7;3546:4;3535:9;3531:20;3527:34;3517:62;;3575:1;3572;3565:12;3517:62;3608:2;3602:9;3650:3;3642:6;3638:16;3720:6;3708:10;3705:22;3684:18;3672:10;3669:34;3666:62;3663:88;;;3731:18;;:::i;:::-;3767:2;3760:22;3802:6;3828:9;3867:3;3852:19;;3849:32;-1:-1:-1;3846:52:1;;;3894:1;3891;3884:12;3846:52;3916:1;3926:192;3940:4;3937:1;3934:11;3926:192;;;3999:17;;3987:30;;4040:4;4064:12;;;;4096;;;;3960:1;3953:9;3926:192;;;-1:-1:-1;4137:6:1;;3352:797;-1:-1:-1;;;;;3352:797:1:o;4154:241::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4318:9;4305:23;4337:28;4359:5;4337:28;:::i;4400:245::-;4467:6;4520:2;4508:9;4499:7;4495:23;4491:32;4488:52;;;4536:1;4533;4526:12;4488:52;4568:9;4562:16;4587:28;4609:5;4587:28;:::i;4650:245::-;4708:6;4761:2;4749:9;4740:7;4736:23;4732:32;4729:52;;;4777:1;4774;4767:12;4729:52;4816:9;4803:23;4835:30;4859:5;4835:30;:::i;4900:249::-;4969:6;5022:2;5010:9;5001:7;4997:23;4993:32;4990:52;;;5038:1;5035;5028:12;4990:52;5070:9;5064:16;5089:30;5113:5;5089:30;:::i;5154:450::-;5223:6;5276:2;5264:9;5255:7;5251:23;5247:32;5244:52;;;5292:1;5289;5282:12;5244:52;5332:9;5319:23;5365:18;5357:6;5354:30;5351:50;;;5397:1;5394;5387:12;5351:50;5420:22;;5473:4;5465:13;;5461:27;-1:-1:-1;5451:55:1;;5502:1;5499;5492:12;5451:55;5525:73;5590:7;5585:2;5572:16;5567:2;5563;5559:11;5525:73;:::i;5609:180::-;5668:6;5721:2;5709:9;5700:7;5696:23;5692:32;5689:52;;;5737:1;5734;5727:12;5689:52;-1:-1:-1;5760:23:1;;5609:180;-1:-1:-1;5609:180:1:o;5794:184::-;5864:6;5917:2;5905:9;5896:7;5892:23;5888:32;5885:52;;;5933:1;5930;5923:12;5885:52;-1:-1:-1;5956:16:1;;5794:184;-1:-1:-1;5794:184:1:o;5983:322::-;6060:6;6068;6076;6129:2;6117:9;6108:7;6104:23;6100:32;6097:52;;;6145:1;6142;6135:12;6097:52;6181:9;6168:23;6158:33;;6210:38;6244:2;6233:9;6229:18;6210:38;:::i;6310:248::-;6378:6;6386;6439:2;6427:9;6418:7;6414:23;6410:32;6407:52;;;6455:1;6452;6445:12;6407:52;-1:-1:-1;;6478:23:1;;;6548:2;6533:18;;;6520:32;;-1:-1:-1;6310:248:1:o;6563:257::-;6604:3;6642:5;6636:12;6669:6;6664:3;6657:19;6685:63;6741:6;6734:4;6729:3;6725:14;6718:4;6711:5;6707:16;6685:63;:::i;:::-;6802:2;6781:15;-1:-1:-1;;6777:29:1;6768:39;;;;6809:4;6764:50;;6563:257;-1:-1:-1;;6563:257:1:o;7163:370::-;7320:3;7358:6;7352:13;7374:53;7420:6;7415:3;7408:4;7400:6;7396:17;7374:53;:::i;:::-;7449:16;;;;7474:21;;;-1:-1:-1;7522:4:1;7511:16;;7163:370;-1:-1:-1;7163:370:1:o;7538:1527::-;7762:3;7800:6;7794:13;7826:4;7839:51;7883:6;7878:3;7873:2;7865:6;7861:15;7839:51;:::i;:::-;7953:13;;7912:16;;;;7975:55;7953:13;7912:16;7997:15;;;7975:55;:::i;:::-;8119:13;;8052:20;;;8092:1;;8179;8201:18;;;;8254;;;;8281:93;;8359:4;8349:8;8345:19;8333:31;;8281:93;8422:2;8412:8;8409:16;8389:18;8386:40;8383:167;;;-1:-1:-1;;;8449:33:1;;8505:4;8502:1;8495:15;8535:4;8456:3;8523:17;8383:167;8566:18;8593:110;;;;8717:1;8712:328;;;;8559:481;;8593:110;-1:-1:-1;;8628:24:1;;8614:39;;8673:20;;;;-1:-1:-1;8593:110:1;;8712:328;22964:1;22957:14;;;23001:4;22988:18;;8807:1;8821:169;8835:8;8832:1;8829:15;8821:169;;;8917:14;;8902:13;;;8895:37;8960:16;;;;8852:10;;8821:169;;;8825:3;;9021:8;9014:5;9010:20;9003:27;;8559:481;-1:-1:-1;9056:3:1;;7538:1527;-1:-1:-1;;;;;;;;;;;7538:1527:1:o;9868:488::-;-1:-1:-1;;;;;10137:15:1;;;10119:34;;10189:15;;10184:2;10169:18;;10162:43;10236:2;10221:18;;10214:34;;;10284:3;10279:2;10264:18;;10257:31;;;10062:4;;10305:45;;10330:19;;10322:6;10305:45;:::i;:::-;10297:53;9868:488;-1:-1:-1;;;;;;9868:488:1:o;10640:495::-;10820:3;10805:19;;10809:9;10901:6;10778:4;10935:194;10949:4;10946:1;10943:11;10935:194;;;11008:13;;10996:26;;11045:4;11069:12;;;;11104:15;;;;10969:1;10962:9;10935:194;;;10939:3;;;10640:495;;;;:::o;11140:632::-;11311:2;11363:21;;;11433:13;;11336:18;;;11455:22;;;11282:4;;11311:2;11534:15;;;;11508:2;11493:18;;;11282:4;11577:169;11591:6;11588:1;11585:13;11577:169;;;11652:13;;11640:26;;11721:15;;;;11686:12;;;;11613:1;11606:9;11577:169;;;-1:-1:-1;11763:3:1;;11140:632;-1:-1:-1;;;;;;11140:632:1:o;12372:219::-;12521:2;12510:9;12503:21;12484:4;12541:44;12581:2;12570:9;12566:18;12558:6;12541:44;:::i;13008:414::-;13210:2;13192:21;;;13249:2;13229:18;;;13222:30;13288:34;13283:2;13268:18;;13261:62;-1:-1:-1;;;13354:2:1;13339:18;;13332:48;13412:3;13397:19;;13008:414::o;18961:356::-;19163:2;19145:21;;;19182:18;;;19175:30;19241:34;19236:2;19221:18;;19214:62;19308:2;19293:18;;18961:356::o;20902:413::-;21104:2;21086:21;;;21143:2;21123:18;;;21116:30;21182:34;21177:2;21162:18;;21155:62;-1:-1:-1;;;21248:2:1;21233:18;;21226:47;21305:3;21290:19;;20902:413::o;23017:128::-;23057:3;23088:1;23084:6;23081:1;23078:13;23075:39;;;23094:18;;:::i;:::-;-1:-1:-1;23130:9:1;;23017:128::o;23150:120::-;23190:1;23216;23206:35;;23221:18;;:::i;:::-;-1:-1:-1;23255:9:1;;23150:120::o;23275:168::-;23315:7;23381:1;23377;23373:6;23369:14;23366:1;23363:21;23358:1;23351:9;23344:17;23340:45;23337:71;;;23388:18;;:::i;:::-;-1:-1:-1;23428:9:1;;23275:168::o;23448:125::-;23488:4;23516:1;23513;23510:8;23507:34;;;23521:18;;:::i;:::-;-1:-1:-1;23558:9:1;;23448:125::o;23578:258::-;23650:1;23660:113;23674:6;23671:1;23668:13;23660:113;;;23750:11;;;23744:18;23731:11;;;23724:39;23696:2;23689:10;23660:113;;;23791:6;23788:1;23785:13;23782:48;;;-1:-1:-1;;23826:1:1;23808:16;;23801:27;23578:258::o;23841:380::-;23920:1;23916:12;;;;23963;;;23984:61;;24038:4;24030:6;24026:17;24016:27;;23984:61;24091:2;24083:6;24080:14;24060:18;24057:38;24054:161;;;24137:10;24132:3;24128:20;24125:1;24118:31;24172:4;24169:1;24162:15;24200:4;24197:1;24190:15;24054:161;;23841:380;;;:::o;24226:135::-;24265:3;-1:-1:-1;;24286:17:1;;24283:43;;;24306:18;;:::i;:::-;-1:-1:-1;24353:1:1;24342:13;;24226:135::o;24366:112::-;24398:1;24424;24414:35;;24429:18;;:::i;:::-;-1:-1:-1;24463:9:1;;24366:112::o;24483:127::-;24544:10;24539:3;24535:20;24532:1;24525:31;24575:4;24572:1;24565:15;24599:4;24596:1;24589:15;24615:127;24676:10;24671:3;24667:20;24664:1;24657:31;24707:4;24704:1;24697:15;24731:4;24728:1;24721:15;24747:127;24808:10;24803:3;24799:20;24796:1;24789:31;24839:4;24836:1;24829:15;24863:4;24860:1;24853:15;24879:127;24940:10;24935:3;24931:20;24928:1;24921:31;24971:4;24968:1;24961:15;24995:4;24992:1;24985:15;25011:127;25072:10;25067:3;25063:20;25060:1;25053:31;25103:4;25100:1;25093:15;25127:4;25124:1;25117:15;25143:118;25229:5;25222:13;25215:21;25208:5;25205:32;25195:60;;25251:1;25248;25241:12;25266:131;-1:-1:-1;;;;;;25340:32:1;;25330:43;;25320:71;;25387:1;25384;25377:12
Swarm Source
ipfs://70042143f8b075174dba0f3df360c81ebf4561d31299edddfde6e8107ac2dd8b
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.