ERC-20
Overview
Max Total Supply
353,516.178837268518518486 LOVE
Holders
43
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
580.875347222222222222 LOVEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LoveToken
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import '@openzeppelin/contracts/access/Ownable.sol'; import "@openzeppelin/contracts/utils/Context.sol"; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; contract LoveToken is Context, IERC20, Ownable { using SafeMath for uint256; uint256 public constant INITIAL_REWARD = 500 * (10 ** 18); address private _dudesAddress; address private _sistasAddress; address private _allowedBurner; uint256 public emissionStart; uint256 public emissionEnd; uint256 public emissionPerDay = 6 * (10 ** 18); mapping (address => mapping (address => uint256)) private _allowances; mapping (address => uint256) private _balances; mapping(uint256 => uint256) private _lastClaimDudes; mapping(uint256 => uint256) private _lastClaimSistas; uint256 private _totalSupply; uint8 private _decimals; string private _name; string private _symbol; constructor (string memory name_, string memory symbol_, address dudesAddress, address sistasAddress, uint256 emissionStartTimestamp, address mintto) { _name = name_; _symbol = symbol_; _decimals = 18; _dudesAddress = dudesAddress; _sistasAddress = sistasAddress; emissionStart = emissionStartTimestamp; emissionEnd = emissionStartTimestamp + (86400 * 365); _mint(mintto, 300000000000000000000000); _mint(0x5B74047Ebf61fF768DA06ed6BDbE0d7Ff3430B79, 2027658888888888888888); _mint(0xE1cAFC2bE75769b99aB0263e8C9437a25E2e7B92, 2025478972222222222222); _mint(0x0108a5E3982148B29450a3F17B247C15B9523889, 1536865208333333333331); _mint(0x550c0D109E2c4684b15264CA562d9B7AB1C6727F, 1515719583333333333333); _mint(0xEFcfc90CAE34aF243Cc3Bc5f4271B5E762cd6512, 1509118333333333333332); _mint(0x9e199d8A3a39c9892b1c3ae348A382662dCBaA12, 514671097222222222222); _mint(0x6e37a0c2617C097E07D43fbC87bfc11a8Fd04698, 512893125000000000000); _mint(0x5Da487Ea7278E25288fd4f0f9243e3Fa61bc7443, 504030677777777777777); _mint(0x4bff03171268f4C7dEd7C7AF430F0e8792198B64, 503934519444444444444); _mint(0xe39Cb745e8Db0Da1Be665ADB2eAb58f4FD600927, 1066968125000000000000); _mint(0x69AAd835CB3F62e435fC693443ce49Bfe74b6Dbe, 529701537037037037037); _lastClaimSistas[168] = 1630440568; _lastClaimSistas[170] = 1630440568; _lastClaimSistas[171] = 1630440568; _lastClaimSistas[238] = 1630472254; _lastClaimSistas[239] = 1630472254; _lastClaimSistas[240] = 1630472254; _lastClaimSistas[181] = 1630481319; _lastClaimSistas[182] = 1630481319; _lastClaimSistas[183] = 1630496372; _lastClaimSistas[213] = 1630496372; _lastClaimSistas[214] = 1630496372; _lastClaimSistas[215] = 1630496372; _lastClaimSistas[56] = 1630573753; _lastClaimSistas[61] = 1630573753; _lastClaimSistas[63] = 1630573753; _lastClaimSistas[51] = 1630582461; _lastClaimDudes[319] = 1630444278; _lastClaimDudes[881] = 1630448623; _lastClaimDudes[257] = 1630481115; _lastClaimDudes[602] = 1630481115; _lastClaimDudes[858] = 1630588858; _lastClaimDudes[1018] = 1630810089; _lastClaimDudes[282] = 1630810089; _lastClaimDudes[698] = 1630767640; } function lastClaimDudes(uint256 tokenIndex) public view returns (uint256) { require(IDudeSista(_dudesAddress).ownerOf(tokenIndex) != address(0), "Owner cannot be 0 address"); require(tokenIndex < IDudeSista(_dudesAddress).totalSupply(), "NFT at index has not been minted yet"); uint256 lastClaimed = uint256(_lastClaimDudes[tokenIndex]) != 0 ? uint256(_lastClaimDudes[tokenIndex]) : emissionStart; return lastClaimed; } function lastClaimSistas(uint256 tokenIndex) public view returns (uint256) { require(IDudeSista(_dudesAddress).ownerOf(tokenIndex) != address(0), "Owner cannot be 0 address"); require(tokenIndex < IDudeSista(_dudesAddress).totalSupply(), "NFT at index has not been minted yet"); uint256 lastClaimed = uint256(_lastClaimSistas[tokenIndex]) != 0 ? uint256(_lastClaimSistas[tokenIndex]) : emissionStart; return lastClaimed; } function setAllowedBurner(address allowedBurner) external onlyOwner { _allowedBurner = allowedBurner; } function accumulatedForDude(uint256 tokenIndex) public view returns (uint256) { return accumulated(_dudesAddress, tokenIndex); } function accumulatedForSista(uint256 tokenIndex) public view returns (uint256) { return accumulated(_sistasAddress, tokenIndex); } function accumulated(address _address, uint256 tokenIndex) public view returns (uint256) { require(block.timestamp > emissionStart, "Emission has not started yet"); require(IDudeSista(_address).ownerOf(tokenIndex) != address(0), "Owner cannot be 0 address"); require(tokenIndex < IDudeSista(_address).totalSupply(), "NFT at index has not been minted yet"); uint256 lastClaimed = _address == _dudesAddress ? lastClaimDudes(tokenIndex) : lastClaimSistas(tokenIndex); if (lastClaimed >= emissionEnd) return 0; uint256 accumulationPeriod = block.timestamp < emissionEnd ? block.timestamp : emissionEnd; // Getting the min value of both (uint256 a, uint256 b, uint256 c, uint256 wealth, uint256 e, uint256 f) = IDudeSista(_address).getSkills(tokenIndex); uint256 dailyEmissionWithBoost = emissionPerDay.add(wealth * 2 * (10 ** 16)); uint256 totalAccumulated = accumulationPeriod.sub(lastClaimed).mul(dailyEmissionWithBoost).div(86400); if (lastClaimed == emissionStart) { totalAccumulated = totalAccumulated.add(INITIAL_REWARD); } return totalAccumulated; } function claimForDudes(uint256[] memory tokenIndices) public returns (uint256) { return claim(_dudesAddress, tokenIndices); } function claimForSistas(uint256[] memory tokenIndices) public returns (uint256) { return claim(_sistasAddress, tokenIndices); } function claim(address _address, uint256[] memory tokenIndices) internal returns (uint256) { require(block.timestamp > emissionStart, "Emission has not started yet"); uint256 totalClaimQty = 0; for (uint i = 0; i < tokenIndices.length; i++) { // Sanity check for non-minted index require(tokenIndices[i] < IDudeSista(_address).totalSupply(), "NFT at index has not been minted yet"); for (uint j = i + 1; j < tokenIndices.length; j++) { require(tokenIndices[i] != tokenIndices[j], "Duplicate token index"); } uint tokenIndex = tokenIndices[i]; require(IDudeSista(_address).ownerOf(tokenIndex) == msg.sender, "Sender is not the owner"); uint256 claimQty = accumulated(_address, tokenIndex); if (claimQty != 0) { totalClaimQty = totalClaimQty.add(claimQty); if(_address == _dudesAddress) { _lastClaimDudes[tokenIndex] = block.timestamp; } else { _lastClaimSistas[tokenIndex] = block.timestamp; } } } require(totalClaimQty != 0, "No accumulated love"); _mint(msg.sender, totalClaimQty); return totalClaimQty; } /** * @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; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); if (msg.sender != _allowedBurner) { _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); } return true; } function burn(uint256 burnQuantity) public returns (bool) { _burn(msg.sender, burnQuantity); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @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 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** @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: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, 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 to 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 { } } interface IDudeSista is IERC721Enumerable { function getSkills(uint256 tokenId) external view returns (uint, uint, uint, uint, uint, uint); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"dudesAddress","type":"address"},{"internalType":"address","name":"sistasAddress","type":"address"},{"internalType":"uint256","name":"emissionStartTimestamp","type":"uint256"},{"internalType":"address","name":"mintto","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"accumulated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"accumulatedForDude","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"accumulatedForSista","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"burnQuantity","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIndices","type":"uint256[]"}],"name":"claimForDudes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIndices","type":"uint256[]"}],"name":"claimForSistas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[],"name":"emissionEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"lastClaimDudes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"lastClaimSistas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"allowedBurner","type":"address"}],"name":"setAllowedBurner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526753444835ec5800006006553480156200001d57600080fd5b506040516200254a3803806200254a833981016040819052620000409162000925565b6200004b3362000640565b85516200006090600d906020890190620007af565b5084516200007690600e906020880190620007af565b50600c805460ff19166012179055600180546001600160a01b038087166001600160a01b03199283161790925560028054928616929091169190911790556004829055620000c9826301e13380620009cc565b600555620000e281693f870857a3e0e380000062000690565b6200010b735b74047ebf61ff768da06ed6bdbe0d7ff3430b79686deb6b78727d788e3862000690565b6200013473e1cafc2be75769b99ab0263e8c9437a25e2e7b92686dcd2ad9c9e0d9c38e62000690565b6200015d730108a5e3982148b29450a3f17b247c15b95238896853504a0c517d0a855362000690565b6200018673550c0d109e2c4684b15264ca562d9b7ab1c6727f68522ad5b26a466bf55562000690565b620001af73efcfc90cae34af243cc3bc5f4271b5e762cd65126851cf395883dadfd55462000690565b620001d8739e199d8a3a39c9892b1c3ae348a382662dcbaa12681be67f0c144b16938e62000690565b62000201736e37a0c2617c097e07d43fbc87bfc11a8fd04698681bcdd26bc36505500062000690565b6200022a735da487ea7278e25288fd4f0f9243e3fa61bc7443681b52d4aef84bd15c7162000690565b62000253734bff03171268f4c7ded7c7af430f0e8792198b64681b517f0f79a74a771c62000690565b6200027c73e39cb745e8db0da1be665adb2eab58f4fd6009276839d72840a5e994d00062000690565b620002a57369aad835cb3f62e435fc693443ce49bfe74b6dbe681cb715e574c70365ed62000690565b505063612e8c787fd65ac04d33ec6a55d505f3f309b464b3c1a9ef33eedb01f11c804adb41a4ca4b8190557fef19e6fb4616767444d3285fabd659719d788b01f37b07c1351ac7ea321ece2a8190557fb1547778ce086bf32ba71566071edd4394af74455da7a43c89beb09bcad1a22f55505063612f083e7f2a058274c13c537589a2f1f4beb26971e9b9a92a6dd45a68e726da207c3cec218190557f08bf521a028c8718aabf5b6a7e424a7cef31a5d47f22566fd0cb683a796114f08190557f25f96372a9315baafee3d80e64fc859f1039403cb640527740afe9b8cdbbe6fd55505063612f2ba77f443bcdcdc5468a874cab7af5a2a3accf92f54ea4ce55786d07f9b18c5e6e94d28190557f9a000679a36eff685daa4ae21afcb74509ffe0a15541d15f26b4ef1b5e495b695563612f66747fe741581f7b0c2019c89a7bc292158f8c5da3a6ee82a31c6c7978f2e845541e738190557f615da8f7044538a21befac96050dd708c372d2d8c4287b37924dd9d400ff3bc28190557fd9cf4c6bb3883a4a70069bff61cd94331d334504a16399bbaa22ee48c1ff58908190557f1a78c27d738363d44b4d711940a0b46978fc09825401040c5519b53c0f1f0b4b5563613094b97f0d66487a4fd51dd587b2804aa978e27509d1f975a58951d636cb4c8aad7c71e18190557f0b08f08bef37a4a22e8f6284561101ae9e8aa26b526bb938f6da1d1967f3a7f88190557f8f0c55a22a2f7a0f887cd6791d1d842713d18c3c0617da4781871bdc09ca794255636130b6bd7f73a117ba966c4ead530419dfd458ce63ae8e8e62f31e7b400021d3a05fa5b73255600960205263612e9af67f3fbc94f73dd3e4a41c5e880374980080a53c294502222e62a7fa714421ec01495563612eabef7f9177c09d83e534fa61d89943eb7ff8577d5b91eaa45916adb11546c16266eb355563612f2adb7f89764034abc3cfebdbe3f616ff309fc34db95a8b7fd4d673a2cb1d3bf3f08d7c8190557f57271c6d33f8aad0fc326e68657e2a9b59f0a9f83a64500b2f9a046e1a7d632755636130cfba7f7d5e03e6fbec0afd1fd7596d9bec4ac7af672ed17f51695145375523c95c42c4556361342fe97fee9a111abf68f4c922a4ee085276fd6e4e1483eec9c008bd7eb628bf2ccaa3c48190557f39d0c1ff8fa1b292bed88248657242c94b8c02b678cb2d300f3b3da1cdf73a4a556102ba6000526361338a187fb70d43f41983cbd0561e0208909ddea8ef3daa748447ec778a967d191dc26bdc5562000a44565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620006eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6200070781600b546200079a60201b62000d2e1790919060201c565b600b556001600160a01b0382166000908152600860209081526040909120546200073c91839062000d2e6200079a821b17901c565b6001600160a01b0383166000818152600860205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200078e9085815260200190565b60405180910390a35050565b6000620007a88284620009cc565b9392505050565b828054620007bd90620009f1565b90600052602060002090601f016020900481019282620007e157600085556200082c565b82601f10620007fc57805160ff19168380011785556200082c565b828001600101855582156200082c579182015b828111156200082c5782518255916020019190600101906200080f565b506200083a9291506200083e565b5090565b5b808211156200083a57600081556001016200083f565b80516001600160a01b03811681146200086d57600080fd5b919050565b600082601f83011262000883578081fd5b81516001600160401b0380821115620008a057620008a062000a2e565b604051601f8301601f19908116603f01168101908282118183101715620008cb57620008cb62000a2e565b81604052838152602092508683858801011115620008e7578485fd5b8491505b838210156200090a5785820183015181830184015290820190620008eb565b838211156200091b57848385830101525b9695505050505050565b60008060008060008060c087890312156200093e578182fd5b86516001600160401b038082111562000955578384fd5b620009638a838b0162000872565b9750602089015191508082111562000979578384fd5b506200098889828a0162000872565b955050620009996040880162000855565b9350620009a96060880162000855565b925060808701519150620009c060a0880162000855565b90509295509295509295565b60008219821115620009ec57634e487b7160e01b81526011600452602481fd5b500190565b600181811c9082168062000a0657607f821691505b6020821081141562000a2857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611af68062000a546000396000f3fe608060405234801561001057600080fd5b50600436106101a85760003560e01c806365e13926116100f9578063a457c2d711610097578063ccd6db8f11610071578063ccd6db8f14610367578063dd62ed3e1461037a578063e6df5f6d146103b3578063f2fde38b146103c657600080fd5b8063a457c2d714610338578063a9059cbb1461034b578063b551b82f1461035e57600080fd5b80637f25b86c116100d35780637f25b86c146102f95780638368909c1461030c5780638da5cb5b1461031557806395d89b411461033057600080fd5b806365e13926146102b357806370a08231146102c6578063715018a6146102ef57600080fd5b806336bcf7d61161016657806342966c681161014057806342966c6814610271578063513da94814610284578063542d44341461028d5780635e45883c146102a057600080fd5b806336bcf7d61461023b578063395093511461024b57806340a83d3d1461025e57600080fd5b806259d517146101ad57806306fdde03146101d3578063095ea7b3146101e857806318160ddd1461020b57806323b872dd14610213578063313ce56714610226575b600080fd5b6101c06101bb3660046117aa565b6103d9565b6040519081526020015b60405180910390f35b6101db6103f8565b6040516101ca9190611823565b6101fb6101f63660046116bf565b61048a565b60405190151581526020016101ca565b600b546101c0565b6101fb61022136600461167f565b6104a0565b600c5460405160ff90911681526020016101ca565b6101c0681b1ae4d6e2ef50000081565b6101fb6102593660046116bf565b61051b565b6101c061026c3660046117aa565b610551565b6101fb61027f3660046117aa565b61056a565b6101c060045481565b6101c061029b3660046117aa565b61057e565b6101c06102ae3660046116ea565b610705565b6101c06102c13660046116bf565b61071e565b6101c06102d436600461160f565b6001600160a01b031660009081526008602052604090205490565b6102f7610a12565b005b6102f761030736600461160f565b610a48565b6101c060055481565b6000546040516001600160a01b0390911681526020016101ca565b6101db610a94565b6101fb6103463660046116bf565b610aa3565b6101fb6103593660046116bf565b610af2565b6101c060065481565b6101c06103753660046117aa565b610aff565b6101c0610388366004611647565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6101c06103c13660046116ea565b610c7a565b6102f76103d436600461160f565b610c93565b6002546000906103f2906001600160a01b03168361071e565b92915050565b6060600d805461040790611994565b80601f016020809104026020016040519081016040528092919081815260200182805461043390611994565b80156104805780601f1061045557610100808354040283529160200191610480565b820191906000526020600020905b81548152906001019060200180831161046357829003601f168201915b5050505050905090565b6000610497338484610d3a565b50600192915050565b60006104ad848484610e5f565b6003546001600160a01b0316331461051157610511843361050c85604051806060016040528060288152602001611a74602891396001600160a01b038a1660009081526007602090815260408083203384529091529020549190610fe5565b610d3a565b5060019392505050565b3360008181526007602090815260408083206001600160a01b0387168452909152812054909161049791859061050c9086610d2e565b6001546000906103f2906001600160a01b03168361071e565b60006105763383611011565b506001919050565b6001546040516331a9108f60e11b81526004810183905260009182916001600160a01b0390911690636352211e9060240160206040518083038186803b1580156105c757600080fd5b505afa1580156105db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ff919061162b565b6001600160a01b0316141561062f5760405162461bcd60e51b8152600401610626906118ba565b60405180910390fd5b600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561067d57600080fd5b505afa158015610691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b591906117c2565b82106106d35760405162461bcd60e51b815260040161062690611876565b6000828152600960205260408120546106ee576004546106fe565b6000838152600960205260409020545b9392505050565b6001546000906103f2906001600160a01b03168361111d565b600060045442116107715760405162461bcd60e51b815260206004820152601c60248201527f456d697373696f6e20686173206e6f74207374617274656420796574000000006044820152606401610626565b6040516331a9108f60e11b8152600481018390526000906001600160a01b03851690636352211e9060240160206040518083038186803b1580156107b457600080fd5b505afa1580156107c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ec919061162b565b6001600160a01b031614156108135760405162461bcd60e51b8152600401610626906118ba565b826001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561084c57600080fd5b505afa158015610860573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088491906117c2565b82106108a25760405162461bcd60e51b815260040161062690611876565b6001546000906001600160a01b038581169116146108c8576108c383610aff565b6108d1565b6108d18361057e565b905060055481106108e65760009150506103f2565b600060055442106108f9576005546108fb565b425b90506000806000806000808a6001600160a01b03166292bf788b6040518263ffffffff1660e01b815260040161093391815260200190565b60c06040518083038186803b15801561094b57600080fd5b505afa15801561095f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098391906117da565b95509550955095509550955060006109bb8460026109a1919061195e565b6109b290662386f26fc1000061195e565b60065490610d2e565b905060006109e0620151806109da846109d48d8f6114c1565b906114cd565b906114d9565b90506004548a1415610a02576109ff81681b1ae4d6e2ef500000610d2e565b90505b9c9b505050505050505050505050565b6000546001600160a01b03163314610a3c5760405162461bcd60e51b8152600401610626906118f1565b610a4660006114e5565b565b6000546001600160a01b03163314610a725760405162461bcd60e51b8152600401610626906118f1565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6060600e805461040790611994565b6000610497338461050c85604051806060016040528060258152602001611a9c602591393360009081526007602090815260408083206001600160a01b038d1684529091529020549190610fe5565b6000610497338484610e5f565b6001546040516331a9108f60e11b81526004810183905260009182916001600160a01b0390911690636352211e9060240160206040518083038186803b158015610b4857600080fd5b505afa158015610b5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b80919061162b565b6001600160a01b03161415610ba75760405162461bcd60e51b8152600401610626906118ba565b600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610bf557600080fd5b505afa158015610c09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2d91906117c2565b8210610c4b5760405162461bcd60e51b815260040161062690611876565b6000828152600a6020526040812054610c66576004546106fe565b50506000908152600a602052604090205490565b6002546000906103f2906001600160a01b03168361111d565b6000546001600160a01b03163314610cbd5760405162461bcd60e51b8152600401610626906118f1565b6001600160a01b038116610d225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610626565b610d2b816114e5565b50565b60006106fe8284611926565b6001600160a01b038316610d9c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610626565b6001600160a01b038216610dfd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610626565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610ec35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610626565b6001600160a01b038216610f255760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610626565b610f6281604051806060016040528060268152602001611a4e602691396001600160a01b0386166000908152600860205260409020549190610fe5565b6001600160a01b038085166000908152600860205260408082209390935590841681522054610f919082610d2e565b6001600160a01b0380841660008181526008602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e529085815260200190565b600081848411156110095760405162461bcd60e51b81526004016106269190611823565b505050900390565b6001600160a01b0382166110715760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610626565b6110ae81604051806060016040528060228152602001611a2c602291396001600160a01b0385166000908152600860205260409020549190610fe5565b6001600160a01b038316600090815260086020526040902055600b546110d490826114c1565b600b556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b600060045442116111705760405162461bcd60e51b815260206004820152601c60248201527f456d697373696f6e20686173206e6f74207374617274656420796574000000006044820152606401610626565b6000805b835181101561147357846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156111b657600080fd5b505afa1580156111ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ee91906117c2565b84828151811061120e57634e487b7160e01b600052603260045260246000fd5b6020026020010151106112335760405162461bcd60e51b815260040161062690611876565b6000611240826001611926565b90505b84518110156112f45784818151811061126c57634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061129457634e487b7160e01b600052603260045260246000fd5b602002602001015114156112e25760405162461bcd60e51b8152602060048201526015602482015274088eae0d8d2c6c2e8ca40e8ded6cadc40d2dcc8caf605b1b6044820152606401610626565b806112ec816119cf565b915050611243565b50600084828151811061131757634e487b7160e01b600052603260045260246000fd5b60200260200101519050336001600160a01b0316866001600160a01b0316636352211e836040518263ffffffff1660e01b815260040161135991815260200190565b60206040518083038186803b15801561137157600080fd5b505afa158015611385573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a9919061162b565b6001600160a01b0316146113ff5760405162461bcd60e51b815260206004820152601760248201527f53656e646572206973206e6f7420746865206f776e65720000000000000000006044820152606401610626565b600061140b878361071e565b9050801561145e5761141d8482610d2e565b6001549094506001600160a01b038881169116141561144c57600082815260096020526040902042905561145e565b6000828152600a602052604090204290555b5050808061146b906119cf565b915050611174565b50806114b75760405162461bcd60e51b81526020600482015260136024820152724e6f20616363756d756c61746564206c6f766560681b6044820152606401610626565b6106fe3382611535565b60006106fe828461197d565b60006106fe828461195e565b60006106fe828461193e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821661158b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610626565b600b546115989082610d2e565b600b556001600160a01b0382166000908152600860205260409020546115be9082610d2e565b6001600160a01b0383166000818152600860205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111119085815260200190565b600060208284031215611620578081fd5b81356106fe81611a16565b60006020828403121561163c578081fd5b81516106fe81611a16565b60008060408385031215611659578081fd5b823561166481611a16565b9150602083013561167481611a16565b809150509250929050565b600080600060608486031215611693578081fd5b833561169e81611a16565b925060208401356116ae81611a16565b929592945050506040919091013590565b600080604083850312156116d1578182fd5b82356116dc81611a16565b946020939093013593505050565b600060208083850312156116fc578182fd5b823567ffffffffffffffff80821115611713578384fd5b818501915085601f830112611726578384fd5b81358181111561173857611738611a00565b8060051b604051601f19603f8301168101818110858211171561175d5761175d611a00565b604052828152858101935084860182860187018a101561177b578788fd5b8795505b8386101561179d57803585526001959095019493860193860161177f565b5098975050505050505050565b6000602082840312156117bb578081fd5b5035919050565b6000602082840312156117d3578081fd5b5051919050565b60008060008060008060c087890312156117f2578182fd5b865195506020870151945060408701519350606087015192506080870151915060a087015190509295509295509295565b6000602080835283518082850152825b8181101561184f57858101830151858201604001528201611833565b818111156118605783604083870101525b50601f01601f1916929092016040019392505050565b60208082526024908201527f4e465420617420696e64657820686173206e6f74206265656e206d696e746564604082015263081e595d60e21b606082015260800190565b60208082526019908201527f4f776e65722063616e6e6f742062652030206164647265737300000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611939576119396119ea565b500190565b60008261195957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611978576119786119ea565b500290565b60008282101561198f5761198f6119ea565b500390565b600181811c908216806119a857607f821691505b602082108114156119c957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119e3576119e36119ea565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d2b57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204a3841a9274a28a463c7aa567db86f4c4c3af0a6b505a19afb1aa14b490d9d0264736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000892555e75350e11f2058d086c72b9c94c9493d720000000000000000000000005fd335e64400eabecc9ebe80e3d2fcfb6c001adb00000000000000000000000000000000000000000000000000000000612de180000000000000000000000000061af2b3b34bd14ea9eedf9388c7c04a77a4718a00000000000000000000000000000000000000000000000000000000000000044c6f76650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c4f564500000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a85760003560e01c806365e13926116100f9578063a457c2d711610097578063ccd6db8f11610071578063ccd6db8f14610367578063dd62ed3e1461037a578063e6df5f6d146103b3578063f2fde38b146103c657600080fd5b8063a457c2d714610338578063a9059cbb1461034b578063b551b82f1461035e57600080fd5b80637f25b86c116100d35780637f25b86c146102f95780638368909c1461030c5780638da5cb5b1461031557806395d89b411461033057600080fd5b806365e13926146102b357806370a08231146102c6578063715018a6146102ef57600080fd5b806336bcf7d61161016657806342966c681161014057806342966c6814610271578063513da94814610284578063542d44341461028d5780635e45883c146102a057600080fd5b806336bcf7d61461023b578063395093511461024b57806340a83d3d1461025e57600080fd5b806259d517146101ad57806306fdde03146101d3578063095ea7b3146101e857806318160ddd1461020b57806323b872dd14610213578063313ce56714610226575b600080fd5b6101c06101bb3660046117aa565b6103d9565b6040519081526020015b60405180910390f35b6101db6103f8565b6040516101ca9190611823565b6101fb6101f63660046116bf565b61048a565b60405190151581526020016101ca565b600b546101c0565b6101fb61022136600461167f565b6104a0565b600c5460405160ff90911681526020016101ca565b6101c0681b1ae4d6e2ef50000081565b6101fb6102593660046116bf565b61051b565b6101c061026c3660046117aa565b610551565b6101fb61027f3660046117aa565b61056a565b6101c060045481565b6101c061029b3660046117aa565b61057e565b6101c06102ae3660046116ea565b610705565b6101c06102c13660046116bf565b61071e565b6101c06102d436600461160f565b6001600160a01b031660009081526008602052604090205490565b6102f7610a12565b005b6102f761030736600461160f565b610a48565b6101c060055481565b6000546040516001600160a01b0390911681526020016101ca565b6101db610a94565b6101fb6103463660046116bf565b610aa3565b6101fb6103593660046116bf565b610af2565b6101c060065481565b6101c06103753660046117aa565b610aff565b6101c0610388366004611647565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6101c06103c13660046116ea565b610c7a565b6102f76103d436600461160f565b610c93565b6002546000906103f2906001600160a01b03168361071e565b92915050565b6060600d805461040790611994565b80601f016020809104026020016040519081016040528092919081815260200182805461043390611994565b80156104805780601f1061045557610100808354040283529160200191610480565b820191906000526020600020905b81548152906001019060200180831161046357829003601f168201915b5050505050905090565b6000610497338484610d3a565b50600192915050565b60006104ad848484610e5f565b6003546001600160a01b0316331461051157610511843361050c85604051806060016040528060288152602001611a74602891396001600160a01b038a1660009081526007602090815260408083203384529091529020549190610fe5565b610d3a565b5060019392505050565b3360008181526007602090815260408083206001600160a01b0387168452909152812054909161049791859061050c9086610d2e565b6001546000906103f2906001600160a01b03168361071e565b60006105763383611011565b506001919050565b6001546040516331a9108f60e11b81526004810183905260009182916001600160a01b0390911690636352211e9060240160206040518083038186803b1580156105c757600080fd5b505afa1580156105db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ff919061162b565b6001600160a01b0316141561062f5760405162461bcd60e51b8152600401610626906118ba565b60405180910390fd5b600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561067d57600080fd5b505afa158015610691573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b591906117c2565b82106106d35760405162461bcd60e51b815260040161062690611876565b6000828152600960205260408120546106ee576004546106fe565b6000838152600960205260409020545b9392505050565b6001546000906103f2906001600160a01b03168361111d565b600060045442116107715760405162461bcd60e51b815260206004820152601c60248201527f456d697373696f6e20686173206e6f74207374617274656420796574000000006044820152606401610626565b6040516331a9108f60e11b8152600481018390526000906001600160a01b03851690636352211e9060240160206040518083038186803b1580156107b457600080fd5b505afa1580156107c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ec919061162b565b6001600160a01b031614156108135760405162461bcd60e51b8152600401610626906118ba565b826001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561084c57600080fd5b505afa158015610860573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088491906117c2565b82106108a25760405162461bcd60e51b815260040161062690611876565b6001546000906001600160a01b038581169116146108c8576108c383610aff565b6108d1565b6108d18361057e565b905060055481106108e65760009150506103f2565b600060055442106108f9576005546108fb565b425b90506000806000806000808a6001600160a01b03166292bf788b6040518263ffffffff1660e01b815260040161093391815260200190565b60c06040518083038186803b15801561094b57600080fd5b505afa15801561095f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098391906117da565b95509550955095509550955060006109bb8460026109a1919061195e565b6109b290662386f26fc1000061195e565b60065490610d2e565b905060006109e0620151806109da846109d48d8f6114c1565b906114cd565b906114d9565b90506004548a1415610a02576109ff81681b1ae4d6e2ef500000610d2e565b90505b9c9b505050505050505050505050565b6000546001600160a01b03163314610a3c5760405162461bcd60e51b8152600401610626906118f1565b610a4660006114e5565b565b6000546001600160a01b03163314610a725760405162461bcd60e51b8152600401610626906118f1565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6060600e805461040790611994565b6000610497338461050c85604051806060016040528060258152602001611a9c602591393360009081526007602090815260408083206001600160a01b038d1684529091529020549190610fe5565b6000610497338484610e5f565b6001546040516331a9108f60e11b81526004810183905260009182916001600160a01b0390911690636352211e9060240160206040518083038186803b158015610b4857600080fd5b505afa158015610b5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b80919061162b565b6001600160a01b03161415610ba75760405162461bcd60e51b8152600401610626906118ba565b600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610bf557600080fd5b505afa158015610c09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2d91906117c2565b8210610c4b5760405162461bcd60e51b815260040161062690611876565b6000828152600a6020526040812054610c66576004546106fe565b50506000908152600a602052604090205490565b6002546000906103f2906001600160a01b03168361111d565b6000546001600160a01b03163314610cbd5760405162461bcd60e51b8152600401610626906118f1565b6001600160a01b038116610d225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610626565b610d2b816114e5565b50565b60006106fe8284611926565b6001600160a01b038316610d9c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610626565b6001600160a01b038216610dfd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610626565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610ec35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610626565b6001600160a01b038216610f255760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610626565b610f6281604051806060016040528060268152602001611a4e602691396001600160a01b0386166000908152600860205260409020549190610fe5565b6001600160a01b038085166000908152600860205260408082209390935590841681522054610f919082610d2e565b6001600160a01b0380841660008181526008602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e529085815260200190565b600081848411156110095760405162461bcd60e51b81526004016106269190611823565b505050900390565b6001600160a01b0382166110715760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610626565b6110ae81604051806060016040528060228152602001611a2c602291396001600160a01b0385166000908152600860205260409020549190610fe5565b6001600160a01b038316600090815260086020526040902055600b546110d490826114c1565b600b556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b600060045442116111705760405162461bcd60e51b815260206004820152601c60248201527f456d697373696f6e20686173206e6f74207374617274656420796574000000006044820152606401610626565b6000805b835181101561147357846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156111b657600080fd5b505afa1580156111ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ee91906117c2565b84828151811061120e57634e487b7160e01b600052603260045260246000fd5b6020026020010151106112335760405162461bcd60e51b815260040161062690611876565b6000611240826001611926565b90505b84518110156112f45784818151811061126c57634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061129457634e487b7160e01b600052603260045260246000fd5b602002602001015114156112e25760405162461bcd60e51b8152602060048201526015602482015274088eae0d8d2c6c2e8ca40e8ded6cadc40d2dcc8caf605b1b6044820152606401610626565b806112ec816119cf565b915050611243565b50600084828151811061131757634e487b7160e01b600052603260045260246000fd5b60200260200101519050336001600160a01b0316866001600160a01b0316636352211e836040518263ffffffff1660e01b815260040161135991815260200190565b60206040518083038186803b15801561137157600080fd5b505afa158015611385573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a9919061162b565b6001600160a01b0316146113ff5760405162461bcd60e51b815260206004820152601760248201527f53656e646572206973206e6f7420746865206f776e65720000000000000000006044820152606401610626565b600061140b878361071e565b9050801561145e5761141d8482610d2e565b6001549094506001600160a01b038881169116141561144c57600082815260096020526040902042905561145e565b6000828152600a602052604090204290555b5050808061146b906119cf565b915050611174565b50806114b75760405162461bcd60e51b81526020600482015260136024820152724e6f20616363756d756c61746564206c6f766560681b6044820152606401610626565b6106fe3382611535565b60006106fe828461197d565b60006106fe828461195e565b60006106fe828461193e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821661158b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610626565b600b546115989082610d2e565b600b556001600160a01b0382166000908152600860205260409020546115be9082610d2e565b6001600160a01b0383166000818152600860205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111119085815260200190565b600060208284031215611620578081fd5b81356106fe81611a16565b60006020828403121561163c578081fd5b81516106fe81611a16565b60008060408385031215611659578081fd5b823561166481611a16565b9150602083013561167481611a16565b809150509250929050565b600080600060608486031215611693578081fd5b833561169e81611a16565b925060208401356116ae81611a16565b929592945050506040919091013590565b600080604083850312156116d1578182fd5b82356116dc81611a16565b946020939093013593505050565b600060208083850312156116fc578182fd5b823567ffffffffffffffff80821115611713578384fd5b818501915085601f830112611726578384fd5b81358181111561173857611738611a00565b8060051b604051601f19603f8301168101818110858211171561175d5761175d611a00565b604052828152858101935084860182860187018a101561177b578788fd5b8795505b8386101561179d57803585526001959095019493860193860161177f565b5098975050505050505050565b6000602082840312156117bb578081fd5b5035919050565b6000602082840312156117d3578081fd5b5051919050565b60008060008060008060c087890312156117f2578182fd5b865195506020870151945060408701519350606087015192506080870151915060a087015190509295509295509295565b6000602080835283518082850152825b8181101561184f57858101830151858201604001528201611833565b818111156118605783604083870101525b50601f01601f1916929092016040019392505050565b60208082526024908201527f4e465420617420696e64657820686173206e6f74206265656e206d696e746564604082015263081e595d60e21b606082015260800190565b60208082526019908201527f4f776e65722063616e6e6f742062652030206164647265737300000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611939576119396119ea565b500190565b60008261195957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611978576119786119ea565b500290565b60008282101561198f5761198f6119ea565b500390565b600181811c908216806119a857607f821691505b602082108114156119c957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119e3576119e36119ea565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d2b57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204a3841a9274a28a463c7aa567db86f4c4c3af0a6b505a19afb1aa14b490d9d0264736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000892555e75350e11f2058d086c72b9c94c9493d720000000000000000000000005fd335e64400eabecc9ebe80e3d2fcfb6c001adb00000000000000000000000000000000000000000000000000000000612de180000000000000000000000000061af2b3b34bd14ea9eedf9388c7c04a77a4718a00000000000000000000000000000000000000000000000000000000000000044c6f76650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c4f564500000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Love
Arg [1] : symbol_ (string): LOVE
Arg [2] : dudesAddress (address): 0x892555E75350E11f2058d086C72b9C94C9493d72
Arg [3] : sistasAddress (address): 0x5Fd335e64400eaBeCC9EBE80E3D2FcFB6c001ADb
Arg [4] : emissionStartTimestamp (uint256): 1630396800
Arg [5] : mintto (address): 0x061AF2b3B34bD14Ea9EEDf9388C7c04a77A4718a
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000892555e75350e11f2058d086c72b9c94c9493d72
Arg [3] : 0000000000000000000000005fd335e64400eabecc9ebe80e3d2fcfb6c001adb
Arg [4] : 00000000000000000000000000000000000000000000000000000000612de180
Arg [5] : 000000000000000000000000061af2b3b34bd14ea9eedf9388c7c04a77a4718a
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4c6f766500000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4c4f564500000000000000000000000000000000000000000000000000000000
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.