Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Blacklist | 17245121 | 873 days ago | IN | 0 ETH | 0.00314575 | ||||
Blacklist | 17245120 | 873 days ago | IN | 0 ETH | 0.00311418 | ||||
Blacklist | 17245119 | 873 days ago | IN | 0 ETH | 0.00306776 | ||||
Approve | 17245099 | 873 days ago | IN | 0 ETH | 0.00348572 | ||||
Blacklist | 17245095 | 873 days ago | IN | 0 ETH | 0.00313832 | ||||
Approve | 17245083 | 873 days ago | IN | 0 ETH | 0.00330165 | ||||
Approve | 17244584 | 873 days ago | IN | 0 ETH | 0.0034587 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Meow
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-12 */ /** *Submitted for verification at Etherscan.io on 2023-05-07 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) 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); } } pragma solidity ^0.8.0; contract Meow 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("MEOW", "MEOW") { _mint(_lpWallet, _totalSupply * 10**18 * 940 / 1000); // 94% for LP _mint(_airdropWallet, _totalSupply * 10**18 * 10 / 1000); // 1% for airdrop _mint(_ecoWallet, _totalSupply * 10**18 * 50 / 1000); // 5% 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
Contract ABI
API[{"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
60806040523480156200001157600080fd5b506040516200156c3803806200156c833981016040819052620000349162000448565b604051806040016040528060048152602001634d454f5760e01b815250604051806040016040528060048152602001634d454f5760e01b81525062000088620000826200015060201b60201c565b62000154565b81516200009d9060049060208501906200038a565b508051620000b39060059060208401906200038a565b505050620000f4836103e886670de0b6b3a7640000620000d491906200055c565b620000e2906103ac6200055c565b620000ee91906200053b565b620001a4565b6200011d816103e86200011087670de0b6b3a76400006200055c565b620000e290600a6200055c565b62000146826103e86200013987670de0b6b3a76400006200055c565b620000e29060326200055c565b50505050620005d1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001d65760405162461bcd60e51b8152600401620001cd90620004bb565b60405180910390fd5b620001e46000838362000266565b8060036000828254620001f8919062000520565b90915550506001600160a01b038216600081815260016020526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200024c90859062000517565b60405180910390a3620002626000838362000366565b5050565b6001600160a01b0382166000908152600a602052604090205460ff16158015620002a957506001600160a01b0383166000908152600a602052604090205460ff16155b620002c85760405162461bcd60e51b8152600401620001cd90620004f2565b60065460ff168015620002e857506009546001600160a01b038481169116145b1562000366576007548162000308846200036b60201b6200048d1760201c565b62000314919062000520565b111580156200034757506008548162000338846200036b60201b6200048d1760201c565b62000344919062000520565b10155b620003665760405162461bcd60e51b8152600401620001cd906200049b565b505050565b6001600160a01b0381166000908152600160205260409020545b919050565b82805462000398906200057e565b90600052602060002090601f016020900481019282620003bc576000855562000407565b82601f10620003d757805160ff191683800117855562000407565b8280016001018555821562000407579182015b8281111562000407578251825591602001919060010190620003ea565b506200041592915062000419565b5090565b5b808211156200041557600081556001016200041a565b80516001600160a01b03811681146200038557600080fd5b600080600080608085870312156200045e578384fd5b84519350620004706020860162000430565b9250620004806040860162000430565b9150620004906060860162000430565b905092959194509250565b602080825260069082015265119bdc989a5960d21b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60008219821115620005365762000536620005bb565b500190565b6000826200055757634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615620005795762000579620005bb565b500290565b6002810460018216806200059357607f821691505b60208210811415620005b557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610f8b80620005e16000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461026b57806395d89b4114610273578063a457c2d71461027b578063a9059cbb1461028e578063dd62ed3e146102a1578063f2fde38b146102b457610142565b806349bd5a5e1461022b57806370a0823114610240578063715018a614610253578063860a32ec1461025b57806389f9a1d31461026357610142565b806323b872dd1161010a57806323b872dd146101b5578063313ce567146101c857806339509351146101dd5780633aa633aa146101f0578063404e51291461020557806342966c681461021857610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461018557806318160ddd146101985780631ab99e12146101ad575b600080fd5b61014f6102c7565b60405161015c9190610b79565b60405180910390f35b610178610173366004610ad8565b610359565b60405161015c9190610b6e565b610178610193366004610a21565b61037b565b6101a0610390565b60405161015c9190610edf565b6101a0610396565b6101786101c3366004610a74565b61039c565b6101d06103ca565b60405161015c9190610ee8565b6101786101eb366004610ad8565b6103cf565b6102036101fe366004610b01565b6103fb565b005b610203610213366004610aaf565b61043e565b610203610226366004610b42565b610471565b61023361047e565b60405161015c9190610b5a565b6101a061024e366004610a21565b61048d565b6102036104ac565b6101786104c0565b6101a06104c9565b6102336104cf565b61014f6104de565b610178610289366004610ad8565b6104ed565b61017861029c366004610ad8565b61053e565b6101a06102af366004610a42565b610556565b6102036102c2366004610a21565b610581565b6060600480546102d690610f1a565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610f1a565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b6000806103646105b8565b90506103718185856105bc565b5060019392505050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b6000806103a76105b8565b90506103b4858285610670565b6103bf8585856106ba565b506001949350505050565b601290565b6000806103da6105b8565b90506103718185856103ec8589610556565b6103f69190610ef6565b6105bc565b6104036107bb565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6104466107bb565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61047b33826107fa565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6104b46107bb565b6104be60006108d2565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b6060600580546102d690610f1a565b6000806104f86105b8565b905060006105068286610556565b9050838110156105315760405162461bcd60e51b815260040161052890610e75565b60405180910390fd5b6103bf82868684036105bc565b6000806105496105b8565b90506103718185856106ba565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105896107bb565b6001600160a01b0381166105af5760405162461bcd60e51b815260040161052890610c51565b61047b816108d2565b3390565b6001600160a01b0383166105e25760405162461bcd60e51b815260040161052890610e31565b6001600160a01b0382166106085760405162461bcd60e51b815260040161052890610c97565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610663908590610edf565b60405180910390a3505050565b600061067c8484610556565b905060001981146106b457818110156106a75760405162461bcd60e51b815260040161052890610cd9565b6106b484848484036105bc565b50505050565b6001600160a01b0383166106e05760405162461bcd60e51b815260040161052890610dec565b6001600160a01b0382166107065760405162461bcd60e51b815260040161052890610bcc565b610711838383610922565b6001600160a01b0383166000908152600160205260409020548181101561074a5760405162461bcd60e51b815260040161052890610d10565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107a8908690610edf565b60405180910390a36106b48484846108cd565b6107c36105b8565b6001600160a01b03166107d46104cf565b6001600160a01b0316146104be5760405162461bcd60e51b815260040161052890610d76565b6001600160a01b0382166108205760405162461bcd60e51b815260040161052890610dab565b61082c82600083610922565b6001600160a01b038216600090815260016020526040902054818110156108655760405162461bcd60e51b815260040161052890610c0f565b6001600160a01b0383166000818152600160205260408082208585039055600380548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108bd908690610edf565b60405180910390a36108cd836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff1615801561096457506001600160a01b0383166000908152600a602052604090205460ff16155b6109805760405162461bcd60e51b815260040161052890610eba565b60065460ff16801561099f57506009546001600160a01b038481169116145b156108cd57600754816109b18461048d565b6109bb9190610ef6565b111580156109de5750600854816109d18461048d565b6109db9190610ef6565b10155b6108cd5760405162461bcd60e51b815260040161052890610d56565b80356001600160a01b03811681146104a757600080fd5b803580151581146104a757600080fd5b600060208284031215610a32578081fd5b610a3b826109fa565b9392505050565b60008060408385031215610a54578081fd5b610a5d836109fa565b9150610a6b602084016109fa565b90509250929050565b600080600060608486031215610a88578081fd5b610a91846109fa565b9250610a9f602085016109fa565b9150604084013590509250925092565b60008060408385031215610ac1578182fd5b610aca836109fa565b9150610a6b60208401610a11565b60008060408385031215610aea578182fd5b610af3836109fa565b946020939093013593505050565b60008060008060808587031215610b16578081fd5b610b1f85610a11565b9350610b2d602086016109fa565b93969395505050506040820135916060013590565b600060208284031215610b53578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ba557858101830151858201604001528201610b89565b81811115610bb65783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610f1557634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610f2e57607f821691505b60208210811415610f4f57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220d0805d645662a196859fc397191d6573581b8c3fbd8cdb7094d8fa4ca1b84d3e64736f6c6343000800003300000000000000000000000000000000000000000000000000003f63971ee6c900000000000000000000000092e0cd486a2d9d2525581bcfd22e82ad08ca1bfa000000000000000000000000a41361d7ea546d54fedf5de60420a21572e0e4ea0000000000000000000000003a68c5343b0cbebdf10d18834ab6b0d28d8ed546
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461026b57806395d89b4114610273578063a457c2d71461027b578063a9059cbb1461028e578063dd62ed3e146102a1578063f2fde38b146102b457610142565b806349bd5a5e1461022b57806370a0823114610240578063715018a614610253578063860a32ec1461025b57806389f9a1d31461026357610142565b806323b872dd1161010a57806323b872dd146101b5578063313ce567146101c857806339509351146101dd5780633aa633aa146101f0578063404e51291461020557806342966c681461021857610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461018557806318160ddd146101985780631ab99e12146101ad575b600080fd5b61014f6102c7565b60405161015c9190610b79565b60405180910390f35b610178610173366004610ad8565b610359565b60405161015c9190610b6e565b610178610193366004610a21565b61037b565b6101a0610390565b60405161015c9190610edf565b6101a0610396565b6101786101c3366004610a74565b61039c565b6101d06103ca565b60405161015c9190610ee8565b6101786101eb366004610ad8565b6103cf565b6102036101fe366004610b01565b6103fb565b005b610203610213366004610aaf565b61043e565b610203610226366004610b42565b610471565b61023361047e565b60405161015c9190610b5a565b6101a061024e366004610a21565b61048d565b6102036104ac565b6101786104c0565b6101a06104c9565b6102336104cf565b61014f6104de565b610178610289366004610ad8565b6104ed565b61017861029c366004610ad8565b61053e565b6101a06102af366004610a42565b610556565b6102036102c2366004610a21565b610581565b6060600480546102d690610f1a565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610f1a565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b6000806103646105b8565b90506103718185856105bc565b5060019392505050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b6000806103a76105b8565b90506103b4858285610670565b6103bf8585856106ba565b506001949350505050565b601290565b6000806103da6105b8565b90506103718185856103ec8589610556565b6103f69190610ef6565b6105bc565b6104036107bb565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6104466107bb565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61047b33826107fa565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6104b46107bb565b6104be60006108d2565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b6060600580546102d690610f1a565b6000806104f86105b8565b905060006105068286610556565b9050838110156105315760405162461bcd60e51b815260040161052890610e75565b60405180910390fd5b6103bf82868684036105bc565b6000806105496105b8565b90506103718185856106ba565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105896107bb565b6001600160a01b0381166105af5760405162461bcd60e51b815260040161052890610c51565b61047b816108d2565b3390565b6001600160a01b0383166105e25760405162461bcd60e51b815260040161052890610e31565b6001600160a01b0382166106085760405162461bcd60e51b815260040161052890610c97565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610663908590610edf565b60405180910390a3505050565b600061067c8484610556565b905060001981146106b457818110156106a75760405162461bcd60e51b815260040161052890610cd9565b6106b484848484036105bc565b50505050565b6001600160a01b0383166106e05760405162461bcd60e51b815260040161052890610dec565b6001600160a01b0382166107065760405162461bcd60e51b815260040161052890610bcc565b610711838383610922565b6001600160a01b0383166000908152600160205260409020548181101561074a5760405162461bcd60e51b815260040161052890610d10565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107a8908690610edf565b60405180910390a36106b48484846108cd565b6107c36105b8565b6001600160a01b03166107d46104cf565b6001600160a01b0316146104be5760405162461bcd60e51b815260040161052890610d76565b6001600160a01b0382166108205760405162461bcd60e51b815260040161052890610dab565b61082c82600083610922565b6001600160a01b038216600090815260016020526040902054818110156108655760405162461bcd60e51b815260040161052890610c0f565b6001600160a01b0383166000818152600160205260408082208585039055600380548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108bd908690610edf565b60405180910390a36108cd836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff1615801561096457506001600160a01b0383166000908152600a602052604090205460ff16155b6109805760405162461bcd60e51b815260040161052890610eba565b60065460ff16801561099f57506009546001600160a01b038481169116145b156108cd57600754816109b18461048d565b6109bb9190610ef6565b111580156109de5750600854816109d18461048d565b6109db9190610ef6565b10155b6108cd5760405162461bcd60e51b815260040161052890610d56565b80356001600160a01b03811681146104a757600080fd5b803580151581146104a757600080fd5b600060208284031215610a32578081fd5b610a3b826109fa565b9392505050565b60008060408385031215610a54578081fd5b610a5d836109fa565b9150610a6b602084016109fa565b90509250929050565b600080600060608486031215610a88578081fd5b610a91846109fa565b9250610a9f602085016109fa565b9150604084013590509250925092565b60008060408385031215610ac1578182fd5b610aca836109fa565b9150610a6b60208401610a11565b60008060408385031215610aea578182fd5b610af3836109fa565b946020939093013593505050565b60008060008060808587031215610b16578081fd5b610b1f85610a11565b9350610b2d602086016109fa565b93969395505050506040820135916060013590565b600060208284031215610b53578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ba557858101830151858201604001528201610b89565b81811115610bb65783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610f1557634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610f2e57607f821691505b60208210811415610f4f57634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220d0805d645662a196859fc397191d6573581b8c3fbd8cdb7094d8fa4ca1b84d3e64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000003f63971ee6c900000000000000000000000092e0cd486a2d9d2525581bcfd22e82ad08ca1bfa000000000000000000000000a41361d7ea546d54fedf5de60420a21572e0e4ea0000000000000000000000003a68c5343b0cbebdf10d18834ab6b0d28d8ed546
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 69696969696969
Arg [1] : _lpWallet (address): 0x92E0cD486A2D9D2525581bcFD22E82AD08Ca1bfa
Arg [2] : _ecoWallet (address): 0xa41361d7eA546D54fedf5De60420a21572e0e4ea
Arg [3] : _airdropWallet (address): 0x3A68C5343B0CBebdf10D18834AB6B0d28D8eD546
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000003f63971ee6c9
Arg [1] : 00000000000000000000000092e0cd486a2d9d2525581bcfd22e82ad08ca1bfa
Arg [2] : 000000000000000000000000a41361d7ea546d54fedf5de60420a21572e0e4ea
Arg [3] : 0000000000000000000000003a68c5343b0cbebdf10d18834ab6b0d28d8ed546
Deployed Bytecode Sourcemap
20660:1570:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6743:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9094:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20836:42::-;;;;;;:::i;:::-;;:::i;7863:108::-;;;:::i;:::-;;;;;;;:::i;20763:31::-;;;:::i;9875:295::-;;;;;;:::i;:::-;;:::i;7705:93::-;;;:::i;:::-;;;;;;;:::i;10579:238::-;;;;;;:::i;:::-;;:::i;21422:301::-;;;;;;:::i;:::-;;:::i;:::-;;21279:135;;;;;;:::i;:::-;;:::i;22146:81::-;;;;;;:::i;:::-;;:::i;20801:28::-;;;:::i;:::-;;;;;;;:::i;8034:127::-;;;;;;:::i;:::-;;:::i;19810:103::-;;;:::i;20699:19::-;;;:::i;20725:31::-;;;:::i;19162:87::-;;;:::i;6962:104::-;;;:::i;11320:436::-;;;;;;:::i;:::-;;:::i;8367:193::-;;;;;;:::i;:::-;;:::i;8623:151::-;;;;;;:::i;:::-;;:::i;20068:201::-;;;;;;:::i;:::-;;:::i;6743:100::-;6797:13;6830:5;6823:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6743:100;:::o;9094:201::-;9177:4;9194:13;9210:12;:10;:12::i;:::-;9194:28;;9233:32;9242:5;9249:7;9258:6;9233:8;:32::i;:::-;-1:-1:-1;9283:4:0;;9094:201;-1:-1:-1;;;9094:201:0:o;20836:42::-;;;;;;;;;;;;;;;:::o;7863:108::-;7951:12;;7863:108;:::o;20763:31::-;;;;:::o;9875:295::-;10006:4;10023:15;10041:12;:10;:12::i;:::-;10023:30;;10064:38;10080:4;10086:7;10095:6;10064:15;:38::i;:::-;10113:27;10123:4;10129:2;10133:6;10113:9;:27::i;:::-;-1:-1:-1;10158:4:0;;9875:295;-1:-1:-1;;;;9875:295:0:o;7705:93::-;7788:2;7705:93;:::o;10579:238::-;10667:4;10684:13;10700:12;:10;:12::i;:::-;10684:28;;10723:64;10732:5;10739:7;10776:10;10748:25;10758:5;10765:7;10748:9;:25::i;:::-;:38;;;;:::i;:::-;10723:8;:64::i;21422:301::-;19048:13;:11;:13::i;:::-;21562:7:::1;:18:::0;;-1:-1:-1;;21562:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;21591:13:::1;:30:::0;;-1:-1:-1;;;;;;21591:30:0::1;-1:-1:-1::0;;;;;21591:30:0;;;::::1;::::0;;;::::1;::::0;;;21632:16:::1;:36:::0;21679:16:::1;:36:::0;21422:301::o;21279:135::-;19048:13;:11;:13::i;:::-;-1:-1:-1;;;;;21368:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;21368:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21279:135::o;22146:81::-;22195:24;22201:10;22213:5;22195;:24::i;:::-;22146:81;:::o;20801:28::-;;;-1:-1:-1;;;;;20801:28:0;;:::o;8034:127::-;-1:-1:-1;;;;;8135:18:0;;8108:7;8135:18;;;:9;:18;;;;;;8034:127;;;;:::o;19810:103::-;19048:13;:11;:13::i;:::-;19875:30:::1;19902:1;19875:18;:30::i;:::-;19810:103::o:0;20699:19::-;;;;;;:::o;20725:31::-;;;;:::o;19162:87::-;19208:7;19235:6;-1:-1:-1;;;;;19235:6:0;19162:87;:::o;6962:104::-;7018:13;7051:7;7044:14;;;;;:::i;11320:436::-;11413:4;11430:13;11446:12;:10;:12::i;:::-;11430:28;;11469:24;11496:25;11506:5;11513:7;11496:9;:25::i;:::-;11469:52;;11560:15;11540:16;:35;;11532:85;;;;-1:-1:-1;;;11532:85:0;;;;;;;:::i;:::-;;;;;;;;;11653:60;11662:5;11669:7;11697:15;11678:16;:34;11653:8;:60::i;8367:193::-;8446:4;8463:13;8479:12;:10;:12::i;:::-;8463:28;;8502;8512:5;8519:2;8523:6;8502:9;:28::i;8623:151::-;-1:-1:-1;;;;;8739:18:0;;;8712:7;8739:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8623:151::o;20068:201::-;19048:13;:11;:13::i;:::-;-1:-1:-1;;;;;20157:22:0;::::1;20149:73;;;;-1:-1:-1::0;;;20149:73:0::1;;;;;;;:::i;:::-;20233:28;20252:8;20233:18;:28::i;4389:98::-:0;4469:10;4389:98;:::o;15347:380::-;-1:-1:-1;;;;;15483:19:0;;15475:68;;;;-1:-1:-1;;;15475:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15562:21:0;;15554:68;;;;-1:-1:-1;;;15554:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15635:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15687:32;;;;;15665:6;;15687:32;:::i;:::-;;;;;;;;15347:380;;;:::o;16018:453::-;16153:24;16180:25;16190:5;16197:7;16180:9;:25::i;:::-;16153:52;;-1:-1:-1;;16220:16:0;:37;16216:248;;16302:6;16282:16;:26;;16274:68;;;;-1:-1:-1;;;16274:68:0;;;;;;;:::i;:::-;16386:51;16395:5;16402:7;16430:6;16411:16;:25;16386:8;:51::i;:::-;16018:453;;;;:::o;12226:840::-;-1:-1:-1;;;;;12357:18:0;;12349:68;;;;-1:-1:-1;;;12349:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12436:16:0;;12428:64;;;;-1:-1:-1;;;12428:64:0;;;;;;;:::i;:::-;12505:38;12526:4;12532:2;12536:6;12505:20;:38::i;:::-;-1:-1:-1;;;;;12578:15:0;;12556:19;12578:15;;;:9;:15;;;;;;12612:21;;;;12604:72;;;;-1:-1:-1;;;12604:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12712:15:0;;;;;;;:9;:15;;;;;;12730:20;;;12712:38;;12930:13;;;;;;;;;;:23;;;;;;12982:26;;;;;;12744:6;;12982:26;:::i;:::-;;;;;;;;13021:37;13041:4;13047:2;13051:6;13021:19;:37::i;19327:132::-;19402:12;:10;:12::i;:::-;-1:-1:-1;;;;;19391:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;19391:23:0;;19383:68;;;;-1:-1:-1;;;19383:68:0;;;;;;;:::i;14234:675::-;-1:-1:-1;;;;;14318:21:0;;14310:67;;;;-1:-1:-1;;;14310:67:0;;;;;;;:::i;:::-;14390:49;14411:7;14428:1;14432:6;14390:20;:49::i;:::-;-1:-1:-1;;;;;14477:18:0;;14452:22;14477:18;;;:9;:18;;;;;;14514:24;;;;14506:71;;;;-1:-1:-1;;;14506:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14613:18:0;;;;;;:9;:18;;;;;;14634:23;;;14613:44;;14752:12;:22;;;;;;;14803:37;14613:18;;;14803:37;;;;14651:6;;14803:37;:::i;:::-;;;;;;;;14853:48;14873:7;14890:1;14894:6;14853:48;14234:675;;;:::o;20429:191::-;20503:16;20522:6;;-1:-1:-1;;;;;20539:17:0;;;-1:-1:-1;;;;;;20539:17:0;;;;;;20572:40;;20522:6;;;;;;;20572:40;;20503:16;20572:40;20429:191;;:::o;21731:407::-;-1:-1:-1;;;;;21883:14:0;;;;;;:10;:14;;;;;;;;21882:15;:36;;;;-1:-1:-1;;;;;;21902:16:0;;;;;;:10;:16;;;;;;;;21901:17;21882:36;21874:60;;;;-1:-1:-1;;;21874:60:0;;;;;;;:::i;:::-;21951:7;;;;:32;;;;-1:-1:-1;21970:13:0;;-1:-1:-1;;;;;21962:21:0;;;21970:13;;21962:21;21951:32;21947:184;;;22040:16;;22030:6;22008:19;22024:2;22008:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;22092:16;;22082:6;22060:19;22076:2;22060:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;22008:100;22000:119;;;;-1:-1:-1;;;22000:119:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;:::-;512:41;431:128;-1:-1:-1;;;431:128:1:o;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:268::-;;;1316:2;1304:9;1295:7;1291:23;1287:32;1284:2;;;1337:6;1329;1322:22;1284:2;1365:31;1386:9;1365:31;:::i;:::-;1355:41;;1415:37;1448:2;1437:9;1433:18;1415:37;:::i;1463:266::-;;;1592:2;1580:9;1571:7;1567:23;1563:32;1560:2;;;1613:6;1605;1598:22;1560:2;1641:31;1662:9;1641:31;:::i;:::-;1631:41;1719:2;1704:18;;;;1691:32;;-1:-1:-1;;;1550:179:1:o;1734:405::-;;;;;1894:3;1882:9;1873:7;1869:23;1865:33;1862:2;;;1916:6;1908;1901:22;1862:2;1944:28;1962:9;1944:28;:::i;:::-;1934:38;;1991:40;2027:2;2016:9;2012:18;1991:40;:::i;:::-;1852:287;;1981:50;;-1:-1:-1;;;;2078:2:1;2063:18;;2050:32;;2129:2;2114:18;2101:32;;1852:287::o;2144:190::-;;2256:2;2244:9;2235:7;2231:23;2227:32;2224:2;;;2277:6;2269;2262:22;2224:2;-1:-1:-1;2305:23:1;;2214:120;-1:-1:-1;2214:120:1:o;2339:203::-;-1:-1:-1;;;;;2503:32:1;;;;2485:51;;2473:2;2458:18;;2440:102::o;2547:187::-;2712:14;;2705:22;2687:41;;2675:2;2660:18;;2642:92::o;2739:603::-;;2880:2;2909;2898:9;2891:21;2941:6;2935:13;2984:6;2979:2;2968:9;2964:18;2957:34;3009:4;3022:140;3036:6;3033:1;3030:13;3022:140;;;3131:14;;;3127:23;;3121:30;3097:17;;;3116:2;3093:26;3086:66;3051:10;;3022:140;;;3180:6;3177:1;3174:13;3171:2;;;3250:4;3245:2;3236:6;3225:9;3221:22;3217:31;3210:45;3171:2;-1:-1:-1;3326:2:1;3305:15;-1:-1:-1;;3301:29:1;3286:45;;;;3333:2;3282:54;;2860:482;-1:-1:-1;;;2860:482:1:o;3347:399::-;3549:2;3531:21;;;3588:2;3568:18;;;3561:30;3627:34;3622:2;3607:18;;3600:62;-1:-1:-1;;;3693:2:1;3678:18;;3671:33;3736:3;3721:19;;3521:225::o;3751:398::-;3953:2;3935:21;;;3992:2;3972:18;;;3965:30;4031:34;4026:2;4011:18;;4004:62;-1:-1:-1;;;4097:2:1;4082:18;;4075:32;4139:3;4124:19;;3925:224::o;4154:402::-;4356:2;4338:21;;;4395:2;4375:18;;;4368:30;4434:34;4429:2;4414:18;;4407:62;-1:-1:-1;;;4500:2:1;4485:18;;4478:36;4546:3;4531:19;;4328:228::o;4561:398::-;4763:2;4745:21;;;4802:2;4782:18;;;4775:30;4841:34;4836:2;4821:18;;4814:62;-1:-1:-1;;;4907:2:1;4892:18;;4885:32;4949:3;4934:19;;4735:224::o;4964:353::-;5166:2;5148:21;;;5205:2;5185:18;;;5178:30;5244:31;5239:2;5224:18;;5217:59;5308:2;5293:18;;5138:179::o;5322:402::-;5524:2;5506:21;;;5563:2;5543:18;;;5536:30;5602:34;5597:2;5582:18;;5575:62;-1:-1:-1;;;5668:2:1;5653:18;;5646:36;5714:3;5699:19;;5496:228::o;5729:329::-;5931:2;5913:21;;;5970:1;5950:18;;;5943:29;-1:-1:-1;;;6003:2:1;5988:18;;5981:36;6049:2;6034:18;;5903:155::o;6063:356::-;6265:2;6247:21;;;6284:18;;;6277:30;6343:34;6338:2;6323:18;;6316:62;6410:2;6395:18;;6237:182::o;6424:397::-;6626:2;6608:21;;;6665:2;6645:18;;;6638:30;6704:34;6699:2;6684:18;;6677:62;-1:-1:-1;;;6770:2:1;6755:18;;6748:31;6811:3;6796:19;;6598:223::o;6826:401::-;7028:2;7010:21;;;7067:2;7047:18;;;7040:30;7106:34;7101:2;7086:18;;7079:62;-1:-1:-1;;;7172:2:1;7157:18;;7150:35;7217:3;7202:19;;7000:227::o;7232:400::-;7434:2;7416:21;;;7473:2;7453:18;;;7446:30;7512:34;7507:2;7492:18;;7485:62;-1:-1:-1;;;7578:2:1;7563:18;;7556:34;7622:3;7607:19;;7406:226::o;7637:401::-;7839:2;7821:21;;;7878:2;7858:18;;;7851:30;7917:34;7912:2;7897:18;;7890:62;-1:-1:-1;;;7983:2:1;7968:18;;7961:35;8028:3;8013:19;;7811:227::o;8043:335::-;8245:2;8227:21;;;8284:2;8264:18;;;8257:30;-1:-1:-1;;;8318:2:1;8303:18;;8296:41;8369:2;8354:18;;8217:161::o;8383:177::-;8529:25;;;8517:2;8502:18;;8484:76::o;8565:184::-;8737:4;8725:17;;;;8707:36;;8695:2;8680:18;;8662:87::o;8754:229::-;;8825:1;8821:6;8818:1;8815:13;8812:2;;;-1:-1:-1;;;8851:33:1;;8907:4;8904:1;8897:15;8937:4;8858:3;8925:17;8812:2;-1:-1:-1;8968:9:1;;8802:181::o;8988:380::-;9073:1;9063:12;;9120:1;9110:12;;;9131:2;;9185:4;9177:6;9173:17;9163:27;;9131:2;9238;9230:6;9227:14;9207:18;9204:38;9201:2;;;9284:10;9279:3;9275:20;9272:1;9265:31;9319:4;9316:1;9309:15;9347:4;9344:1;9337:15;9201:2;;9043:325;;;:::o
Swarm Source
ipfs://d0805d645662a196859fc397191d6573581b8c3fbd8cdb7094d8fa4ca1b84d3e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.