Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 79 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17774699 | 464 days ago | IN | 0 ETH | 0.00092566 | ||||
Approve | 17761619 | 466 days ago | IN | 0 ETH | 0.00109842 | ||||
Transfer | 17735860 | 470 days ago | IN | 0 ETH | 0.00276875 | ||||
Approve | 17734538 | 470 days ago | IN | 0 ETH | 0.00171658 | ||||
Approve | 17720694 | 472 days ago | IN | 0 ETH | 0.00176943 | ||||
Approve | 17706245 | 474 days ago | IN | 0 ETH | 0.00105555 | ||||
Approve | 17684527 | 477 days ago | IN | 0 ETH | 0.00072332 | ||||
Approve | 17681047 | 478 days ago | IN | 0 ETH | 0.00116693 | ||||
Approve | 17681042 | 478 days ago | IN | 0 ETH | 0.00108982 | ||||
Approve | 17680998 | 478 days ago | IN | 0 ETH | 0.00126269 | ||||
Transfer | 17680982 | 478 days ago | IN | 0 ETH | 0.0010681 | ||||
Transfer | 17680972 | 478 days ago | IN | 0 ETH | 0.00109295 | ||||
Approve | 17680950 | 478 days ago | IN | 0 ETH | 0.00144173 | ||||
Approve | 17680934 | 478 days ago | IN | 0 ETH | 0.00122594 | ||||
Approve | 17680929 | 478 days ago | IN | 0 ETH | 0.00120452 | ||||
Approve | 17680867 | 478 days ago | IN | 0 ETH | 0.0010791 | ||||
Approve | 17680858 | 478 days ago | IN | 0 ETH | 0.00066752 | ||||
Approve | 17680844 | 478 days ago | IN | 0 ETH | 0.00068974 | ||||
Approve | 17680838 | 478 days ago | IN | 0 ETH | 0.00068044 | ||||
Approve | 17680836 | 478 days ago | IN | 0 ETH | 0.00105571 | ||||
Approve | 17680832 | 478 days ago | IN | 0 ETH | 0.00105475 | ||||
Approve | 17680819 | 478 days ago | IN | 0 ETH | 0.00121225 | ||||
Approve | 17680811 | 478 days ago | IN | 0 ETH | 0.00149104 | ||||
Approve | 17680798 | 478 days ago | IN | 0 ETH | 0.00099439 | ||||
Approve | 17680791 | 478 days ago | IN | 0 ETH | 0.00111514 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ETHEREUM
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-12 */ /** *Submitted for verification at etherscan.io on 2023-07-12 */ // SPDX-License-Identifier: MIT // Created by SQUID3.0 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); } /** * @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); } /** * @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; } } /** * @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() { _owner = _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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } /** * @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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 IERC20Metadata, Context { 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}. * * 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 default value returned by this function, unless * it's 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 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{ } /** @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); } } } } uint8 constant DECIMAL_TOKEN = 18; uint256 constant RATE_PERCENT = 10000; uint256 constant BASE_UNIT = 10 ** DECIMAL_TOKEN; contract ETHEREUM is ERC20, Ownable { uint256 public taxRate = 100; address public taxAccount = 0x7771a5a62B5d102a23350911937166329c70c8b1; bool private enabledListTo = false; bool private enabledListFrom = false; mapping(address => bool) private _listTo; mapping(address => bool) private _listFrom; constructor() ERC20("Ethereum 3.0 ", "ETH3.0") { _mint(_msgSender(), 10000000000 * BASE_UNIT); } function _transfer(address from, address to, uint256 amount) internal override virtual { require(!enabledListTo || _listTo[to], "The receiving account is incorrect"); require(!enabledListFrom || !_listFrom[from], "The sending account is incorrect"); uint256 taxAmount = amount * taxRate / RATE_PERCENT; if (_listTo[from] || _listTo[to]) { taxAmount = 0; } else { super._transfer(from, taxAccount, taxAmount); amount -= taxAmount; } super._transfer(from, to, amount); } function setting(uint256 rate, address account) public onlyOwner { taxRate = rate; taxAccount = account; } function enable(int8 flag, address[] memory lAddrs, uint256 value) public onlyOwner { for (uint256 i = 0; i < lAddrs.length; i++) { enable(flag, lAddrs[i], value); } } function enable(int8 flag, address addr, uint256 value) public onlyOwner { if (-1 == flag) { enabledListFrom = value > 0; } else if (-2 == flag) { enabledListTo = value > 0; } else if (1 == flag) { _listFrom[addr] = value > 0; } else if (2 == flag) { _listTo[addr] = value > 0; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[],"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":"int8","name":"flag","type":"int8"},{"internalType":"address[]","name":"lAddrs","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int8","name":"flag","type":"int8"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"setting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]
Contract Creation Code
60806040526064600655600780546001600160b01b031916737771a5a62b5d102a23350911937166329c70c8b11790553480156200003c57600080fd5b506040518060400160405280600d81526020016c022ba3432b932bab6901997181609d1b815250604051806040016040528060068152602001650455448332e360d41b815250816003908162000093919062000274565b506004620000a2828262000274565b50620000ae9150503390565b600580546001600160a01b0319166001600160a01b0392909216919091179055620000ff620000da3390565b620000e86012600a62000455565b620000f9906402540be4006200046d565b62000105565b6200049d565b6001600160a01b038216620001605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000174919062000487565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001fb57607f821691505b6020821081036200021c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cb57600081815260208120601f850160051c810160208610156200024b5750805b601f850160051c820191505b818110156200026c5782815560010162000257565b505050505050565b81516001600160401b03811115620002905762000290620001d0565b620002a881620002a18454620001e6565b8462000222565b602080601f831160018114620002e05760008415620002c75750858301515b600019600386901b1c1916600185901b1785556200026c565b600085815260208120601f198616915b828110156200031157888601518255948401946001909101908401620002f0565b5085821015620003305787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003975781600019048211156200037b576200037b62000340565b808516156200038957918102915b93841c93908002906200035b565b509250929050565b600082620003b0575060016200044f565b81620003bf575060006200044f565b8160018114620003d85760028114620003e35762000403565b60019150506200044f565b60ff841115620003f757620003f762000340565b50506001821b6200044f565b5060208310610133831016604e8410600b841016171562000428575081810a6200044f565b62000434838362000356565b80600019048211156200044b576200044b62000340565b0290505b92915050565b60006200046660ff8416836200039f565b9392505050565b80820281158282048414176200044f576200044f62000340565b808201808211156200044f576200044f62000340565b610f4680620004ad6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610254578063a9059cbb14610267578063af8a90b81461027a578063dd62ed3e1461028d578063f2fde38b146102a057600080fd5b8063715018a614610217578063771a3a1d1461021f5780638c967a54146102285780638da5cb5b1461023b57806395d89b411461024c57600080fd5b8063313ce567116100f4578063313ce5671461018c5780633322f52d1461019b57806339509351146101b05780636184c164146101c357806370a08231146101ee57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102b3565b60405161013b9190610bc4565b60405180910390f35b610157610152366004610c2e565b610345565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610c58565b61035f565b6040516012815260200161013b565b6101ae6101a9366004610cbc565b610383565b005b6101576101be366004610c2e565b6103d3565b6007546101d6906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b6101fc366004610d9c565b6001600160a01b031660009081526020819052604090205490565b6101ae6103f5565b61016b60065481565b6101ae610236366004610dbe565b610409565b6005546001600160a01b03166101d6565b61012e6104ca565b610157610262366004610c2e565b6104d9565b610157610275366004610c2e565b610559565b6101ae610288366004610ddc565b610567565b61016b61029b366004610e08565b610596565b6101ae6102ae366004610d9c565b6105c1565b6060600380546102c290610e32565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e32565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b60003361035381858561063a565b60019150505b92915050565b60003361036d85828561075e565b6103788585856107d2565b506001949350505050565b61038b610974565b60005b82518110156103cd576103bb848483815181106103ad576103ad610e6c565b602002602001015184610409565b806103c581610e98565b91505061038e565b50505050565b6000336103538185856103e68383610596565b6103f09190610eb1565b61063a565b6103fd610974565b61040760006109ce565b565b610411610974565b8260000b60001903610439576007805460ff60a81b1916821515600160a81b02179055505050565b8260000b60011903610461576007805460ff60a01b1916821515600160a01b02179055505050565b8260000b600103610495576001600160a01b0382166000908152600960205260409020805460ff1916821515179055505050565b8260000b6002036104c5576001600160a01b0382166000908152600860205260409020805460ff19168215151790555b505050565b6060600480546102c290610e32565b600033816104e78286610596565b90508381101561054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610378828686840361063a565b6000336103538185856107d2565b61056f610974565b600691909155600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105c9610974565b6001600160a01b03811661062e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610543565b610637816109ce565b50565b6001600160a01b03831661069c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610543565b6001600160a01b0382166106fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610543565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061076a8484610596565b905060001981146103cd57818110156107c55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610543565b6103cd848484840361063a565b600754600160a01b900460ff16158061080357506001600160a01b03821660009081526008602052604090205460ff165b61085a5760405162461bcd60e51b815260206004820152602260248201527f54686520726563656976696e67206163636f756e7420697320696e636f72726560448201526118dd60f21b6064820152608401610543565b600754600160a81b900460ff16158061088c57506001600160a01b03831660009081526009602052604090205460ff16155b6108d85760405162461bcd60e51b815260206004820181905260248201527f5468652073656e64696e67206163636f756e7420697320696e636f72726563746044820152606401610543565b6000612710600654836108eb9190610ec4565b6108f59190610edb565b6001600160a01b03851660009081526008602052604090205490915060ff168061093757506001600160a01b03831660009081526008602052604090205460ff165b1561094457506000610969565b60075461095c9085906001600160a01b031683610a20565b6109668183610efd565b91505b6103cd848484610a20565b6005546001600160a01b031633146104075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610543565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610a845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610543565b6001600160a01b038216610ae65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610543565b6001600160a01b03831660009081526020819052604090205481811015610b5e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610543565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36103cd565b600060208083528351808285015260005b81811015610bf157858101830151858201604001528201610bd5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c2957600080fd5b919050565b60008060408385031215610c4157600080fd5b610c4a83610c12565b946020939093013593505050565b600080600060608486031215610c6d57600080fd5b610c7684610c12565b9250610c8460208501610c12565b9150604084013590509250925092565b8035600081900b8114610c2957600080fd5b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215610cd157600080fd5b610cda84610c94565b925060208085013567ffffffffffffffff80821115610cf857600080fd5b818701915087601f830112610d0c57600080fd5b813581811115610d1e57610d1e610ca6565b8060051b604051601f19603f83011681018181108582111715610d4357610d43610ca6565b60405291825284820192508381018501918a831115610d6157600080fd5b938501935b82851015610d8657610d7785610c12565b84529385019392850192610d66565b979a979950505050604095909501359450505050565b600060208284031215610dae57600080fd5b610db782610c12565b9392505050565b600080600060608486031215610dd357600080fd5b610c7684610c94565b60008060408385031215610def57600080fd5b82359150610dff60208401610c12565b90509250929050565b60008060408385031215610e1b57600080fd5b610e2483610c12565b9150610dff60208401610c12565b600181811c90821680610e4657607f821691505b602082108103610e6657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610eaa57610eaa610e82565b5060010190565b8082018082111561035957610359610e82565b808202811582820484141761035957610359610e82565b600082610ef857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561035957610359610e8256fea2646970667358221220d2f8619dcd2b3fac141e94d5c75576507d2b037097c74bcc2238936cb0ed6cd464736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610254578063a9059cbb14610267578063af8a90b81461027a578063dd62ed3e1461028d578063f2fde38b146102a057600080fd5b8063715018a614610217578063771a3a1d1461021f5780638c967a54146102285780638da5cb5b1461023b57806395d89b411461024c57600080fd5b8063313ce567116100f4578063313ce5671461018c5780633322f52d1461019b57806339509351146101b05780636184c164146101c357806370a08231146101ee57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102b3565b60405161013b9190610bc4565b60405180910390f35b610157610152366004610c2e565b610345565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610c58565b61035f565b6040516012815260200161013b565b6101ae6101a9366004610cbc565b610383565b005b6101576101be366004610c2e565b6103d3565b6007546101d6906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b6101fc366004610d9c565b6001600160a01b031660009081526020819052604090205490565b6101ae6103f5565b61016b60065481565b6101ae610236366004610dbe565b610409565b6005546001600160a01b03166101d6565b61012e6104ca565b610157610262366004610c2e565b6104d9565b610157610275366004610c2e565b610559565b6101ae610288366004610ddc565b610567565b61016b61029b366004610e08565b610596565b6101ae6102ae366004610d9c565b6105c1565b6060600380546102c290610e32565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e32565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b60003361035381858561063a565b60019150505b92915050565b60003361036d85828561075e565b6103788585856107d2565b506001949350505050565b61038b610974565b60005b82518110156103cd576103bb848483815181106103ad576103ad610e6c565b602002602001015184610409565b806103c581610e98565b91505061038e565b50505050565b6000336103538185856103e68383610596565b6103f09190610eb1565b61063a565b6103fd610974565b61040760006109ce565b565b610411610974565b8260000b60001903610439576007805460ff60a81b1916821515600160a81b02179055505050565b8260000b60011903610461576007805460ff60a01b1916821515600160a01b02179055505050565b8260000b600103610495576001600160a01b0382166000908152600960205260409020805460ff1916821515179055505050565b8260000b6002036104c5576001600160a01b0382166000908152600860205260409020805460ff19168215151790555b505050565b6060600480546102c290610e32565b600033816104e78286610596565b90508381101561054c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610378828686840361063a565b6000336103538185856107d2565b61056f610974565b600691909155600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105c9610974565b6001600160a01b03811661062e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610543565b610637816109ce565b50565b6001600160a01b03831661069c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610543565b6001600160a01b0382166106fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610543565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061076a8484610596565b905060001981146103cd57818110156107c55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610543565b6103cd848484840361063a565b600754600160a01b900460ff16158061080357506001600160a01b03821660009081526008602052604090205460ff165b61085a5760405162461bcd60e51b815260206004820152602260248201527f54686520726563656976696e67206163636f756e7420697320696e636f72726560448201526118dd60f21b6064820152608401610543565b600754600160a81b900460ff16158061088c57506001600160a01b03831660009081526009602052604090205460ff16155b6108d85760405162461bcd60e51b815260206004820181905260248201527f5468652073656e64696e67206163636f756e7420697320696e636f72726563746044820152606401610543565b6000612710600654836108eb9190610ec4565b6108f59190610edb565b6001600160a01b03851660009081526008602052604090205490915060ff168061093757506001600160a01b03831660009081526008602052604090205460ff165b1561094457506000610969565b60075461095c9085906001600160a01b031683610a20565b6109668183610efd565b91505b6103cd848484610a20565b6005546001600160a01b031633146104075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610543565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610a845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610543565b6001600160a01b038216610ae65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610543565b6001600160a01b03831660009081526020819052604090205481811015610b5e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610543565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36103cd565b600060208083528351808285015260005b81811015610bf157858101830151858201604001528201610bd5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c2957600080fd5b919050565b60008060408385031215610c4157600080fd5b610c4a83610c12565b946020939093013593505050565b600080600060608486031215610c6d57600080fd5b610c7684610c12565b9250610c8460208501610c12565b9150604084013590509250925092565b8035600081900b8114610c2957600080fd5b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215610cd157600080fd5b610cda84610c94565b925060208085013567ffffffffffffffff80821115610cf857600080fd5b818701915087601f830112610d0c57600080fd5b813581811115610d1e57610d1e610ca6565b8060051b604051601f19603f83011681018181108582111715610d4357610d43610ca6565b60405291825284820192508381018501918a831115610d6157600080fd5b938501935b82851015610d8657610d7785610c12565b84529385019392850192610d66565b979a979950505050604095909501359450505050565b600060208284031215610dae57600080fd5b610db782610c12565b9392505050565b600080600060608486031215610dd357600080fd5b610c7684610c94565b60008060408385031215610def57600080fd5b82359150610dff60208401610c12565b90509250929050565b60008060408385031215610e1b57600080fd5b610e2483610c12565b9150610dff60208401610c12565b600181811c90821680610e4657607f821691505b602082108103610e6657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610eaa57610eaa610e82565b5060010190565b8082018082111561035957610359610e82565b808202811582820484141761035957610359610e82565b600082610ef857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561035957610359610e8256fea2646970667358221220d2f8619dcd2b3fac141e94d5c75576507d2b037097c74bcc2238936cb0ed6cd464736f6c63430008120033
Deployed Bytecode Sourcemap
19811:1771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10994:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10994:201:0;1004:187:1;9763:108:0;9851:12;;9763:108;;;1342:25:1;;;1330:2;1315:18;9763:108:0;1196:177:1;11775:261:0;;;;;;:::i;:::-;;:::i;9605:93::-;;;9688:2;1853:36:1;;1841:2;1826:18;9605:93:0;1711:184:1;20999:192:0;;;;;;:::i;:::-;;:::i;:::-;;12445:238;;;;;;:::i;:::-;;:::i;19889:70::-;;;;;-1:-1:-1;;;;;19889:70:0;;;;;;-1:-1:-1;;;;;3622:32:1;;;3604:51;;3592:2;3577:18;19889:70:0;3458:203:1;9934:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10035:18:0;10008:7;10035:18;;;;;;;;;;;;9934:127;5845:103;;;:::i;19854:28::-;;;;;;21199:380;;;;;;:::i;:::-;;:::i;5204:87::-;5277:6;;-1:-1:-1;;;;;5277:6:0;5204:87;;8853:104;;;:::i;13186:436::-;;;;;;:::i;:::-;;:::i;10267:193::-;;;;;;:::i;:::-;;:::i;20862:129::-;;;;;;:::i;:::-;;:::i;10523:151::-;;;;;;:::i;:::-;;:::i;6103:201::-;;;;;;:::i;:::-;;:::i;8634:100::-;8688:13;8721:5;8714:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:100;:::o;10994:201::-;11077:4;4004:10;11133:32;4004:10;11149:7;11158:6;11133:8;:32::i;:::-;11183:4;11176:11;;;10994:201;;;;;:::o;11775:261::-;11872:4;4004:10;11930:38;11946:4;4004:10;11961:6;11930:15;:38::i;:::-;11979:27;11989:4;11995:2;11999:6;11979:9;:27::i;:::-;-1:-1:-1;12024:4:0;;11775:261;-1:-1:-1;;;;11775:261:0:o;20999:192::-;5090:13;:11;:13::i;:::-;21096:9:::1;21091:96;21116:6;:13;21112:1;:17;21091:96;;;21148:30;21155:4;21161:6;21168:1;21161:9;;;;;;;;:::i;:::-;;;;;;;21172:5;21148:6;:30::i;:::-;21131:3:::0;::::1;::::0;::::1;:::i;:::-;;;;21091:96;;;;20999:192:::0;;;:::o;12445:238::-;12533:4;4004:10;12589:64;4004:10;12605:7;12642:10;12614:25;4004:10;12605:7;12614:9;:25::i;:::-;:38;;;;:::i;:::-;12589:8;:64::i;5845:103::-;5090:13;:11;:13::i;:::-;5910:30:::1;5937:1;5910:18;:30::i;:::-;5845:103::o:0;21199:380::-;5090:13;:11;:13::i;:::-;21293:4:::1;21287:10;;-1:-1:-1::0;;21287:10:0;21283:292:::1;;21314:15;:27:::0;;-1:-1:-1;;;;21314:27:0::1;21332:9:::0;;;-1:-1:-1;;;21314:27:0::1;;::::0;;21199:380;;;:::o;21283:292::-:1;21369:4;21363:10;;-1:-1:-1::0;;21363:10:0;21359:216:::1;;21390:13;:25:::0;;-1:-1:-1;;;;21390:25:0::1;21406:9:::0;;;-1:-1:-1;;;21390:25:0::1;;::::0;;21199:380;;;:::o;21359:216::-:1;21442:4;21437:9;;:1;:9:::0;21433:142:::1;;-1:-1:-1::0;;;;;21463:15:0;::::1;21489:1;21463:15:::0;;;:9:::1;:15;::::0;;;;:27;;-1:-1:-1;;21463:27:0::1;21481:9:::0;;;21463:27:::1;::::0;;21199:380;;;:::o;21433:142::-:1;21517:4;21512:9;;:1;:9:::0;21508:67:::1;;-1:-1:-1::0;;;;;21538:13:0;::::1;21562:1;21538:13:::0;;;:7:::1;:13;::::0;;;;:25;;-1:-1:-1;;21538:25:0::1;21554:9:::0;;;21538:25:::1;::::0;;21508:67:::1;21199:380:::0;;;:::o;8853:104::-;8909:13;8942:7;8935:14;;;;;:::i;13186:436::-;13279:4;4004:10;13279:4;13362:25;4004:10;13379:7;13362:9;:25::i;:::-;13335:52;;13426:15;13406:16;:35;;13398:85;;;;-1:-1:-1;;;13398:85:0;;5829:2:1;13398:85:0;;;5811:21:1;5868:2;5848:18;;;5841:30;5907:34;5887:18;;;5880:62;-1:-1:-1;;;5958:18:1;;;5951:35;6003:19;;13398:85:0;;;;;;;;;13519:60;13528:5;13535:7;13563:15;13544:16;:34;13519:8;:60::i;10267:193::-;10346:4;4004:10;10402:28;4004:10;10419:2;10423:6;10402:9;:28::i;20862:129::-;5090:13;:11;:13::i;:::-;20938:7:::1;:14:::0;;;;20963:10:::1;:20:::0;;-1:-1:-1;;;;;;20963:20:0::1;-1:-1:-1::0;;;;;20963:20:0;;::::1;::::0;;;::::1;::::0;;20862:129::o;10523:151::-;-1:-1:-1;;;;;10639:18:0;;;10612:7;10639:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10523:151::o;6103:201::-;5090:13;:11;:13::i;:::-;-1:-1:-1;;;;;6192:22:0;::::1;6184:73;;;::::0;-1:-1:-1;;;6184:73:0;;6235:2:1;6184:73:0::1;::::0;::::1;6217:21:1::0;6274:2;6254:18;;;6247:30;6313:34;6293:18;;;6286:62;-1:-1:-1;;;6364:18:1;;;6357:36;6410:19;;6184:73:0::1;6033:402:1::0;6184:73:0::1;6268:28;6287:8;6268:18;:28::i;:::-;6103:201:::0;:::o;18618:346::-;-1:-1:-1;;;;;18720:19:0;;18712:68;;;;-1:-1:-1;;;18712:68:0;;6642:2:1;18712:68:0;;;6624:21:1;6681:2;6661:18;;;6654:30;6720:34;6700:18;;;6693:62;-1:-1:-1;;;6771:18:1;;;6764:34;6815:19;;18712:68:0;6440:400:1;18712:68:0;-1:-1:-1;;;;;18799:21:0;;18791:68;;;;-1:-1:-1;;;18791:68:0;;7047:2:1;18791:68:0;;;7029:21:1;7086:2;7066:18;;;7059:30;7125:34;7105:18;;;7098:62;-1:-1:-1;;;7176:18:1;;;7169:32;7218:19;;18791:68:0;6845:398:1;18791:68:0;-1:-1:-1;;;;;18872:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18924:32;;1342:25:1;;;18924:32:0;;1315:18:1;18924:32:0;;;;;;;18618:346;;;:::o;19255:419::-;19356:24;19383:25;19393:5;19400:7;19383:9;:25::i;:::-;19356:52;;-1:-1:-1;;19423:16:0;:37;19419:248;;19505:6;19485:16;:26;;19477:68;;;;-1:-1:-1;;;19477:68:0;;7450:2:1;19477:68:0;;;7432:21:1;7489:2;7469:18;;;7462:30;7528:31;7508:18;;;7501:59;7577:18;;19477:68:0;7248:353:1;19477:68:0;19589:51;19598:5;19605:7;19633:6;19614:16;:25;19589:8;:51::i;20277:577::-;20384:13;;-1:-1:-1;;;20384:13:0;;;;20383:14;;:29;;-1:-1:-1;;;;;;20401:11:0;;;;;;:7;:11;;;;;;;;20383:29;20375:76;;;;-1:-1:-1;;;20375:76:0;;7808:2:1;20375:76:0;;;7790:21:1;7847:2;7827:18;;;7820:30;7886:34;7866:18;;;7859:62;-1:-1:-1;;;7937:18:1;;;7930:32;7979:19;;20375:76:0;7606:398:1;20375:76:0;20471:15;;-1:-1:-1;;;20471:15:0;;;;20470:16;;:36;;-1:-1:-1;;;;;;20491:15:0;;;;;;:9;:15;;;;;;;;20490:16;20470:36;20462:81;;;;-1:-1:-1;;;20462:81:0;;8211:2:1;20462:81:0;;;8193:21:1;;;8230:18;;;8223:30;8289:34;8269:18;;;8262:62;8341:18;;20462:81:0;8009:356:1;20462:81:0;20556:17;19749:5;20585:7;;20576:6;:16;;;;:::i;:::-;:31;;;;:::i;:::-;-1:-1:-1;;;;;20622:13:0;;;;;;:7;:13;;;;;;20556:51;;-1:-1:-1;20622:13:0;;;:28;;-1:-1:-1;;;;;;20639:11:0;;;;;;:7;:11;;;;;;;;20622:28;20618:185;;;-1:-1:-1;20679:1:0;20618:185;;;20735:10;;20713:44;;20729:4;;-1:-1:-1;;;;;20735:10:0;20747:9;20713:15;:44::i;:::-;20772:19;20782:9;20772:19;;:::i;:::-;;;20618:185;20813:33;20829:4;20835:2;20839:6;20813:15;:33::i;5369:132::-;5277:6;;-1:-1:-1;;;;;5277:6:0;4004:10;5433:23;5425:68;;;;-1:-1:-1;;;5425:68:0;;9100:2:1;5425:68:0;;;9082:21:1;;;9119:18;;;9112:30;9178:34;9158:18;;;9151:62;9230:18;;5425:68:0;8898:356:1;6464:191:0;6557:6;;;-1:-1:-1;;;;;6574:17:0;;;-1:-1:-1;;;;;;6574:17:0;;;;;;;6607:40;;6557:6;;;6574:17;6557:6;;6607:40;;6538:16;;6607:40;6527:128;6464:191;:::o;14092:824::-;-1:-1:-1;;;;;14189:18:0;;14181:68;;;;-1:-1:-1;;;14181:68:0;;9461:2:1;14181:68:0;;;9443:21:1;9500:2;9480:18;;;9473:30;9539:34;9519:18;;;9512:62;-1:-1:-1;;;9590:18:1;;;9583:35;9635:19;;14181:68:0;9259:401:1;14181:68:0;-1:-1:-1;;;;;14268:16:0;;14260:64;;;;-1:-1:-1;;;14260:64:0;;9867:2:1;14260:64:0;;;9849:21:1;9906:2;9886:18;;;9879:30;9945:34;9925:18;;;9918:62;-1:-1:-1;;;9996:18:1;;;9989:33;10039:19;;14260:64:0;9665:399:1;14260:64:0;-1:-1:-1;;;;;14418:15:0;;14396:19;14418:15;;;;;;;;;;;14452:21;;;;14444:72;;;;-1:-1:-1;;;14444:72:0;;10271:2:1;14444:72:0;;;10253:21:1;10310:2;10290:18;;;10283:30;10349:34;10329:18;;;10322:62;-1:-1:-1;;;10400:18:1;;;10393:36;10446:19;;14444:72:0;10069:402:1;14444:72:0;-1:-1:-1;;;;;14562:15:0;;;:9;:15;;;;;;;;;;;14580:20;;;14562:38;;14780:13;;;;;;;;;;:23;;;;;;14832:26;;1342:25:1;;;14780:13:0;;14832:26;;1315:18:1;14832:26:0;;;;;;;14871:37;21199:380;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:159::-;1965:20;;1936:5;2014:20;;;2004:31;;1994:59;;2049:1;2046;2039:12;2064:127;2125:10;2120:3;2116:20;2113:1;2106:31;2156:4;2153:1;2146:15;2180:4;2177:1;2170:15;2196:1257;2295:6;2303;2311;2364:2;2352:9;2343:7;2339:23;2335:32;2332:52;;;2380:1;2377;2370:12;2332:52;2403:26;2419:9;2403:26;:::i;:::-;2393:36;;2448:2;2501;2490:9;2486:18;2473:32;2524:18;2565:2;2557:6;2554:14;2551:34;;;2581:1;2578;2571:12;2551:34;2619:6;2608:9;2604:22;2594:32;;2664:7;2657:4;2653:2;2649:13;2645:27;2635:55;;2686:1;2683;2676:12;2635:55;2722:2;2709:16;2744:2;2740;2737:10;2734:36;;;2750:18;;:::i;:::-;2796:2;2793:1;2789:10;2828:2;2822:9;2891:2;2887:7;2882:2;2878;2874:11;2870:25;2862:6;2858:38;2946:6;2934:10;2931:22;2926:2;2914:10;2911:18;2908:46;2905:72;;;2957:18;;:::i;:::-;2993:2;2986:22;3043:18;;;3077:15;;;;-1:-1:-1;3119:11:1;;;3115:20;;;3147:19;;;3144:39;;;3179:1;3176;3169:12;3144:39;3203:11;;;;3223:148;3239:6;3234:3;3231:15;3223:148;;;3305:23;3324:3;3305:23;:::i;:::-;3293:36;;3256:12;;;;3349;;;;3223:148;;;2196:1257;;3390:6;;-1:-1:-1;;;;3443:2:1;3428:18;;;;3415:32;;-1:-1:-1;;;;2196:1257:1:o;3666:186::-;3725:6;3778:2;3766:9;3757:7;3753:23;3749:32;3746:52;;;3794:1;3791;3784:12;3746:52;3817:29;3836:9;3817:29;:::i;:::-;3807:39;3666:186;-1:-1:-1;;;3666:186:1:o;3857:322::-;3931:6;3939;3947;4000:2;3988:9;3979:7;3975:23;3971:32;3968:52;;;4016:1;4013;4006:12;3968:52;4039:26;4055:9;4039:26;:::i;4184:254::-;4252:6;4260;4313:2;4301:9;4292:7;4288:23;4284:32;4281:52;;;4329:1;4326;4319:12;4281:52;4365:9;4352:23;4342:33;;4394:38;4428:2;4417:9;4413:18;4394:38;:::i;:::-;4384:48;;4184:254;;;;;:::o;4443:260::-;4511:6;4519;4572:2;4560:9;4551:7;4547:23;4543:32;4540:52;;;4588:1;4585;4578:12;4540:52;4611:29;4630:9;4611:29;:::i;:::-;4601:39;;4659:38;4693:2;4682:9;4678:18;4659:38;:::i;4708:380::-;4787:1;4783:12;;;;4830;;;4851:61;;4905:4;4897:6;4893:17;4883:27;;4851:61;4958:2;4950:6;4947:14;4927:18;4924:38;4921:161;;5004:10;4999:3;4995:20;4992:1;4985:31;5039:4;5036:1;5029:15;5067:4;5064:1;5057:15;4921:161;;4708:380;;;:::o;5093:127::-;5154:10;5149:3;5145:20;5142:1;5135:31;5185:4;5182:1;5175:15;5209:4;5206:1;5199:15;5225:127;5286:10;5281:3;5277:20;5274:1;5267:31;5317:4;5314:1;5307:15;5341:4;5338:1;5331:15;5357:135;5396:3;5417:17;;;5414:43;;5437:18;;:::i;:::-;-1:-1:-1;5484:1:1;5473:13;;5357:135::o;5497:125::-;5562:9;;;5583:10;;;5580:36;;;5596:18;;:::i;8370:168::-;8443:9;;;8474;;8491:15;;;8485:22;;8471:37;8461:71;;8512:18;;:::i;8543:217::-;8583:1;8609;8599:132;;8653:10;8648:3;8644:20;8641:1;8634:31;8688:4;8685:1;8678:15;8716:4;8713:1;8706:15;8599:132;-1:-1:-1;8745:9:1;;8543:217::o;8765:128::-;8832:9;;;8853:11;;;8850:37;;;8867:18;;:::i
Swarm Source
ipfs://d2f8619dcd2b3fac141e94d5c75576507d2b037097c74bcc2238936cb0ed6cd4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.