ERC-20
Overview
Max Total Supply
1,000,000,000 GRABME
Holders
13
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.388207354549217719 GRABMEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GrabMeBanana
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-21 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** https://twitter.com/GrabmeBananaoff https://t.me/GrabMeBanana */ pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) 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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) 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.openzeppelin.com/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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/GRABME.sol pragma solidity ^0.8.0; contract GrabMeBanana is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; constructor(uint256 _totalSupply, address _lpWallet, address _ecoWallet, address _airdropWallet) ERC20("Banana", "GRABME") { _mint(_lpWallet, _totalSupply * 10**18 * 950 / 1000); // 95% for LP _mint(_airdropWallet, _totalSupply * 10**18 * 40 / 1000); // 4% for airdrop _mint(_ecoWallet, _totalSupply * 10**18 * 10 / 1000); // 1% for ecosystsem } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_lpWallet","type":"address"},{"internalType":"address","name":"_ecoWallet","type":"address"},{"internalType":"address","name":"_airdropWallet","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":[{"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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"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":[{"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200141a3803806200141a833981016040819052620000349162000497565b6040518060400160405280600681526020016542616e616e6160d01b81525060405180604001604052806006815260200165475241424d4560d01b8152506200008c620000866200015460201b60201c565b62000158565b8151620000a1906004906020850190620003d4565b508051620000b7906005906020840190620003d4565b505050620000f8836103e886670de0b6b3a7640000620000d8919062000526565b620000e6906103b662000526565b620000f2919062000505565b620001a8565b62000121816103e86200011487670de0b6b3a764000062000526565b620000e690602862000526565b6200014a826103e86200013d87670de0b6b3a764000062000526565b620000e690600a62000526565b505050506200059b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000212600083836200027f565b8060036000828254620002269190620004ea565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015620002c257506001600160a01b0383166000908152600a602052604090205460ff16155b620002fe5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401620001fb565b60065460ff1680156200031e57506009546001600160a01b038481169116145b15620003b457600754816200033e84620003b960201b6200046a1760201c565b6200034a9190620004ea565b111580156200037d5750600854816200036e84620003b960201b6200046a1760201c565b6200037a9190620004ea565b10155b620003b45760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401620001fb565b505050565b6001600160a01b031660009081526001602052604090205490565b828054620003e29062000548565b90600052602060002090601f01602090048101928262000406576000855562000451565b82601f106200042157805160ff191683800117855562000451565b8280016001018555821562000451579182015b828111156200045157825182559160200191906001019062000434565b506200045f92915062000463565b5090565b5b808211156200045f576000815560010162000464565b80516001600160a01b03811681146200049257600080fd5b919050565b60008060008060808587031215620004ad578384fd5b84519350620004bf602086016200047a565b9250620004cf604086016200047a565b9150620004df606086016200047a565b905092959194509250565b6000821982111562000500576200050062000585565b500190565b6000826200052157634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161562000543576200054362000585565b500290565b600181811c908216806200055d57607f821691505b602082108114156200057f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610e6f80620005ab6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461029257806395d89b41146102a3578063a457c2d7146102ab578063a9059cbb146102be578063dd62ed3e146102d1578063f2fde38b146102e457600080fd5b806349bd5a5e1461023657806370a0823114610261578063715018a614610274578063860a32ec1461027c57806389f9a1d31461028957600080fd5b806323b872dd1161010a57806323b872dd146101c6578063313ce567146101d957806339509351146101e85780633aa633aa146101fb578063404e51291461021057806342966c681461022357600080fd5b806306fdde0314610147578063095ea7b31461016557806316c021291461018857806318160ddd146101ab5780631ab99e12146101bd575b600080fd5b61014f6102f7565b60405161015c9190610d87565b60405180910390f35b610178610173366004610d05565b610389565b604051901515815260200161015c565b610178610196366004610c4e565b600a6020526000908152604090205460ff1681565b6003545b60405190815260200161015c565b6101af60085481565b6101786101d4366004610ca1565b6103a1565b6040516012815260200161015c565b6101786101f6366004610d05565b6103c5565b61020e610209366004610d2e565b6103e7565b005b61020e61021e366004610cdc565b61042a565b61020e610231366004610d6f565b61045d565b600954610249906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6101af61026f366004610c4e565b61046a565b61020e610485565b6006546101789060ff1681565b6101af60075481565b6000546001600160a01b0316610249565b61014f610499565b6101786102b9366004610d05565b6104a8565b6101786102cc366004610d05565b610528565b6101af6102df366004610c6f565b610536565b61020e6102f2366004610c4e565b610561565b60606004805461030690610dfe565b80601f016020809104026020016040519081016040528092919081815260200182805461033290610dfe565b801561037f5780601f106103545761010080835404028352916020019161037f565b820191906000526020600020905b81548152906001019060200180831161036257829003601f168201915b5050505050905090565b6000336103978185856105d7565b5060019392505050565b6000336103af8582856106fc565b6103ba858585610776565b506001949350505050565b6000336103978185856103d88383610536565b6103e29190610dda565b6105d7565b6103ef61092c565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61043261092c565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6104673382610986565b50565b6001600160a01b031660009081526001602052604090205490565b61048d61092c565b6104976000610ac3565b565b60606005805461030690610dfe565b600033816104b68286610536565b90508381101561051b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103ba82868684036105d7565b600033610397818585610776565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61056961092c565b6001600160a01b0381166105ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610512565b61046781610ac3565b6001600160a01b0383166106395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610512565b6001600160a01b03821661069a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610512565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107088484610536565b9050600019811461077057818110156107635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610512565b61077084848484036105d7565b50505050565b6001600160a01b0383166107da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610512565b6001600160a01b03821661083c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610512565b610847838383610b13565b6001600160a01b038316600090815260016020526040902054818110156108bf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610512565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061091f9086815260200190565b60405180910390a3610770565b6000546001600160a01b031633146104975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b6001600160a01b0382166109e65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610512565b6109f282600083610b13565b6001600160a01b03821660009081526001602052604090205481811015610a665760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610512565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016106ef565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610b5557506001600160a01b0383166000908152600a602052604090205460ff16155b610b8f5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610512565b60065460ff168015610bae57506009546001600160a01b038481169116145b15610abe5760075481610bc08461046a565b610bca9190610dda565b11158015610bed575060085481610be08461046a565b610bea9190610dda565b10155b610abe5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610512565b80356001600160a01b0381168114610c3957600080fd5b919050565b80358015158114610c3957600080fd5b600060208284031215610c5f578081fd5b610c6882610c22565b9392505050565b60008060408385031215610c81578081fd5b610c8a83610c22565b9150610c9860208401610c22565b90509250929050565b600080600060608486031215610cb5578081fd5b610cbe84610c22565b9250610ccc60208501610c22565b9150604084013590509250925092565b60008060408385031215610cee578182fd5b610cf783610c22565b9150610c9860208401610c3e565b60008060408385031215610d17578182fd5b610d2083610c22565b946020939093013593505050565b60008060008060808587031215610d43578081fd5b610d4c85610c3e565b9350610d5a60208601610c22565b93969395505050506040820135916060013590565b600060208284031215610d80578081fd5b5035919050565b6000602080835283518082850152825b81811015610db357858101830151858201604001528201610d97565b81811115610dc45783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610df957634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610e1257607f821691505b60208210811415610e3357634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220959ab428d6705591a3452f1ab838f32235181da718734a3984bc4a000d7d9ee064736f6c63430008040033000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000dd9351129ad53515b20d41e7da81ad8834c63e0f00000000000000000000000032b8e22a6b3a4f564647aee573430c79eceb81bb000000000000000000000000eb6d4e8f759b00e8f3e893c571977b9a08acf1d4
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461029257806395d89b41146102a3578063a457c2d7146102ab578063a9059cbb146102be578063dd62ed3e146102d1578063f2fde38b146102e457600080fd5b806349bd5a5e1461023657806370a0823114610261578063715018a614610274578063860a32ec1461027c57806389f9a1d31461028957600080fd5b806323b872dd1161010a57806323b872dd146101c6578063313ce567146101d957806339509351146101e85780633aa633aa146101fb578063404e51291461021057806342966c681461022357600080fd5b806306fdde0314610147578063095ea7b31461016557806316c021291461018857806318160ddd146101ab5780631ab99e12146101bd575b600080fd5b61014f6102f7565b60405161015c9190610d87565b60405180910390f35b610178610173366004610d05565b610389565b604051901515815260200161015c565b610178610196366004610c4e565b600a6020526000908152604090205460ff1681565b6003545b60405190815260200161015c565b6101af60085481565b6101786101d4366004610ca1565b6103a1565b6040516012815260200161015c565b6101786101f6366004610d05565b6103c5565b61020e610209366004610d2e565b6103e7565b005b61020e61021e366004610cdc565b61042a565b61020e610231366004610d6f565b61045d565b600954610249906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6101af61026f366004610c4e565b61046a565b61020e610485565b6006546101789060ff1681565b6101af60075481565b6000546001600160a01b0316610249565b61014f610499565b6101786102b9366004610d05565b6104a8565b6101786102cc366004610d05565b610528565b6101af6102df366004610c6f565b610536565b61020e6102f2366004610c4e565b610561565b60606004805461030690610dfe565b80601f016020809104026020016040519081016040528092919081815260200182805461033290610dfe565b801561037f5780601f106103545761010080835404028352916020019161037f565b820191906000526020600020905b81548152906001019060200180831161036257829003601f168201915b5050505050905090565b6000336103978185856105d7565b5060019392505050565b6000336103af8582856106fc565b6103ba858585610776565b506001949350505050565b6000336103978185856103d88383610536565b6103e29190610dda565b6105d7565b6103ef61092c565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61043261092c565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6104673382610986565b50565b6001600160a01b031660009081526001602052604090205490565b61048d61092c565b6104976000610ac3565b565b60606005805461030690610dfe565b600033816104b68286610536565b90508381101561051b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103ba82868684036105d7565b600033610397818585610776565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61056961092c565b6001600160a01b0381166105ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610512565b61046781610ac3565b6001600160a01b0383166106395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610512565b6001600160a01b03821661069a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610512565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107088484610536565b9050600019811461077057818110156107635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610512565b61077084848484036105d7565b50505050565b6001600160a01b0383166107da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610512565b6001600160a01b03821661083c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610512565b610847838383610b13565b6001600160a01b038316600090815260016020526040902054818110156108bf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610512565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061091f9086815260200190565b60405180910390a3610770565b6000546001600160a01b031633146104975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b6001600160a01b0382166109e65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610512565b6109f282600083610b13565b6001600160a01b03821660009081526001602052604090205481811015610a665760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610512565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016106ef565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610b5557506001600160a01b0383166000908152600a602052604090205460ff16155b610b8f5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610512565b60065460ff168015610bae57506009546001600160a01b038481169116145b15610abe5760075481610bc08461046a565b610bca9190610dda565b11158015610bed575060085481610be08461046a565b610bea9190610dda565b10155b610abe5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610512565b80356001600160a01b0381168114610c3957600080fd5b919050565b80358015158114610c3957600080fd5b600060208284031215610c5f578081fd5b610c6882610c22565b9392505050565b60008060408385031215610c81578081fd5b610c8a83610c22565b9150610c9860208401610c22565b90509250929050565b600080600060608486031215610cb5578081fd5b610cbe84610c22565b9250610ccc60208501610c22565b9150604084013590509250925092565b60008060408385031215610cee578182fd5b610cf783610c22565b9150610c9860208401610c3e565b60008060408385031215610d17578182fd5b610d2083610c22565b946020939093013593505050565b60008060008060808587031215610d43578081fd5b610d4c85610c3e565b9350610d5a60208601610c22565b93969395505050506040820135916060013590565b600060208284031215610d80578081fd5b5035919050565b6000602080835283518082850152825b81811015610db357858101830151858201604001528201610d97565b81811115610dc45783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610df957634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610e1257607f821691505b60208210811415610e3357634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220959ab428d6705591a3452f1ab838f32235181da718734a3984bc4a000d7d9ee064736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000dd9351129ad53515b20d41e7da81ad8834c63e0f00000000000000000000000032b8e22a6b3a4f564647aee573430c79eceb81bb000000000000000000000000eb6d4e8f759b00e8f3e893c571977b9a08acf1d4
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000
Arg [1] : _lpWallet (address): 0xdD9351129AD53515b20D41e7Da81aD8834C63E0F
Arg [2] : _ecoWallet (address): 0x32b8e22A6B3A4f564647aEE573430C79eCeb81BB
Arg [3] : _airdropWallet (address): 0xeB6d4e8F759B00e8F3E893C571977b9A08ACF1d4
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 000000000000000000000000dd9351129ad53515b20d41e7da81ad8834c63e0f
Arg [2] : 00000000000000000000000032b8e22a6b3a4f564647aee573430c79eceb81bb
Arg [3] : 000000000000000000000000eb6d4e8f759b00e8f3e893c571977b9a08acf1d4
Deployed Bytecode Sourcemap
20698:1582:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6754:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9105:201;;;;;;:::i;:::-;;:::i;:::-;;;2688:14:1;;2681:22;2663:41;;2651:2;2636:18;9105:201:0;2618:92:1;20882:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;7874:108;7962:12;;7874:108;;;8505:25:1;;;8493:2;8478:18;7874:108:0;8460:76:1;20809:31:0;;;;;;9886:295;;;;;;:::i;:::-;;:::i;7716:93::-;;;7799:2;8683:36:1;;8671:2;8656:18;7716:93:0;8638:87:1;10590:238:0;;;;;;:::i;:::-;;:::i;21472:301::-;;;;;;:::i;:::-;;:::i;:::-;;21329:135;;;;;;:::i;:::-;;:::i;22196:81::-;;;;;;:::i;:::-;;:::i;20847:28::-;;;;;-1:-1:-1;;;;;20847:28:0;;;;;;-1:-1:-1;;;;;2479:32:1;;;2461:51;;2449:2;2434:18;20847:28:0;2416:102:1;8045:127:0;;;;;;:::i;:::-;;:::i;19821:103::-;;;:::i;20745:19::-;;;;;;;;;20771:31;;;;;;19173:87;19219:7;19246:6;-1:-1:-1;;;;;19246:6:0;19173:87;;6973:104;;;:::i;11331:436::-;;;;;;:::i;:::-;;:::i;8378:193::-;;;;;;:::i;:::-;;:::i;8634:151::-;;;;;;:::i;:::-;;:::i;20079:201::-;;;;;;:::i;:::-;;:::i;6754:100::-;6808:13;6841:5;6834:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6754:100;:::o;9105:201::-;9188:4;4480:10;9244:32;4480:10;9260:7;9269:6;9244:8;:32::i;:::-;-1:-1:-1;9294:4:0;;9105:201;-1:-1:-1;;;9105:201:0:o;9886:295::-;10017:4;4480:10;10075:38;10091:4;4480:10;10106:6;10075:15;:38::i;:::-;10124:27;10134:4;10140:2;10144:6;10124:9;:27::i;:::-;-1:-1:-1;10169:4:0;;9886:295;-1:-1:-1;;;;9886:295:0:o;10590:238::-;10678:4;4480:10;10734:64;4480:10;10750:7;10787:10;10759:25;4480:10;10750:7;10759:9;:25::i;:::-;:38;;;;:::i;:::-;10734:8;:64::i;21472:301::-;19059:13;:11;:13::i;:::-;21612:7:::1;:18:::0;;-1:-1:-1;;21612:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;21641:13:::1;:30:::0;;-1:-1:-1;;;;;;21641:30:0::1;-1:-1:-1::0;;;;;21641:30:0;;;::::1;::::0;;;::::1;::::0;;;21682:16:::1;:36:::0;21729:16:::1;:36:::0;21472:301::o;21329:135::-;19059:13;:11;:13::i;:::-;-1:-1:-1;;;;;21418:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;21418:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21329:135::o;22196:81::-;22245:24;22251:10;22263:5;22245;:24::i;:::-;22196:81;:::o;8045:127::-;-1:-1:-1;;;;;8146:18:0;8119:7;8146:18;;;:9;:18;;;;;;;8045:127::o;19821:103::-;19059:13;:11;:13::i;:::-;19886:30:::1;19913:1;19886:18;:30::i;:::-;19821:103::o:0;6973:104::-;7029:13;7062:7;7055:14;;;;;:::i;11331:436::-;11424:4;4480:10;11424:4;11507:25;4480:10;11524:7;11507:9;:25::i;:::-;11480:52;;11571:15;11551:16;:35;;11543:85;;;;-1:-1:-1;;;11543:85:0;;7815:2:1;11543:85:0;;;7797:21:1;7854:2;7834:18;;;7827:30;7893:34;7873:18;;;7866:62;-1:-1:-1;;;7944:18:1;;;7937:35;7989:19;;11543:85:0;;;;;;;;;11664:60;11673:5;11680:7;11708:15;11689:16;:34;11664:8;:60::i;8378:193::-;8457:4;4480:10;8513:28;4480:10;8530:2;8534:6;8513:9;:28::i;8634:151::-;-1:-1:-1;;;;;8750:18:0;;;8723:7;8750:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8634:151::o;20079:201::-;19059:13;:11;:13::i;:::-;-1:-1:-1;;;;;20168:22:0;::::1;20160:73;;;::::0;-1:-1:-1;;;20160:73:0;;4332:2:1;20160:73:0::1;::::0;::::1;4314:21:1::0;4371:2;4351:18;;;4344:30;4410:34;4390:18;;;4383:62;-1:-1:-1;;;4461:18:1;;;4454:36;4507:19;;20160:73:0::1;4304:228:1::0;20160:73:0::1;20244:28;20263:8;20244:18;:28::i;15358:380::-:0;-1:-1:-1;;;;;15494:19:0;;15486:68;;;;-1:-1:-1;;;15486:68:0;;7410:2:1;15486:68:0;;;7392:21:1;7449:2;7429:18;;;7422:30;7488:34;7468:18;;;7461:62;-1:-1:-1;;;7539:18:1;;;7532:34;7583:19;;15486:68:0;7382:226:1;15486:68:0;-1:-1:-1;;;;;15573:21:0;;15565:68;;;;-1:-1:-1;;;15565:68:0;;4739:2:1;15565:68:0;;;4721:21:1;4778:2;4758:18;;;4751:30;4817:34;4797:18;;;4790:62;-1:-1:-1;;;4868:18:1;;;4861:32;4910:19;;15565:68:0;4711:224:1;15565:68:0;-1:-1:-1;;;;;15646:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15698:32;;8505:25:1;;;15698:32:0;;8478:18:1;15698:32:0;;;;;;;;15358:380;;;:::o;16029:453::-;16164:24;16191:25;16201:5;16208:7;16191:9;:25::i;:::-;16164:52;;-1:-1:-1;;16231:16:0;:37;16227:248;;16313:6;16293:16;:26;;16285:68;;;;-1:-1:-1;;;16285:68:0;;5142:2:1;16285:68:0;;;5124:21:1;5181:2;5161:18;;;5154:30;5220:31;5200:18;;;5193:59;5269:18;;16285:68:0;5114:179:1;16285:68:0;16397:51;16406:5;16413:7;16441:6;16422:16;:25;16397:8;:51::i;:::-;16029:453;;;;:::o;12237:840::-;-1:-1:-1;;;;;12368:18:0;;12360:68;;;;-1:-1:-1;;;12360:68:0;;7004:2:1;12360:68:0;;;6986:21:1;7043:2;7023:18;;;7016:30;7082:34;7062:18;;;7055:62;-1:-1:-1;;;7133:18:1;;;7126:35;7178:19;;12360:68:0;6976:227:1;12360:68:0;-1:-1:-1;;;;;12447:16:0;;12439:64;;;;-1:-1:-1;;;12439:64:0;;3525:2:1;12439:64:0;;;3507:21:1;3564:2;3544:18;;;3537:30;3603:34;3583:18;;;3576:62;-1:-1:-1;;;3654:18:1;;;3647:33;3697:19;;12439:64:0;3497:225:1;12439:64:0;12516:38;12537:4;12543:2;12547:6;12516:20;:38::i;:::-;-1:-1:-1;;;;;12589:15:0;;12567:19;12589:15;;;:9;:15;;;;;;12623:21;;;;12615:72;;;;-1:-1:-1;;;12615:72:0;;5500:2:1;12615:72:0;;;5482:21:1;5539:2;5519:18;;;5512:30;5578:34;5558:18;;;5551:62;-1:-1:-1;;;5629:18:1;;;5622:36;5675:19;;12615:72:0;5472:228:1;12615:72:0;-1:-1:-1;;;;;12723:15:0;;;;;;;:9;:15;;;;;;12741:20;;;12723:38;;12941:13;;;;;;;;;;:23;;;;;;12993:26;;;;;;12755:6;8505:25:1;;8493:2;8478:18;;8460:76;12993:26:0;;;;;;;;13032:37;14245:675;19338:132;19219:7;19246:6;-1:-1:-1;;;;;19246:6:0;4480:10;19402:23;19394:68;;;;-1:-1:-1;;;19394:68:0;;6241:2:1;19394:68:0;;;6223:21:1;;;6260:18;;;6253:30;6319:34;6299:18;;;6292:62;6371:18;;19394:68:0;6213:182:1;14245:675:0;-1:-1:-1;;;;;14329:21:0;;14321:67;;;;-1:-1:-1;;;14321:67:0;;6602:2:1;14321:67:0;;;6584:21:1;6641:2;6621:18;;;6614:30;6680:34;6660:18;;;6653:62;-1:-1:-1;;;6731:18:1;;;6724:31;6772:19;;14321:67:0;6574:223:1;14321:67:0;14401:49;14422:7;14439:1;14443:6;14401:20;:49::i;:::-;-1:-1:-1;;;;;14488:18:0;;14463:22;14488:18;;;:9;:18;;;;;;14525:24;;;;14517:71;;;;-1:-1:-1;;;14517:71:0;;3929:2:1;14517:71:0;;;3911:21:1;3968:2;3948:18;;;3941:30;4007:34;3987:18;;;3980:62;-1:-1:-1;;;4058:18:1;;;4051:32;4100:19;;14517:71:0;3901:224:1;14517:71:0;-1:-1:-1;;;;;14624:18:0;;;;;;:9;:18;;;;;;;;14645:23;;;14624:44;;14763:12;:22;;;;;;;14814:37;8505:25:1;;;14624:18:0;;;14814:37;;8478:18:1;14814:37:0;8460:76:1;14864:48:0;14245:675;;;:::o;20440:191::-;20514:16;20533:6;;-1:-1:-1;;;;;20550:17:0;;;-1:-1:-1;;;;;;20550:17:0;;;;;;20583:40;;20533:6;;;;;;;20583:40;;20514:16;20583:40;20440:191;;:::o;21781:407::-;-1:-1:-1;;;;;21933:14:0;;;;;;:10;:14;;;;;;;;21932:15;:36;;;;-1:-1:-1;;;;;;21952:16:0;;;;;;:10;:16;;;;;;;;21951:17;21932:36;21924:60;;;;-1:-1:-1;;;21924:60:0;;8221:2:1;21924:60:0;;;8203:21:1;8260:2;8240:18;;;8233:30;-1:-1:-1;;;8279:18:1;;;8272:41;8330:18;;21924:60:0;8193:161:1;21924:60:0;22001:7;;;;:32;;;;-1:-1:-1;22020:13:0;;-1:-1:-1;;;;;22012:21:0;;;22020:13;;22012:21;22001:32;21997:184;;;22090:16;;22080:6;22058:19;22074:2;22058:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;22142:16;;22132:6;22110:19;22126:2;22110:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;22058:100;22050:119;;;;-1:-1:-1;;;22050:119:0;;5907:2:1;22050:119:0;;;5889:21:1;5946:1;5926:18;;;5919:29;-1:-1:-1;;;5964:18:1;;;5957:36;6010:18;;22050:119:0;5879:155:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:2;;342:1;339;332:12;357:196;416:6;469:2;457:9;448:7;444:23;440:32;437:2;;;490:6;482;475:22;437:2;518:29;537:9;518:29;:::i;:::-;508:39;427:126;-1:-1:-1;;;427:126:1:o;558:270::-;626:6;634;687:2;675:9;666:7;662:23;658:32;655:2;;;708:6;700;693:22;655:2;736:29;755:9;736:29;:::i;:::-;726:39;;784:38;818:2;807:9;803:18;784:38;:::i;:::-;774:48;;645:183;;;;;:::o;833:338::-;910:6;918;926;979:2;967:9;958:7;954:23;950:32;947:2;;;1000:6;992;985:22;947:2;1028:29;1047:9;1028:29;:::i;:::-;1018:39;;1076:38;1110:2;1099:9;1095:18;1076:38;:::i;:::-;1066:48;;1161:2;1150:9;1146:18;1133:32;1123:42;;937:234;;;;;:::o;1176:264::-;1241:6;1249;1302:2;1290:9;1281:7;1277:23;1273:32;1270:2;;;1323:6;1315;1308:22;1270:2;1351:29;1370:9;1351:29;:::i;:::-;1341:39;;1399:35;1430:2;1419:9;1415:18;1399:35;:::i;1445:264::-;1513:6;1521;1574:2;1562:9;1553:7;1549:23;1545:32;1542:2;;;1595:6;1587;1580:22;1542:2;1623:29;1642:9;1623:29;:::i;:::-;1613:39;1699:2;1684:18;;;;1671:32;;-1:-1:-1;;;1532:177:1:o;1714:401::-;1797:6;1805;1813;1821;1874:3;1862:9;1853:7;1849:23;1845:33;1842:2;;;1896:6;1888;1881:22;1842:2;1924:26;1940:9;1924:26;:::i;:::-;1914:36;;1969:38;2003:2;1992:9;1988:18;1969:38;:::i;:::-;1832:283;;1959:48;;-1:-1:-1;;;;2054:2:1;2039:18;;2026:32;;2105:2;2090:18;2077:32;;1832:283::o;2120:190::-;2179:6;2232:2;2220:9;2211:7;2207:23;2203:32;2200:2;;;2253:6;2245;2238:22;2200:2;-1:-1:-1;2281:23:1;;2190:120;-1:-1:-1;2190:120:1:o;2715:603::-;2827:4;2856:2;2885;2874:9;2867:21;2917:6;2911:13;2960:6;2955:2;2944:9;2940:18;2933:34;2985:4;2998:140;3012:6;3009:1;3006:13;2998:140;;;3107:14;;;3103:23;;3097:30;3073:17;;;3092:2;3069:26;3062:66;3027:10;;2998:140;;;3156:6;3153:1;3150:13;3147:2;;;3226:4;3221:2;3212:6;3201:9;3197:22;3193:31;3186:45;3147:2;-1:-1:-1;3302:2:1;3281:15;-1:-1:-1;;3277:29:1;3262:45;;;;3309:2;3258:54;;2836:482;-1:-1:-1;;;2836:482:1:o;8730:229::-;8770:3;8801:1;8797:6;8794:1;8791:13;8788:2;;;-1:-1:-1;;;8827:33:1;;8883:4;8880:1;8873:15;8913:4;8834:3;8901:17;8788:2;-1:-1:-1;8944:9:1;;8778:181::o;8964:380::-;9043:1;9039:12;;;;9086;;;9107:2;;9161:4;9153:6;9149:17;9139:27;;9107:2;9214;9206:6;9203:14;9183:18;9180:38;9177:2;;;9260:10;9255:3;9251:20;9248:1;9241:31;9295:4;9292:1;9285:15;9323:4;9320:1;9313:15;9177:2;;9019:325;;;:::o
Swarm Source
ipfs://959ab428d6705591a3452f1ab838f32235181da718734a3984bc4a000d7d9ee0
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.