Overview
S Balance
0 S
S Value
-More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ERC20
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-18 */ // https://t.me/HarryPoterObamaSonic // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } contract ERC20 is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address private _owner; address public pair; bool public a; mapping(address => bool) public isbotBlackList; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 * overloaded; * * 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function setblacklist(address _account) external onlyOwner { isbotBlackList[_account] = true; } function unsetblack(address _account) external onlyOwner { isbotBlackList[_account] = false; } /** * @dev See {IERC20-allowance}. */ function allowance(address oowner, address spender) public view virtual override returns (uint256) { return _allowances[oowner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function waiveOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0x000000000000000000000000000000000000dEaD)); _owner = address(0x000000000000000000000000000000000000dEaD); } function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(!isbotBlackList[sender], "account is bot"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 oowner, address spender, uint256 amount) internal virtual { require(oowner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[oowner][spender] = amount; emit Approval(oowner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } contract HPOSI10 is ERC20Burnable { constructor(string memory name_, string memory symbol_,address addr_) ERC20(name_, symbol_) { _mint(addr_, 1000000000 * 10**18); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"a","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"oowner","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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isbotBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"unsetblack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waiveOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b50604051611f48380380611f4883398181016040528101906100319190610258565b816003908161004091906104db565b50806004908161005091906104db565b505f61006061010460201b60201c565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050506105aa565b5f33905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61016a82610124565b810181811067ffffffffffffffff8211171561018957610188610134565b5b80604052505050565b5f61019b61010b565b90506101a78282610161565b919050565b5f67ffffffffffffffff8211156101c6576101c5610134565b5b6101cf82610124565b9050602081019050919050565b8281835e5f83830152505050565b5f6101fc6101f7846101ac565b610192565b90508281526020810184848401111561021857610217610120565b5b6102238482856101dc565b509392505050565b5f82601f83011261023f5761023e61011c565b5b815161024f8482602086016101ea565b91505092915050565b5f806040838503121561026e5761026d610114565b5b5f83015167ffffffffffffffff81111561028b5761028a610118565b5b6102978582860161022b565b925050602083015167ffffffffffffffff8111156102b8576102b7610118565b5b6102c48582860161022b565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061031c57607f821691505b60208210810361032f5761032e6102d8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610356565b61039b8683610356565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6103df6103da6103d5846103b3565b6103bc565b6103b3565b9050919050565b5f819050919050565b6103f8836103c5565b61040c610404826103e6565b848454610362565b825550505050565b5f90565b610420610414565b61042b8184846103ef565b505050565b5b8181101561044e576104435f82610418565b600181019050610431565b5050565b601f8211156104935761046481610335565b61046d84610347565b8101602085101561047c578190505b61049061048885610347565b830182610430565b50505b505050565b5f82821c905092915050565b5f6104b35f1984600802610498565b1980831691505092915050565b5f6104cb83836104a4565b9150826002028217905092915050565b6104e4826102ce565b67ffffffffffffffff8111156104fd576104fc610134565b5b6105078254610305565b610512828285610452565b5f60209050601f831160018114610543575f8415610531578287015190505b61053b85826104c0565b8655506105a2565b601f19841661055186610335565b5f5b8281101561057857848901518255600182019150602085019450602081019050610553565b868310156105955784890151610591601f8916826104a4565b8355505b6001600288020188555050505b505050505050565b611991806105b75f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c806370a08231116100a0578063a457c2d71161006f578063a457c2d7146102ce578063a8aa1b31146102fe578063a9059cbb1461031c578063bdfc29901461034c578063dd62ed3e1461037c57610114565b806370a08231146102585780638da5cb5b14610288578063914eb66a146102a657806395d89b41146102b057610114565b806323b872dd116100e757806323b872dd146101a2578063313ce567146101d257806339509351146101f0578063446e01ea146102205780635c5ba4481461023c57610114565b806306fdde0314610118578063095ea7b3146101365780630dbe671f1461016657806318160ddd14610184575b5f80fd5b6101206103ac565b60405161012d919061115a565b60405180910390f35b610150600480360381019061014b919061120b565b61043c565b60405161015d9190611263565b60405180910390f35b61016e610459565b60405161017b9190611263565b60405180910390f35b61018c61046c565b604051610199919061128b565b60405180910390f35b6101bc60048036038101906101b791906112a4565b610475565b6040516101c99190611263565b60405180910390f35b6101da610570565b6040516101e7919061130f565b60405180910390f35b61020a6004803603810190610205919061120b565b610578565b6040516102179190611263565b60405180910390f35b61023a60048036038101906102359190611328565b61061f565b005b61025660048036038101906102519190611328565b61070c565b005b610272600480360381019061026d9190611328565b6107fa565b60405161027f919061128b565b60405180910390f35b61029061083f565b60405161029d9190611362565b60405180910390f35b6102ae610867565b005b6102b86109be565b6040516102c5919061115a565b60405180910390f35b6102e860048036038101906102e3919061120b565b610a4e565b6040516102f59190611263565b60405180910390f35b610306610b3d565b6040516103139190611362565b60405180910390f35b6103366004803603810190610331919061120b565b610b62565b6040516103439190611263565b60405180910390f35b61036660048036038101906103619190611328565b610b7f565b6040516103739190611263565b60405180910390f35b6103966004803603810190610391919061137b565b610b9c565b6040516103a3919061128b565b60405180910390f35b6060600380546103bb906113e6565b80601f01602080910402602001604051908101604052809291908181526020018280546103e7906113e6565b80156104325780601f1061040957610100808354040283529160200191610432565b820191905f5260205f20905b81548152906001019060200180831161041557829003601f168201915b5050505050905090565b5f61044f610448610c1e565b8484610c25565b6001905092915050565b600660149054906101000a900460ff1681565b5f600254905090565b5f610481848484610de8565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104c8610c1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90611486565b60405180910390fd5b61056485610553610c1e565b858461055f91906114d1565b610c25565b60019150509392505050565b5f6012905090565b5f610615610584610c1e565b848460015f610591610c1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106109190611504565b610c25565b6001905092915050565b610627610c1e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611581565b60405180910390fd5b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b610714610c1e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079990611581565b60405180910390fd5b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61086f610c1e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490611581565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600480546109cd906113e6565b80601f01602080910402602001604051908101604052809291908181526020018280546109f9906113e6565b8015610a445780601f10610a1b57610100808354040283529160200191610a44565b820191905f5260205f20905b815481529060010190602001808311610a2757829003601f168201915b5050505050905090565b5f8060015f610a5b610c1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061160f565b60405180910390fd5b610b32610b20610c1e565b858584610b2d91906114d1565b610c25565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610b75610b6e610c1e565b8484610de8565b6001905092915050565b6007602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a9061169d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf89061172b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ddb919061128b565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906117b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611847565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f45906118af565b60405180910390fd5b610f598383836110e5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd39061193d565b60405180910390fd5b8181610fe891906114d1565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110739190611504565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d7919061128b565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61112c826110ea565b61113681856110f4565b9350611146818560208601611104565b61114f81611112565b840191505092915050565b5f6020820190508181035f8301526111728184611122565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111a78261117e565b9050919050565b6111b78161119d565b81146111c1575f80fd5b50565b5f813590506111d2816111ae565b92915050565b5f819050919050565b6111ea816111d8565b81146111f4575f80fd5b50565b5f81359050611205816111e1565b92915050565b5f80604083850312156112215761122061117a565b5b5f61122e858286016111c4565b925050602061123f858286016111f7565b9150509250929050565b5f8115159050919050565b61125d81611249565b82525050565b5f6020820190506112765f830184611254565b92915050565b611285816111d8565b82525050565b5f60208201905061129e5f83018461127c565b92915050565b5f805f606084860312156112bb576112ba61117a565b5b5f6112c8868287016111c4565b93505060206112d9868287016111c4565b92505060406112ea868287016111f7565b9150509250925092565b5f60ff82169050919050565b611309816112f4565b82525050565b5f6020820190506113225f830184611300565b92915050565b5f6020828403121561133d5761133c61117a565b5b5f61134a848285016111c4565b91505092915050565b61135c8161119d565b82525050565b5f6020820190506113755f830184611353565b92915050565b5f80604083850312156113915761139061117a565b5b5f61139e858286016111c4565b92505060206113af858286016111c4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113fd57607f821691505b6020821081036114105761140f6113b9565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6114706028836110f4565b915061147b82611416565b604082019050919050565b5f6020820190508181035f83015261149d81611464565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114db826111d8565b91506114e6836111d8565b92508282039050818111156114fe576114fd6114a4565b5b92915050565b5f61150e826111d8565b9150611519836111d8565b9250828201905080821115611531576115306114a4565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61156b6020836110f4565b915061157682611537565b602082019050919050565b5f6020820190508181035f8301526115988161155f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6115f96025836110f4565b91506116048261159f565b604082019050919050565b5f6020820190508181035f830152611626816115ed565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6116876024836110f4565b91506116928261162d565b604082019050919050565b5f6020820190508181035f8301526116b48161167b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6117156022836110f4565b9150611720826116bb565b604082019050919050565b5f6020820190508181035f83015261174281611709565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6117a36025836110f4565b91506117ae82611749565b604082019050919050565b5f6020820190508181035f8301526117d081611797565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6118316023836110f4565b915061183c826117d7565b604082019050919050565b5f6020820190508181035f83015261185e81611825565b9050919050565b7f6163636f756e7420697320626f740000000000000000000000000000000000005f82015250565b5f611899600e836110f4565b91506118a482611865565b602082019050919050565b5f6020820190508181035f8301526118c68161188d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119276026836110f4565b9150611932826118cd565b604082019050919050565b5f6020820190508181035f8301526119548161191b565b905091905056fea2646970667358221220fcbb05102b6f508c3829ab44f15e01298f33c4ab87bb2a05aab446097498aa7f64736f6c634300081a003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001f484152525920504f54544552204f42414d4120534f4e494320494e55203130000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c806370a08231116100a0578063a457c2d71161006f578063a457c2d7146102ce578063a8aa1b31146102fe578063a9059cbb1461031c578063bdfc29901461034c578063dd62ed3e1461037c57610114565b806370a08231146102585780638da5cb5b14610288578063914eb66a146102a657806395d89b41146102b057610114565b806323b872dd116100e757806323b872dd146101a2578063313ce567146101d257806339509351146101f0578063446e01ea146102205780635c5ba4481461023c57610114565b806306fdde0314610118578063095ea7b3146101365780630dbe671f1461016657806318160ddd14610184575b5f80fd5b6101206103ac565b60405161012d919061115a565b60405180910390f35b610150600480360381019061014b919061120b565b61043c565b60405161015d9190611263565b60405180910390f35b61016e610459565b60405161017b9190611263565b60405180910390f35b61018c61046c565b604051610199919061128b565b60405180910390f35b6101bc60048036038101906101b791906112a4565b610475565b6040516101c99190611263565b60405180910390f35b6101da610570565b6040516101e7919061130f565b60405180910390f35b61020a6004803603810190610205919061120b565b610578565b6040516102179190611263565b60405180910390f35b61023a60048036038101906102359190611328565b61061f565b005b61025660048036038101906102519190611328565b61070c565b005b610272600480360381019061026d9190611328565b6107fa565b60405161027f919061128b565b60405180910390f35b61029061083f565b60405161029d9190611362565b60405180910390f35b6102ae610867565b005b6102b86109be565b6040516102c5919061115a565b60405180910390f35b6102e860048036038101906102e3919061120b565b610a4e565b6040516102f59190611263565b60405180910390f35b610306610b3d565b6040516103139190611362565b60405180910390f35b6103366004803603810190610331919061120b565b610b62565b6040516103439190611263565b60405180910390f35b61036660048036038101906103619190611328565b610b7f565b6040516103739190611263565b60405180910390f35b6103966004803603810190610391919061137b565b610b9c565b6040516103a3919061128b565b60405180910390f35b6060600380546103bb906113e6565b80601f01602080910402602001604051908101604052809291908181526020018280546103e7906113e6565b80156104325780601f1061040957610100808354040283529160200191610432565b820191905f5260205f20905b81548152906001019060200180831161041557829003601f168201915b5050505050905090565b5f61044f610448610c1e565b8484610c25565b6001905092915050565b600660149054906101000a900460ff1681565b5f600254905090565b5f610481848484610de8565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104c8610c1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053e90611486565b60405180910390fd5b61056485610553610c1e565b858461055f91906114d1565b610c25565b60019150509392505050565b5f6012905090565b5f610615610584610c1e565b848460015f610591610c1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106109190611504565b610c25565b6001905092915050565b610627610c1e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611581565b60405180910390fd5b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b610714610c1e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079990611581565b60405180910390fd5b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61086f610c1e565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490611581565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600480546109cd906113e6565b80601f01602080910402602001604051908101604052809291908181526020018280546109f9906113e6565b8015610a445780601f10610a1b57610100808354040283529160200191610a44565b820191905f5260205f20905b815481529060010190602001808311610a2757829003601f168201915b5050505050905090565b5f8060015f610a5b610c1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c9061160f565b60405180910390fd5b610b32610b20610c1e565b858584610b2d91906114d1565b610c25565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610b75610b6e610c1e565b8484610de8565b6001905092915050565b6007602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a9061169d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf89061172b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ddb919061128b565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906117b9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611847565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f45906118af565b60405180910390fd5b610f598383836110e5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd39061193d565b60405180910390fd5b8181610fe891906114d1565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110739190611504565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d7919061128b565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61112c826110ea565b61113681856110f4565b9350611146818560208601611104565b61114f81611112565b840191505092915050565b5f6020820190508181035f8301526111728184611122565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111a78261117e565b9050919050565b6111b78161119d565b81146111c1575f80fd5b50565b5f813590506111d2816111ae565b92915050565b5f819050919050565b6111ea816111d8565b81146111f4575f80fd5b50565b5f81359050611205816111e1565b92915050565b5f80604083850312156112215761122061117a565b5b5f61122e858286016111c4565b925050602061123f858286016111f7565b9150509250929050565b5f8115159050919050565b61125d81611249565b82525050565b5f6020820190506112765f830184611254565b92915050565b611285816111d8565b82525050565b5f60208201905061129e5f83018461127c565b92915050565b5f805f606084860312156112bb576112ba61117a565b5b5f6112c8868287016111c4565b93505060206112d9868287016111c4565b92505060406112ea868287016111f7565b9150509250925092565b5f60ff82169050919050565b611309816112f4565b82525050565b5f6020820190506113225f830184611300565b92915050565b5f6020828403121561133d5761133c61117a565b5b5f61134a848285016111c4565b91505092915050565b61135c8161119d565b82525050565b5f6020820190506113755f830184611353565b92915050565b5f80604083850312156113915761139061117a565b5b5f61139e858286016111c4565b92505060206113af858286016111c4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113fd57607f821691505b6020821081036114105761140f6113b9565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6114706028836110f4565b915061147b82611416565b604082019050919050565b5f6020820190508181035f83015261149d81611464565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114db826111d8565b91506114e6836111d8565b92508282039050818111156114fe576114fd6114a4565b5b92915050565b5f61150e826111d8565b9150611519836111d8565b9250828201905080821115611531576115306114a4565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61156b6020836110f4565b915061157682611537565b602082019050919050565b5f6020820190508181035f8301526115988161155f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6115f96025836110f4565b91506116048261159f565b604082019050919050565b5f6020820190508181035f830152611626816115ed565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6116876024836110f4565b91506116928261162d565b604082019050919050565b5f6020820190508181035f8301526116b48161167b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6117156022836110f4565b9150611720826116bb565b604082019050919050565b5f6020820190508181035f83015261174281611709565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6117a36025836110f4565b91506117ae82611749565b604082019050919050565b5f6020820190508181035f8301526117d081611797565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6118316023836110f4565b915061183c826117d7565b604082019050919050565b5f6020820190508181035f83015261185e81611825565b9050919050565b7f6163636f756e7420697320626f740000000000000000000000000000000000005f82015250565b5f611899600e836110f4565b91506118a482611865565b602082019050919050565b5f6020820190508181035f8301526118c68161188d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119276026836110f4565b9150611932826118cd565b604082019050919050565b5f6020820190508181035f8301526119548161191b565b905091905056fea2646970667358221220fcbb05102b6f508c3829ab44f15e01298f33c4ab87bb2a05aab446097498aa7f64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001f484152525920504f54544552204f42414d4120534f4e494320494e55203130000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): HARRY POTTER OBAMA SONIC INU 10
Arg [1] : symbol_ (string):
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [3] : 484152525920504f54544552204f42414d4120534f4e494320494e5520313000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
3122:10676:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4238:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6663:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3444:13;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5331:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7314:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5182:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8145:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6165:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6025:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5502:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9731:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9954:227;;;:::i;:::-;;4448:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8863:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3418:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5842:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3464:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6363:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:91;4283:13;4316:5;4309:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4238:91;:::o;6663:169::-;6746:4;6763:39;6772:12;:10;:12::i;:::-;6786:7;6795:6;6763:8;:39::i;:::-;6820:4;6813:11;;6663:169;;;;:::o;3444:13::-;;;;;;;;;;;;;:::o;5331:108::-;5392:7;5419:12;;5412:19;;5331:108;:::o;7314:422::-;7420:4;7437:36;7447:6;7455:9;7466:6;7437:9;:36::i;:::-;7486:24;7513:11;:19;7525:6;7513:19;;;;;;;;;;;;;;;:33;7533:12;:10;:12::i;:::-;7513:33;;;;;;;;;;;;;;;;7486:60;;7585:6;7565:16;:26;;7557:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;7647:57;7656:6;7664:12;:10;:12::i;:::-;7697:6;7678:16;:25;;;;:::i;:::-;7647:8;:57::i;:::-;7724:4;7717:11;;;7314:422;;;;;:::o;5182:84::-;5231:5;5256:2;5249:9;;5182:84;:::o;8145:215::-;8233:4;8250:80;8259:12;:10;:12::i;:::-;8273:7;8319:10;8282:11;:25;8294:12;:10;:12::i;:::-;8282:25;;;;;;;;;;;;;;;:34;8308:7;8282:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8250:8;:80::i;:::-;8348:4;8341:11;;8145:215;;;;:::o;6165:131::-;9875:12;:10;:12::i;:::-;9865:22;;:6;;;;;;;;;;;:22;;;9857:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6273:5:::1;6246:14;:24;6261:8;6246:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;6165:131:::0;:::o;6025:132::-;9875:12;:10;:12::i;:::-;9865:22;;:6;;;;;;;;;;;:22;;;9857:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6135:4:::1;6108:14;:24;6123:8;6108:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;6025:132:::0;:::o;5502:127::-;5576:7;5603:9;:18;5613:7;5603:18;;;;;;;;;;;;;;;;5596:25;;5502:127;;;:::o;9731:79::-;9769:7;9796:6;;;;;;;;;;;9789:13;;9731:79;:::o;9954:227::-;9875:12;:10;:12::i;:::-;9865:22;;:6;;;;;;;;;;;:22;;;9857:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10058:42:::1;10021:81;;10042:6;;;;;;;;;;;10021:81;;;;;;;;;;;;10130:42;10113:6;;:60;;;;;;;;;;;;;;;;;;9954:227::o:0;4448:95::-;4495:13;4528:7;4521:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4448:95;:::o;8863:377::-;8956:4;8973:24;9000:11;:25;9012:12;:10;:12::i;:::-;9000:25;;;;;;;;;;;;;;;:34;9026:7;9000:34;;;;;;;;;;;;;;;;8973:61;;9073:15;9053:16;:35;;9045:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9141:67;9150:12;:10;:12::i;:::-;9164:7;9192:15;9173:16;:34;;;;:::i;:::-;9141:8;:67::i;:::-;9228:4;9221:11;;;8863:377;;;;:::o;3418:19::-;;;;;;;;;;;;;:::o;5842:175::-;5928:4;5945:42;5955:12;:10;:12::i;:::-;5969:9;5980:6;5945:9;:42::i;:::-;6005:4;5998:11;;5842:175;;;;:::o;3464:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;6363:153::-;6453:7;6480:11;:19;6492:6;6480:19;;;;;;;;;;;;;;;:28;6500:7;6480:28;;;;;;;;;;;;;;;;6473:35;;6363:153;;;;:::o;2772:98::-;2825:7;2852:10;2845:17;;2772:98;:::o;12750:350::-;12871:1;12853:20;;:6;:20;;;12845:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;12952:1;12933:21;;:7;:21;;;12925:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13037:6;13006:11;:19;13018:6;13006:19;;;;;;;;;;;;;;;:28;13026:7;13006:28;;;;;;;;;;;;;;;:37;;;;13076:7;13059:33;;13068:6;13059:33;;;13085:6;13059:33;;;;;;:::i;:::-;;;;;;;;12750:350;;;:::o;10189:668::-;10313:1;10295:20;;:6;:20;;;10287:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10397:1;10376:23;;:9;:23;;;10368:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10459:14;:22;10474:6;10459:22;;;;;;;;;;;;;;;;;;;;;;;;;10458:23;10450:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;10513:47;10534:6;10542:9;10553:6;10513:20;:47::i;:::-;10576:21;10600:9;:17;10610:6;10600:17;;;;;;;;;;;;;;;;10576:41;;10653:6;10636:13;:23;;10628:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10749:6;10733:13;:22;;;;:::i;:::-;10713:9;:17;10723:6;10713:17;;;;;;;;;;;;;;;:42;;;;10790:6;10766:9;:20;10776:9;10766:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10831:9;10814:35;;10823:6;10814:35;;;10842:6;10814:35;;;;;;:::i;:::-;;;;;;;;10276:581;10189:668;;;:::o;13703:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:227::-;6565:34;6561:1;6553:6;6549:14;6542:58;6634:10;6629:2;6621:6;6617:15;6610:35;6425:227;:::o;6658:366::-;6800:3;6821:67;6885:2;6880:3;6821:67;:::i;:::-;6814:74;;6897:93;6986:3;6897:93;:::i;:::-;7015:2;7010:3;7006:12;6999:19;;6658:366;;;:::o;7030:419::-;7196:4;7234:2;7223:9;7219:18;7211:26;;7283:9;7277:4;7273:20;7269:1;7258:9;7254:17;7247:47;7311:131;7437:4;7311:131;:::i;:::-;7303:139;;7030:419;;;:::o;7455:180::-;7503:77;7500:1;7493:88;7600:4;7597:1;7590:15;7624:4;7621:1;7614:15;7641:194;7681:4;7701:20;7719:1;7701:20;:::i;:::-;7696:25;;7735:20;7753:1;7735:20;:::i;:::-;7730:25;;7779:1;7776;7772:9;7764:17;;7803:1;7797:4;7794:11;7791:37;;;7808:18;;:::i;:::-;7791:37;7641:194;;;;:::o;7841:191::-;7881:3;7900:20;7918:1;7900:20;:::i;:::-;7895:25;;7934:20;7952:1;7934:20;:::i;:::-;7929:25;;7977:1;7974;7970:9;7963:16;;7998:3;7995:1;7992:10;7989:36;;;8005:18;;:::i;:::-;7989:36;7841:191;;;;:::o;8038:182::-;8178:34;8174:1;8166:6;8162:14;8155:58;8038:182;:::o;8226:366::-;8368:3;8389:67;8453:2;8448:3;8389:67;:::i;:::-;8382:74;;8465:93;8554:3;8465:93;:::i;:::-;8583:2;8578:3;8574:12;8567:19;;8226:366;;;:::o;8598:419::-;8764:4;8802:2;8791:9;8787:18;8779:26;;8851:9;8845:4;8841:20;8837:1;8826:9;8822:17;8815:47;8879:131;9005:4;8879:131;:::i;:::-;8871:139;;8598:419;;;:::o;9023:224::-;9163:34;9159:1;9151:6;9147:14;9140:58;9232:7;9227:2;9219:6;9215:15;9208:32;9023:224;:::o;9253:366::-;9395:3;9416:67;9480:2;9475:3;9416:67;:::i;:::-;9409:74;;9492:93;9581:3;9492:93;:::i;:::-;9610:2;9605:3;9601:12;9594:19;;9253:366;;;:::o;9625:419::-;9791:4;9829:2;9818:9;9814:18;9806:26;;9878:9;9872:4;9868:20;9864:1;9853:9;9849:17;9842:47;9906:131;10032:4;9906:131;:::i;:::-;9898:139;;9625:419;;;:::o;10050:223::-;10190:34;10186:1;10178:6;10174:14;10167:58;10259:6;10254:2;10246:6;10242:15;10235:31;10050:223;:::o;10279:366::-;10421:3;10442:67;10506:2;10501:3;10442:67;:::i;:::-;10435:74;;10518:93;10607:3;10518:93;:::i;:::-;10636:2;10631:3;10627:12;10620:19;;10279:366;;;:::o;10651:419::-;10817:4;10855:2;10844:9;10840:18;10832:26;;10904:9;10898:4;10894:20;10890:1;10879:9;10875:17;10868:47;10932:131;11058:4;10932:131;:::i;:::-;10924:139;;10651:419;;;:::o;11076:221::-;11216:34;11212:1;11204:6;11200:14;11193:58;11285:4;11280:2;11272:6;11268:15;11261:29;11076:221;:::o;11303:366::-;11445:3;11466:67;11530:2;11525:3;11466:67;:::i;:::-;11459:74;;11542:93;11631:3;11542:93;:::i;:::-;11660:2;11655:3;11651:12;11644:19;;11303:366;;;:::o;11675:419::-;11841:4;11879:2;11868:9;11864:18;11856:26;;11928:9;11922:4;11918:20;11914:1;11903:9;11899:17;11892:47;11956:131;12082:4;11956:131;:::i;:::-;11948:139;;11675:419;;;:::o;12100:224::-;12240:34;12236:1;12228:6;12224:14;12217:58;12309:7;12304:2;12296:6;12292:15;12285:32;12100:224;:::o;12330:366::-;12472:3;12493:67;12557:2;12552:3;12493:67;:::i;:::-;12486:74;;12569:93;12658:3;12569:93;:::i;:::-;12687:2;12682:3;12678:12;12671:19;;12330:366;;;:::o;12702:419::-;12868:4;12906:2;12895:9;12891:18;12883:26;;12955:9;12949:4;12945:20;12941:1;12930:9;12926:17;12919:47;12983:131;13109:4;12983:131;:::i;:::-;12975:139;;12702:419;;;:::o;13127:222::-;13267:34;13263:1;13255:6;13251:14;13244:58;13336:5;13331:2;13323:6;13319:15;13312:30;13127:222;:::o;13355:366::-;13497:3;13518:67;13582:2;13577:3;13518:67;:::i;:::-;13511:74;;13594:93;13683:3;13594:93;:::i;:::-;13712:2;13707:3;13703:12;13696:19;;13355:366;;;:::o;13727:419::-;13893:4;13931:2;13920:9;13916:18;13908:26;;13980:9;13974:4;13970:20;13966:1;13955:9;13951:17;13944:47;14008:131;14134:4;14008:131;:::i;:::-;14000:139;;13727:419;;;:::o;14152:164::-;14292:16;14288:1;14280:6;14276:14;14269:40;14152:164;:::o;14322:366::-;14464:3;14485:67;14549:2;14544:3;14485:67;:::i;:::-;14478:74;;14561:93;14650:3;14561:93;:::i;:::-;14679:2;14674:3;14670:12;14663:19;;14322:366;;;:::o;14694:419::-;14860:4;14898:2;14887:9;14883:18;14875:26;;14947:9;14941:4;14937:20;14933:1;14922:9;14918:17;14911:47;14975:131;15101:4;14975:131;:::i;:::-;14967:139;;14694:419;;;:::o;15119:225::-;15259:34;15255:1;15247:6;15243:14;15236:58;15328:8;15323:2;15315:6;15311:15;15304:33;15119:225;:::o;15350:366::-;15492:3;15513:67;15577:2;15572:3;15513:67;:::i;:::-;15506:74;;15589:93;15678:3;15589:93;:::i;:::-;15707:2;15702:3;15698:12;15691:19;;15350:366;;;:::o;15722:419::-;15888:4;15926:2;15915:9;15911:18;15903:26;;15975:9;15969:4;15965:20;15961:1;15950:9;15946:17;15939:47;16003:131;16129:4;16003:131;:::i;:::-;15995:139;;15722:419;;;:::o
Swarm Source
ipfs://fcbb05102b6f508c3829ab44f15e01298f33c4ab87bb2a05aab446097498aa7f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.