Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
445,991.897824074074073773 LORE
Holders
323
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
34.712448516191374607 LOREValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
LORE
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Sources flattened with hardhat v2.6.8 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT // WHITEPAPER: // ~ 113 Years of LORE ~ // In the vast expanse of the digital universe, // LORE unfolds as a token weaving tales of the hypercastle, // a fortress spanning the epochs. // Tailored for deployment within open-ended, permissionless ecosystems, // it embodies the ethos of MathCastles and Satoshi. // LORE is free from premine or cuts, // ensuring a fixed issuance & known supply. // Upheld by the pillars of Math, LORE thrives devoid of human governance. // Rem Lezar has taken 0 premine or cut // A fixed issuance & known supply; // LORE is backed by Math // with no further human governance // 1 LORE generated per Terraform parcel; // each day for 113 years; // and nevermore until the end of time // It is encouraged that developers to make LORE deflationary through use // You may not represent yourself as the creator of LORE or as Rem Lezar; // but otherwise feel free to use LORE in any way you want pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File contracts/LORE.sol pragma solidity ^0.8.0; contract LORE is ReentrancyGuard, ERC20 ("LORE","LORE") { uint256 public RATE = 1 ether; //1 LORE per day string [] private _whitepaper; uint256 constant public DISTRIBUTION_PERIOD = 86400; //86400 seconds = 1 day uint256 constant public DURATION = 113 * 31556926; //113 years * 31556926 seconds per year uint256 constant public START = 1639705519; //Deployment of Terraforms contract uint256 constant public END = START + DURATION; mapping (uint256 => uint256) public cumulativeClaimedByTokenId; address public TerraformsAddress; IERC721Enumerable public Terraforms = IERC721Enumerable(0x4E1f41613c9084FdB9E34E11fAE9412427480e56); function claimForToken (uint256 TerraformsId) external nonReentrant { require (msg.sender==Terraforms.ownerOf(TerraformsId),"Attempted to claim for Terraforms you don't own"); releaseGrant(TerraformsId); } function claimForMultiple (uint256 [] memory TerraformIds) external nonReentrant { for (uint256 i=0;i<TerraformIds.length;i++) { require (msg.sender==Terraforms.ownerOf(TerraformIds[i]),"Attempted to claim for Terraforms you don't own"); } for (uint256 i=0;i<TerraformIds.length;i++) { releaseGrant(TerraformIds[i]); } } function claimForAllTokensOfOwner () external nonReentrant { uint256 balance = Terraforms.balanceOf(msg.sender); require (balance>0,"You don't own any Terraforms"); for (uint256 i=0;i<balance;i++) { releaseGrant(Terraforms.tokenOfOwnerByIndex(msg.sender,i)); } } function releaseGrant (uint256 tokenId) private { uint256 grantForToken = unclaimedGrantBalanceByToken(tokenId); cumulativeClaimedByTokenId[tokenId] += grantForToken; _mint(msg.sender,grantForToken); } function unclaimedGrantBalanceByToken (uint256 tokenId) public view returns (uint256) { return cumulativeEntitlementPerToken() - cumulativeClaimedByTokenId[tokenId]; } function cumulativeEntitlementPerToken () public view returns (uint256){ uint256 GrantTime = min (block.timestamp, END) - START; return GrantTime * RATE / DISTRIBUTION_PERIOD; } function unclaimedGrantBalanceByAddress (address owner) public view returns (uint256) { uint256 unclaimed; for (uint256 i=0;i<Terraforms.balanceOf(owner);i++) { unclaimed += unclaimedGrantBalanceByToken(Terraforms.tokenOfOwnerByIndex(owner,i)); } return unclaimed; } function timeRemainingUntilEndOfIssuance () public view returns (uint256) { return END - block.timestamp; } function timeSinceStart () public view returns (uint256) { return block.timestamp - START; } function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DISTRIBUTION_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Terraforms","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TerraformsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimForAllTokensOfOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"TerraformIds","type":"uint256[]"}],"name":"claimForMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"TerraformsId","type":"uint256"}],"name":"claimForToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cumulativeClaimedByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cumulativeEntitlementPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeRemainingUntilEndOfIssuance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeSinceStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"unclaimedGrantBalanceByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unclaimedGrantBalanceByToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052670de0b6b3a7640000600655734e1f41613c9084fdb9e34e11fae9412427480e56600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801562000070575f80fd5b506040518060400160405280600481526020017f4c4f5245000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c4f52450000000000000000000000000000000000000000000000000000000081525060015f819055508160049081620000f5919062000374565b50806005908162000107919062000374565b50505062000458565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200018c57607f821691505b602082108103620001a257620001a162000147565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620001c9565b620002128683620001c9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200025c6200025662000250846200022a565b62000233565b6200022a565b9050919050565b5f819050919050565b62000277836200023c565b6200028f620002868262000263565b848454620001d5565b825550505050565b5f90565b620002a562000297565b620002b28184846200026c565b505050565b5b81811015620002d957620002cd5f826200029b565b600181019050620002b8565b5050565b601f8211156200032857620002f281620001a8565b620002fd84620001ba565b810160208510156200030d578190505b620003256200031c85620001ba565b830182620002b7565b50505b505050565b5f82821c905092915050565b5f6200034a5f19846008026200032d565b1980831691505092915050565b5f62000364838362000339565b9150826002028217905092915050565b6200037f8262000110565b67ffffffffffffffff8111156200039b576200039a6200011a565b5b620003a7825462000174565b620003b4828285620002dd565b5f60209050601f831160018114620003ea575f8415620003d5578287015190505b620003e1858262000357565b86555062000450565b601f198416620003fa86620001a8565b5f5b828110156200042357848901518255600182019150602085019450602081019050620003fc565b868310156200044357848901516200043f601f89168262000339565b8355505b6001600288020188555050505b505050505050565b61254d80620004665f395ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063a9059cbb11610095578063dbb8ad511161006f578063dbb8ad51146104e9578063dd62ed3e14610505578063ea75a02514610535578063efe7a50414610553576101a7565b8063a9059cbb1461047d578063b092deb1146104ad578063ba9a061a146104cb576101a7565b806393edbc4d116100d157806393edbc4d146103e1578063946a605a1461041157806395d89b411461042f578063a457c2d71461044d576101a7565b806370a082311461038b5780637238b4f6146103bb5780639360c889146103d7576101a7565b806328d13811116101645780633f661e121161013e5780633f661e1214610301578063664e97041461033157806367fc6dea1461034f5780636b50e6511461036d576101a7565b806328d1381114610283578063313ce567146102b357806339509351146102d1576101a7565b806306fdde03146101ab578063095ea7b3146101c957806318160ddd146101f95780631be05289146102175780631cbcd48e1461023557806323b872dd14610253575b5f80fd5b6101b3610571565b6040516101c0919061187d565b60405180910390f35b6101e360048036038101906101de919061193b565b610601565b6040516101f09190611993565b60405180910390f35b61020161061e565b60405161020e91906119bb565b60405180910390f35b61021f610627565b60405161022c91906119bb565b60405180910390f35b61023d61062f565b60405161024a91906119e3565b60405180910390f35b61026d600480360381019061026891906119fc565b610654565b60405161027a9190611993565b60405180910390f35b61029d60048036038101906102989190611a4c565b610746565b6040516102aa91906119bb565b60405180910390f35b6102bb6108b1565b6040516102c89190611a92565b60405180910390f35b6102eb60048036038101906102e6919061193b565b6108b9565b6040516102f89190611993565b60405180910390f35b61031b60048036038101906103169190611aab565b610960565b60405161032891906119bb565b60405180910390f35b610339610975565b60405161034691906119bb565b60405180910390f35b61035761097b565b60405161036491906119bb565b60405180910390f35b610375610991565b60405161038291906119bb565b60405180910390f35b6103a560048036038101906103a09190611a4c565b6109e3565b6040516103b291906119bb565b60405180910390f35b6103d560048036038101906103d09190611aab565b610a29565b005b6103df610b8d565b005b6103fb60048036038101906103f69190611aab565b610d7b565b60405161040891906119bb565b60405180910390f35b610419610da7565b6040516104269190611b31565b60405180910390f35b610437610dcc565b604051610444919061187d565b60405180910390f35b6104676004803603810190610462919061193b565b610e5c565b6040516104749190611993565b60405180910390f35b6104976004803603810190610492919061193b565b610f42565b6040516104a49190611993565b60405180910390f35b6104b5610f5f565b6040516104c291906119bb565b60405180910390f35b6104d3610f66565b6040516104e091906119bb565b60405180910390f35b61050360048036038101906104fe9190611c8a565b610f6e565b005b61051f600480360381019061051a9190611cd1565b611138565b60405161052c91906119bb565b60405180910390f35b61053d6111ba565b60405161054a91906119bb565b60405180910390f35b61055b6111df565b60405161056891906119bb565b60405180910390f35b60606004805461058090611d3c565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac90611d3c565b80156105f75780601f106105ce576101008083540402835291602001916105f7565b820191905f5260205f20905b8154815290600101906020018083116105da57829003601f168201915b5050505050905090565b5f61061461060d6111f6565b84846111fd565b6001905092915050565b5f600354905090565b63d48bd05e81565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6106608484846113c0565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106a76111f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d90611ddc565b60405180910390fd5b61073a856107326111f6565b8584036111fd565b60019150509392505050565b5f805f5b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016107a491906119e3565b602060405180830381865afa1580156107bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e39190611e0e565b8110156108a75761088d600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5986846040518363ffffffff1660e01b8152600401610849929190611e39565b602060405180830381865afa158015610864573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108889190611e0e565b610d7b565b826108989190611e8d565b9150808060010191505061074a565b5080915050919050565b5f6012905090565b5f6109566108c56111f6565b848460025f6108d26111f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546109519190611e8d565b6111fd565b6001905092915050565b6008602052805f5260405f205f915090505481565b60065481565b5f6361bbebaf4261098c9190611ec0565b905090565b5f806361bbebaf6109b54263d48bd05e6361bbebaf6109b09190611e8d565b611638565b6109bf9190611ec0565b905062015180600654826109d39190611ef3565b6109dd9190611f61565b91505090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60025f5403610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490611fdb565b60405180910390fd5b60025f81905550600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b8152600401610ace91906119bb565b602060405180830381865afa158015610ae9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0d919061200d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b71906120a8565b60405180910390fd5b610b8381611650565b60015f8190555050565b60025f5403610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890611fdb565b60405180910390fd5b60025f819055505f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610c3391906119e3565b602060405180830381865afa158015610c4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c729190611e0e565b90505f8111610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90612110565b60405180910390fd5b5f5b81811015610d7057610d63600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5933846040518363ffffffff1660e01b8152600401610d1f929190611e39565b602060405180830381865afa158015610d3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d5e9190611e0e565b611650565b8080600101915050610cb8565b505060015f81905550565b5f60085f8381526020019081526020015f2054610d96610991565b610da09190611ec0565b9050919050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060058054610ddb90611d3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0790611d3c565b8015610e525780601f10610e2957610100808354040283529160200191610e52565b820191905f5260205f20905b815481529060010190602001808311610e3557829003601f168201915b5050505050905090565b5f8060025f610e696111f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a9061219e565b60405180910390fd5b610f37610f2e6111f6565b858584036111fd565b600191505092915050565b5f610f55610f4e6111f6565b84846113c0565b6001905092915050565b6201518081565b6361bbebaf81565b60025f5403610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990611fdb565b60405180910390fd5b60025f819055505f5b81518110156110f157600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e838381518110611014576110136121bc565b5b60200260200101516040518263ffffffff1660e01b815260040161103891906119bb565b602060405180830381865afa158015611053573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611077919061200d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db906120a8565b60405180910390fd5b8080600101915050610fbb565b505f5b815181101561112d57611120828281518110611113576111126121bc565b5b6020026020010151611650565b80806001019150506110f4565b5060015f8190555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f4263d48bd05e6361bbebaf6111d09190611e8d565b6111da9190611ec0565b905090565b63d48bd05e6361bbebaf6111f39190611e8d565b81565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612259565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d0906122e7565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113b391906119bb565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590612375565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612403565b60405180910390fd5b6114a7838383611691565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290612491565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115bb9190611e8d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161161f91906119bb565b60405180910390a3611632848484611696565b50505050565b5f8183106116465781611648565b825b905092915050565b5f61165a82610d7b565b90508060085f8481526020019081526020015f205f82825461167c9190611e8d565b9250508190555061168d338261169b565b5050565b505050565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611700906124f9565b60405180910390fd5b6117145f8383611691565b8060035f8282546117259190611e8d565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117789190611e8d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117dc91906119bb565b60405180910390a36117ef5f8383611696565b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561182a57808201518184015260208101905061180f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61184f826117f3565b61185981856117fd565b935061186981856020860161180d565b61187281611835565b840191505092915050565b5f6020820190508181035f8301526118958184611845565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118d7826118ae565b9050919050565b6118e7816118cd565b81146118f1575f80fd5b50565b5f81359050611902816118de565b92915050565b5f819050919050565b61191a81611908565b8114611924575f80fd5b50565b5f8135905061193581611911565b92915050565b5f8060408385031215611951576119506118a6565b5b5f61195e858286016118f4565b925050602061196f85828601611927565b9150509250929050565b5f8115159050919050565b61198d81611979565b82525050565b5f6020820190506119a65f830184611984565b92915050565b6119b581611908565b82525050565b5f6020820190506119ce5f8301846119ac565b92915050565b6119dd816118cd565b82525050565b5f6020820190506119f65f8301846119d4565b92915050565b5f805f60608486031215611a1357611a126118a6565b5b5f611a20868287016118f4565b9350506020611a31868287016118f4565b9250506040611a4286828701611927565b9150509250925092565b5f60208284031215611a6157611a606118a6565b5b5f611a6e848285016118f4565b91505092915050565b5f60ff82169050919050565b611a8c81611a77565b82525050565b5f602082019050611aa55f830184611a83565b92915050565b5f60208284031215611ac057611abf6118a6565b5b5f611acd84828501611927565b91505092915050565b5f819050919050565b5f611af9611af4611aef846118ae565b611ad6565b6118ae565b9050919050565b5f611b0a82611adf565b9050919050565b5f611b1b82611b00565b9050919050565b611b2b81611b11565b82525050565b5f602082019050611b445f830184611b22565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b8482611835565b810181811067ffffffffffffffff82111715611ba357611ba2611b4e565b5b80604052505050565b5f611bb561189d565b9050611bc18282611b7b565b919050565b5f67ffffffffffffffff821115611be057611bdf611b4e565b5b602082029050602081019050919050565b5f80fd5b5f611c07611c0284611bc6565b611bac565b90508083825260208201905060208402830185811115611c2a57611c29611bf1565b5b835b81811015611c535780611c3f8882611927565b845260208401935050602081019050611c2c565b5050509392505050565b5f82601f830112611c7157611c70611b4a565b5b8135611c81848260208601611bf5565b91505092915050565b5f60208284031215611c9f57611c9e6118a6565b5b5f82013567ffffffffffffffff811115611cbc57611cbb6118aa565b5b611cc884828501611c5d565b91505092915050565b5f8060408385031215611ce757611ce66118a6565b5b5f611cf4858286016118f4565b9250506020611d05858286016118f4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611d5357607f821691505b602082108103611d6657611d65611d0f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611dc66028836117fd565b9150611dd182611d6c565b604082019050919050565b5f6020820190508181035f830152611df381611dba565b9050919050565b5f81519050611e0881611911565b92915050565b5f60208284031215611e2357611e226118a6565b5b5f611e3084828501611dfa565b91505092915050565b5f604082019050611e4c5f8301856119d4565b611e5960208301846119ac565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e9782611908565b9150611ea283611908565b9250828201905080821115611eba57611eb9611e60565b5b92915050565b5f611eca82611908565b9150611ed583611908565b9250828203905081811115611eed57611eec611e60565b5b92915050565b5f611efd82611908565b9150611f0883611908565b9250828202611f1681611908565b91508282048414831517611f2d57611f2c611e60565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611f6b82611908565b9150611f7683611908565b925082611f8657611f85611f34565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f611fc5601f836117fd565b9150611fd082611f91565b602082019050919050565b5f6020820190508181035f830152611ff281611fb9565b9050919050565b5f81519050612007816118de565b92915050565b5f60208284031215612022576120216118a6565b5b5f61202f84828501611ff9565b91505092915050565b7f417474656d7074656420746f20636c61696d20666f72205465727261666f726d5f8201527f7320796f7520646f6e2774206f776e0000000000000000000000000000000000602082015250565b5f612092602f836117fd565b915061209d82612038565b604082019050919050565b5f6020820190508181035f8301526120bf81612086565b9050919050565b7f596f7520646f6e2774206f776e20616e79205465727261666f726d73000000005f82015250565b5f6120fa601c836117fd565b9150612105826120c6565b602082019050919050565b5f6020820190508181035f830152612127816120ee565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6121886025836117fd565b91506121938261212e565b604082019050919050565b5f6020820190508181035f8301526121b58161217c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6122436024836117fd565b915061224e826121e9565b604082019050919050565b5f6020820190508181035f83015261227081612237565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122d16022836117fd565b91506122dc82612277565b604082019050919050565b5f6020820190508181035f8301526122fe816122c5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61235f6025836117fd565b915061236a82612305565b604082019050919050565b5f6020820190508181035f83015261238c81612353565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123ed6023836117fd565b91506123f882612393565b604082019050919050565b5f6020820190508181035f83015261241a816123e1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61247b6026836117fd565b915061248682612421565b604082019050919050565b5f6020820190508181035f8301526124a88161246f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6124e3601f836117fd565b91506124ee826124af565b602082019050919050565b5f6020820190508181035f830152612510816124d7565b905091905056fea2646970667358221220aa968b50ce9cee0f7ecf8595638ac37412a58d22a3f8d327da85d77775e84e6864736f6c63430008180033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063a9059cbb11610095578063dbb8ad511161006f578063dbb8ad51146104e9578063dd62ed3e14610505578063ea75a02514610535578063efe7a50414610553576101a7565b8063a9059cbb1461047d578063b092deb1146104ad578063ba9a061a146104cb576101a7565b806393edbc4d116100d157806393edbc4d146103e1578063946a605a1461041157806395d89b411461042f578063a457c2d71461044d576101a7565b806370a082311461038b5780637238b4f6146103bb5780639360c889146103d7576101a7565b806328d13811116101645780633f661e121161013e5780633f661e1214610301578063664e97041461033157806367fc6dea1461034f5780636b50e6511461036d576101a7565b806328d1381114610283578063313ce567146102b357806339509351146102d1576101a7565b806306fdde03146101ab578063095ea7b3146101c957806318160ddd146101f95780631be05289146102175780631cbcd48e1461023557806323b872dd14610253575b5f80fd5b6101b3610571565b6040516101c0919061187d565b60405180910390f35b6101e360048036038101906101de919061193b565b610601565b6040516101f09190611993565b60405180910390f35b61020161061e565b60405161020e91906119bb565b60405180910390f35b61021f610627565b60405161022c91906119bb565b60405180910390f35b61023d61062f565b60405161024a91906119e3565b60405180910390f35b61026d600480360381019061026891906119fc565b610654565b60405161027a9190611993565b60405180910390f35b61029d60048036038101906102989190611a4c565b610746565b6040516102aa91906119bb565b60405180910390f35b6102bb6108b1565b6040516102c89190611a92565b60405180910390f35b6102eb60048036038101906102e6919061193b565b6108b9565b6040516102f89190611993565b60405180910390f35b61031b60048036038101906103169190611aab565b610960565b60405161032891906119bb565b60405180910390f35b610339610975565b60405161034691906119bb565b60405180910390f35b61035761097b565b60405161036491906119bb565b60405180910390f35b610375610991565b60405161038291906119bb565b60405180910390f35b6103a560048036038101906103a09190611a4c565b6109e3565b6040516103b291906119bb565b60405180910390f35b6103d560048036038101906103d09190611aab565b610a29565b005b6103df610b8d565b005b6103fb60048036038101906103f69190611aab565b610d7b565b60405161040891906119bb565b60405180910390f35b610419610da7565b6040516104269190611b31565b60405180910390f35b610437610dcc565b604051610444919061187d565b60405180910390f35b6104676004803603810190610462919061193b565b610e5c565b6040516104749190611993565b60405180910390f35b6104976004803603810190610492919061193b565b610f42565b6040516104a49190611993565b60405180910390f35b6104b5610f5f565b6040516104c291906119bb565b60405180910390f35b6104d3610f66565b6040516104e091906119bb565b60405180910390f35b61050360048036038101906104fe9190611c8a565b610f6e565b005b61051f600480360381019061051a9190611cd1565b611138565b60405161052c91906119bb565b60405180910390f35b61053d6111ba565b60405161054a91906119bb565b60405180910390f35b61055b6111df565b60405161056891906119bb565b60405180910390f35b60606004805461058090611d3c565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac90611d3c565b80156105f75780601f106105ce576101008083540402835291602001916105f7565b820191905f5260205f20905b8154815290600101906020018083116105da57829003601f168201915b5050505050905090565b5f61061461060d6111f6565b84846111fd565b6001905092915050565b5f600354905090565b63d48bd05e81565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6106608484846113c0565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106a76111f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d90611ddc565b60405180910390fd5b61073a856107326111f6565b8584036111fd565b60019150509392505050565b5f805f5b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016107a491906119e3565b602060405180830381865afa1580156107bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e39190611e0e565b8110156108a75761088d600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5986846040518363ffffffff1660e01b8152600401610849929190611e39565b602060405180830381865afa158015610864573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108889190611e0e565b610d7b565b826108989190611e8d565b9150808060010191505061074a565b5080915050919050565b5f6012905090565b5f6109566108c56111f6565b848460025f6108d26111f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546109519190611e8d565b6111fd565b6001905092915050565b6008602052805f5260405f205f915090505481565b60065481565b5f6361bbebaf4261098c9190611ec0565b905090565b5f806361bbebaf6109b54263d48bd05e6361bbebaf6109b09190611e8d565b611638565b6109bf9190611ec0565b905062015180600654826109d39190611ef3565b6109dd9190611f61565b91505090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60025f5403610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490611fdb565b60405180910390fd5b60025f81905550600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b8152600401610ace91906119bb565b602060405180830381865afa158015610ae9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0d919061200d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b71906120a8565b60405180910390fd5b610b8381611650565b60015f8190555050565b60025f5403610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890611fdb565b60405180910390fd5b60025f819055505f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610c3391906119e3565b602060405180830381865afa158015610c4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c729190611e0e565b90505f8111610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90612110565b60405180910390fd5b5f5b81811015610d7057610d63600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5933846040518363ffffffff1660e01b8152600401610d1f929190611e39565b602060405180830381865afa158015610d3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d5e9190611e0e565b611650565b8080600101915050610cb8565b505060015f81905550565b5f60085f8381526020019081526020015f2054610d96610991565b610da09190611ec0565b9050919050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060058054610ddb90611d3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0790611d3c565b8015610e525780601f10610e2957610100808354040283529160200191610e52565b820191905f5260205f20905b815481529060010190602001808311610e3557829003601f168201915b5050505050905090565b5f8060025f610e696111f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a9061219e565b60405180910390fd5b610f37610f2e6111f6565b858584036111fd565b600191505092915050565b5f610f55610f4e6111f6565b84846113c0565b6001905092915050565b6201518081565b6361bbebaf81565b60025f5403610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990611fdb565b60405180910390fd5b60025f819055505f5b81518110156110f157600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e838381518110611014576110136121bc565b5b60200260200101516040518263ffffffff1660e01b815260040161103891906119bb565b602060405180830381865afa158015611053573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611077919061200d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db906120a8565b60405180910390fd5b8080600101915050610fbb565b505f5b815181101561112d57611120828281518110611113576111126121bc565b5b6020026020010151611650565b80806001019150506110f4565b5060015f8190555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f4263d48bd05e6361bbebaf6111d09190611e8d565b6111da9190611ec0565b905090565b63d48bd05e6361bbebaf6111f39190611e8d565b81565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612259565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d0906122e7565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113b391906119bb565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590612375565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612403565b60405180910390fd5b6114a7838383611691565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290612491565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115bb9190611e8d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161161f91906119bb565b60405180910390a3611632848484611696565b50505050565b5f8183106116465781611648565b825b905092915050565b5f61165a82610d7b565b90508060085f8481526020019081526020015f205f82825461167c9190611e8d565b9250508190555061168d338261169b565b5050565b505050565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611700906124f9565b60405180910390fd5b6117145f8383611691565b8060035f8282546117259190611e8d565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117789190611e8d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117dc91906119bb565b60405180910390a36117ef5f8383611696565b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561182a57808201518184015260208101905061180f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61184f826117f3565b61185981856117fd565b935061186981856020860161180d565b61187281611835565b840191505092915050565b5f6020820190508181035f8301526118958184611845565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118d7826118ae565b9050919050565b6118e7816118cd565b81146118f1575f80fd5b50565b5f81359050611902816118de565b92915050565b5f819050919050565b61191a81611908565b8114611924575f80fd5b50565b5f8135905061193581611911565b92915050565b5f8060408385031215611951576119506118a6565b5b5f61195e858286016118f4565b925050602061196f85828601611927565b9150509250929050565b5f8115159050919050565b61198d81611979565b82525050565b5f6020820190506119a65f830184611984565b92915050565b6119b581611908565b82525050565b5f6020820190506119ce5f8301846119ac565b92915050565b6119dd816118cd565b82525050565b5f6020820190506119f65f8301846119d4565b92915050565b5f805f60608486031215611a1357611a126118a6565b5b5f611a20868287016118f4565b9350506020611a31868287016118f4565b9250506040611a4286828701611927565b9150509250925092565b5f60208284031215611a6157611a606118a6565b5b5f611a6e848285016118f4565b91505092915050565b5f60ff82169050919050565b611a8c81611a77565b82525050565b5f602082019050611aa55f830184611a83565b92915050565b5f60208284031215611ac057611abf6118a6565b5b5f611acd84828501611927565b91505092915050565b5f819050919050565b5f611af9611af4611aef846118ae565b611ad6565b6118ae565b9050919050565b5f611b0a82611adf565b9050919050565b5f611b1b82611b00565b9050919050565b611b2b81611b11565b82525050565b5f602082019050611b445f830184611b22565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b8482611835565b810181811067ffffffffffffffff82111715611ba357611ba2611b4e565b5b80604052505050565b5f611bb561189d565b9050611bc18282611b7b565b919050565b5f67ffffffffffffffff821115611be057611bdf611b4e565b5b602082029050602081019050919050565b5f80fd5b5f611c07611c0284611bc6565b611bac565b90508083825260208201905060208402830185811115611c2a57611c29611bf1565b5b835b81811015611c535780611c3f8882611927565b845260208401935050602081019050611c2c565b5050509392505050565b5f82601f830112611c7157611c70611b4a565b5b8135611c81848260208601611bf5565b91505092915050565b5f60208284031215611c9f57611c9e6118a6565b5b5f82013567ffffffffffffffff811115611cbc57611cbb6118aa565b5b611cc884828501611c5d565b91505092915050565b5f8060408385031215611ce757611ce66118a6565b5b5f611cf4858286016118f4565b9250506020611d05858286016118f4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611d5357607f821691505b602082108103611d6657611d65611d0f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611dc66028836117fd565b9150611dd182611d6c565b604082019050919050565b5f6020820190508181035f830152611df381611dba565b9050919050565b5f81519050611e0881611911565b92915050565b5f60208284031215611e2357611e226118a6565b5b5f611e3084828501611dfa565b91505092915050565b5f604082019050611e4c5f8301856119d4565b611e5960208301846119ac565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e9782611908565b9150611ea283611908565b9250828201905080821115611eba57611eb9611e60565b5b92915050565b5f611eca82611908565b9150611ed583611908565b9250828203905081811115611eed57611eec611e60565b5b92915050565b5f611efd82611908565b9150611f0883611908565b9250828202611f1681611908565b91508282048414831517611f2d57611f2c611e60565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611f6b82611908565b9150611f7683611908565b925082611f8657611f85611f34565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f611fc5601f836117fd565b9150611fd082611f91565b602082019050919050565b5f6020820190508181035f830152611ff281611fb9565b9050919050565b5f81519050612007816118de565b92915050565b5f60208284031215612022576120216118a6565b5b5f61202f84828501611ff9565b91505092915050565b7f417474656d7074656420746f20636c61696d20666f72205465727261666f726d5f8201527f7320796f7520646f6e2774206f776e0000000000000000000000000000000000602082015250565b5f612092602f836117fd565b915061209d82612038565b604082019050919050565b5f6020820190508181035f8301526120bf81612086565b9050919050565b7f596f7520646f6e2774206f776e20616e79205465727261666f726d73000000005f82015250565b5f6120fa601c836117fd565b9150612105826120c6565b602082019050919050565b5f6020820190508181035f830152612127816120ee565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6121886025836117fd565b91506121938261212e565b604082019050919050565b5f6020820190508181035f8301526121b58161217c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6122436024836117fd565b915061224e826121e9565b604082019050919050565b5f6020820190508181035f83015261227081612237565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122d16022836117fd565b91506122dc82612277565b604082019050919050565b5f6020820190508181035f8301526122fe816122c5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61235f6025836117fd565b915061236a82612305565b604082019050919050565b5f6020820190508181035f83015261238c81612353565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123ed6023836117fd565b91506123f882612393565b604082019050919050565b5f6020820190508181035f83015261241a816123e1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61247b6026836117fd565b915061248682612421565b604082019050919050565b5f6020820190508181035f8301526124a88161246f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6124e3601f836117fd565b91506124ee826124af565b602082019050919050565b5f6020820190508181035f830152612510816124d7565b905091905056fea2646970667358221220aa968b50ce9cee0f7ecf8595638ac37412a58d22a3f8d327da85d77775e84e6864736f6c63430008180033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.