More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 294 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 16819026 | 621 days ago | IN | 0 ETH | 0.00094234 | ||||
Approve | 16541958 | 660 days ago | IN | 0 ETH | 0.00081616 | ||||
Approve | 16538802 | 660 days ago | IN | 0 ETH | 0.0004516 | ||||
Approve | 16538802 | 660 days ago | IN | 0 ETH | 0.00045049 | ||||
Approve | 16531833 | 661 days ago | IN | 0 ETH | 0.00069341 | ||||
Approve | 16531824 | 661 days ago | IN | 0 ETH | 0.00072516 | ||||
Approve | 16471200 | 670 days ago | IN | 0 ETH | 0.0016598 | ||||
Approve | 16461035 | 671 days ago | IN | 0 ETH | 0.0007883 | ||||
Approve | 16456880 | 672 days ago | IN | 0 ETH | 0.0009632 | ||||
Approve | 16449872 | 673 days ago | IN | 0 ETH | 0.00118079 | ||||
Approve | 16447342 | 673 days ago | IN | 0 ETH | 0.00073601 | ||||
Approve | 16445459 | 673 days ago | IN | 0 ETH | 0.00080204 | ||||
Approve | 16445422 | 673 days ago | IN | 0 ETH | 0.00085822 | ||||
Approve | 16445397 | 673 days ago | IN | 0 ETH | 0.00080606 | ||||
Approve | 16445260 | 673 days ago | IN | 0 ETH | 0.00066001 | ||||
Approve | 16445229 | 673 days ago | IN | 0 ETH | 0.00087057 | ||||
Approve | 16445177 | 674 days ago | IN | 0 ETH | 0.00076821 | ||||
Approve | 16445080 | 674 days ago | IN | 0 ETH | 0.0008026 | ||||
Approve | 16444876 | 674 days ago | IN | 0 ETH | 0.00073898 | ||||
Approve | 16444874 | 674 days ago | IN | 0 ETH | 0.00069038 | ||||
Approve | 16444857 | 674 days ago | IN | 0 ETH | 0.00072694 | ||||
Approve | 16444839 | 674 days ago | IN | 0 ETH | 0.0007341 | ||||
Approve | 16444838 | 674 days ago | IN | 0 ETH | 0.00076273 | ||||
Approve | 16444802 | 674 days ago | IN | 0 ETH | 0.00074163 | ||||
Approve | 16444794 | 674 days ago | IN | 0 ETH | 0.00078683 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
16531827 | 661 days ago | 0.00163805 ETH | ||||
16531827 | 661 days ago | 0.00327611 ETH | ||||
16531827 | 661 days ago | 0.00327611 ETH | ||||
16531827 | 661 days ago | 0.00819028 ETH | ||||
16456901 | 672 days ago | 0.00174807 ETH | ||||
16456901 | 672 days ago | 0.00349614 ETH | ||||
16456901 | 672 days ago | 0.00349614 ETH | ||||
16456901 | 672 days ago | 0.00874035 ETH | ||||
16446901 | 673 days ago | 0.0023946 ETH | ||||
16446901 | 673 days ago | 0.0047892 ETH | ||||
16446901 | 673 days ago | 0.0047892 ETH | ||||
16446901 | 673 days ago | 0.011973 ETH | ||||
16445231 | 673 days ago | 0.00321166 ETH | ||||
16445231 | 673 days ago | 0.00642333 ETH | ||||
16445231 | 673 days ago | 0.00642333 ETH | ||||
16445231 | 673 days ago | 0.01605833 ETH | ||||
16444878 | 674 days ago | 0.0048577 ETH | ||||
16444878 | 674 days ago | 0.0097154 ETH | ||||
16444878 | 674 days ago | 0.0097154 ETH | ||||
16444878 | 674 days ago | 0.0242885 ETH | ||||
16444698 | 674 days ago | 0.00805213 ETH | ||||
16444698 | 674 days ago | 0.01610426 ETH | ||||
16444698 | 674 days ago | 0.01610426 ETH | ||||
16444698 | 674 days ago | 0.04026065 ETH | ||||
16443321 | 674 days ago | 0.00911748 ETH |
Loading...
Loading
Contract Name:
SIC
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** $SIC is here to create a unique project looking to reward its loyal holders and supporters through blockchain technology. /SIC_EM 🦴 TG: https://t.me/Shenziinu 🦴 Twitter: https://www.twitter.com/ShenziInu 🦴 Website: https://www.ShenziInuClub.com **/ pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { 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); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } } 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; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract SIC is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private bots; address payable private _taxWallet1; address payable private _taxWallet2; address payable private _taxWallet3; uint256 private _initialTax=12; uint256 private _finalTax=5; uint256 private _reduceTaxCountdown=40; uint256 private _preventSwapBefore=40; uint8 private constant _decimals = 8; uint256 private constant _tTotal = 1_000_000 * 10**_decimals; string private constant _name = "Shenzi Inu Club"; string private constant _symbol = "SIC"; uint256 public _maxTxAmount = 20_000 * 10**_decimals; uint256 public _maxWalletSize = 20_000 * 10**_decimals; uint256 public _taxSwap=5_000 * 10**_decimals; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _taxWallet1 = payable(0x89faAEDD8FB84C295E64190363C9aF337f9aD238); _taxWallet2 = payable(0x485E89744eA2BF9417013B6B22114E40F5EE9FE5); _taxWallet3 = payable(0x5509536525De44554aa554Fb8B05C01AF14FE39C); _balances[_msgSender()] = _tTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet1] = true; _isExcludedFromFee[_taxWallet2] = true; _isExcludedFromFee[_taxWallet3] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _approve(address owner, address spender, uint256 amount) private { 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 _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount=0; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); taxAmount = amount.mul((_reduceTaxCountdown==0)?_finalTax:_initialTax).div(100); if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] ) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); if(_reduceTaxCountdown>0){_reduceTaxCountdown--;} } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled && contractTokenBalance>_taxSwap && _reduceTaxCountdown<=_preventSwapBefore) { swapTokensForEth(_taxSwap); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } _balances[from]=_balances[from].sub(amount); _balances[to]=_balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); if(taxAmount>0){ _balances[address(this)]=_balances[address(this)].add(taxAmount); emit Transfer(from, address(this),taxAmount); } } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function removeLimits() external onlyOwner{ _maxTxAmount = _tTotal; _maxWalletSize = _tTotal; emit MaxTxAmountUpdated(_tTotal); } function sendETHToFee(uint256 amount) private { _taxWallet1.transfer(amount.mul(40).div(100)); _taxWallet2.transfer(amount.mul(40).div(100)); _taxWallet3.transfer(amount.mul(20).div(100)); } function addBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBots(address[] memory notbot) public onlyOwner { for (uint i = 0; i < notbot.length; i++) { bots[notbot[i]] = false; } } function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } receive() external payable {} function manualswap() external { swapTokensForEth(balanceOf(address(this))); } function manualsend() external { sendETHToFee(address(this).balance); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600c60085560056009556028600a556028600b556008600a6200002891906200037a565b6200003690614e2062000392565b600c55620000476008600a6200037a565b6200005590614e2062000392565b600d55620000666008600a6200037a565b620000749061138862000392565b600e556010805461ffff60a81b191690553480156200009257600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600580546001600160a01b03199081167389faaedd8fb84c295e64190363c9af337f9ad2381790915560068054821673485e89744ea2bf9417013b6b22114e40f5ee9fe517905560078054909116735509536525de44554aa554fb8b05c01af14fe39c179055620001486008600a6200037a565b6200015790620f424062000392565b336000908152600160208190526040822092909255600390620001826000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526003909352818320805485166001908117909155600554821684528284208054861682179055600654821684528284208054861682179055600754909116835291208054909216179055620002053390565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6200023f6008600a6200037a565b6200024e90620f424062000392565b60405190815260200160405180910390a3620003ac565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002bc578160001904821115620002a057620002a062000265565b80851615620002ae57918102915b93841c939080029062000280565b509250929050565b600082620002d55750600162000374565b81620002e45750600062000374565b8160018114620002fd5760028114620003085762000328565b600191505062000374565b60ff8411156200031c576200031c62000265565b50506001821b62000374565b5060208310610133831016604e8410600b84101617156200034d575081810a62000374565b6200035983836200027b565b806000190482111562000370576200037062000265565b0290505b92915050565b60006200038b60ff841683620002c4565b9392505050565b808202811582820484141762000374576200037462000265565b611a2180620003bc6000396000f3fe6080604052600436106101235760003560e01c8063751039fc116100a0578063a9059cbb11610064578063a9059cbb14610335578063c3c8cd8014610355578063c9567bf91461036a578063d34628cc1461037f578063dd62ed3e1461039f57600080fd5b8063751039fc146102a05780637d1db4a5146102b55780638da5cb5b146102cb5780638f9a55c0146102f357806395d89b411461030957600080fd5b806331c2d847116100e757806331c2d8471461020857806334376f3b1461022a5780636fc3eaec1461024057806370a0823114610255578063715018a61461028b57600080fd5b806306fdde031461012f578063095ea7b31461017957806318160ddd146101a957806323b872dd146101cc578063313ce567146101ec57600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b5060408051808201909152600f81526e29b432b73d349024b73a9021b63ab160891b60208201525b60405161017091906114f1565b60405180910390f35b34801561018557600080fd5b50610199610194366004611564565b6103e5565b6040519015158152602001610170565b3480156101b557600080fd5b506101be6103fc565b604051908152602001610170565b3480156101d857600080fd5b506101996101e7366004611590565b61041c565b3480156101f857600080fd5b5060405160088152602001610170565b34801561021457600080fd5b506102286102233660046115e7565b610485565b005b34801561023657600080fd5b506101be600e5481565b34801561024c57600080fd5b50610228610524565b34801561026157600080fd5b506101be6102703660046116ac565b6001600160a01b031660009081526001602052604090205490565b34801561029757600080fd5b5061022861052f565b3480156102ac57600080fd5b506102286105a3565b3480156102c157600080fd5b506101be600c5481565b3480156102d757600080fd5b506000546040516001600160a01b039091168152602001610170565b3480156102ff57600080fd5b506101be600d5481565b34801561031557600080fd5b5060408051808201909152600381526253494360e81b6020820152610163565b34801561034157600080fd5b50610199610350366004611564565b610652565b34801561036157600080fd5b5061022861065f565b34801561037657600080fd5b50610228610678565b34801561038b57600080fd5b5061022861039a3660046115e7565b610a32565b3480156103ab57600080fd5b506101be6103ba3660046116c9565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006103f2338484610ac4565b5060015b92915050565b600061040a6008600a6117fc565b61041790620f424061180b565b905090565b6000610429848484610be8565b61047b8433610476856040518060600160405280602881526020016119c4602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906110cc565b610ac4565b5060019392505050565b6000546001600160a01b031633146104b85760405162461bcd60e51b81526004016104af90611822565b60405180910390fd5b60005b8151811015610520576000600460008484815181106104dc576104dc611857565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806105188161186d565b9150506104bb565b5050565b61052d47611106565b565b6000546001600160a01b031633146105595760405162461bcd60e51b81526004016104af90611822565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105cd5760405162461bcd60e51b81526004016104af90611822565b6105d96008600a6117fc565b6105e690620f424061180b565b600c556105f56008600a6117fc565b61060290620f424061180b565b600d557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106326008600a6117fc565b61063f90620f424061180b565b60405190815260200160405180910390a1565b60006103f2338484610be8565b3060009081526001602052604090205461052d906111dd565b6000546001600160a01b031633146106a25760405162461bcd60e51b81526004016104af90611822565b601054600160a01b900460ff16156106fc5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104af565b600f80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107449030906107376008600a6117fc565b61047690620f424061180b565b600f60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610797573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bb9190611886565b6001600160a01b031663c9c6539630600f60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561081d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108419190611886565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b29190611886565b601080546001600160a01b039283166001600160a01b0319909116179055600f541663f305d71947306108fa816001600160a01b031660009081526001602052604090205490565b60008061090f6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610977573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061099c91906118a3565b50506010805462ff00ff60a01b1981166201000160a01b17909155600f5460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2f91906118d1565b50565b6000546001600160a01b03163314610a5c5760405162461bcd60e51b81526004016104af90611822565b60005b815181101561052057600160046000848481518110610a8057610a80611857565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610abc8161186d565b915050610a5f565b6001600160a01b038316610b265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104af565b6001600160a01b038216610b875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104af565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c4c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104af565b6001600160a01b038216610cae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104af565b60008111610d105760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104af565b600080546001600160a01b03858116911614801590610d3d57506000546001600160a01b03848116911614155b15610f89576001600160a01b03841660009081526004602052604090205460ff16158015610d8457506001600160a01b03831660009081526004602052604090205460ff16155b610d8d57600080fd5b610db86064610db2600a54600014610da757600854610dab565b6009545b8590611357565b906113e0565b6010549091506001600160a01b038581169116148015610de65750600f546001600160a01b03848116911614155b8015610e0b57506001600160a01b03831660009081526003602052604090205460ff16155b15610efb57600c54821115610e625760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104af565b600d5482610e85856001600160a01b031660009081526001602052604090205490565b610e8f91906118f3565b1115610edd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104af565b600a5415610efb57600a8054906000610ef583611906565b91905055505b30600090815260016020526040902054601054600160a81b900460ff16158015610f3357506010546001600160a01b03868116911614155b8015610f485750601054600160b01b900460ff165b8015610f555750600e5481115b8015610f655750600b54600a5411155b15610f8757610f75600e546111dd565b478015610f8557610f8547611106565b505b505b6001600160a01b038416600090815260016020526040902054610fac9083611422565b6001600160a01b038516600090815260016020526040902055610ff1610fd28383611422565b6001600160a01b03851660009081526001602052604090205490611464565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61103b8585611422565b60405190815260200160405180910390a380156110c6573060009081526001602052604090205461106c9082611464565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110bd9085815260200190565b60405180910390a35b50505050565b600081848411156110f05760405162461bcd60e51b81526004016104af91906114f1565b5060006110fd848661191d565b95945050505050565b6005546001600160a01b03166108fc6111256064610db2856028611357565b6040518115909202916000818181858888f1935050505015801561114d573d6000803e3d6000fd5b506006546001600160a01b03166108fc61116d6064610db2856028611357565b6040518115909202916000818181858888f19350505050158015611195573d6000803e3d6000fd5b506007546001600160a01b03166108fc6111b56064610db2856014611357565b6040518115909202916000818181858888f19350505050158015610520573d6000803e3d6000fd5b6010805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061122557611225611857565b6001600160a01b03928316602091820292909201810191909152600f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561127e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a29190611886565b816001815181106112b5576112b5611857565b6001600160a01b039283166020918202929092010152600f546112db9130911684610ac4565b600f5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611314908590600090869030904290600401611930565b600060405180830381600087803b15801561132e57600080fd5b505af1158015611342573d6000803e3d6000fd5b50506010805460ff60a81b1916905550505050565b600082600003611369575060006103f6565b6000611375838561180b565b90508261138285836119a1565b146113d95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104af565b9392505050565b60006113d983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114c3565b60006113d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110cc565b60008061147183856118f3565b9050838110156113d95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104af565b600081836114e45760405162461bcd60e51b81526004016104af91906114f1565b5060006110fd84866119a1565b600060208083528351808285015260005b8181101561151e57858101830151858201604001528201611502565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a2f57600080fd5b803561155f8161153f565b919050565b6000806040838503121561157757600080fd5b82356115828161153f565b946020939093013593505050565b6000806000606084860312156115a557600080fd5b83356115b08161153f565b925060208401356115c08161153f565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156115fa57600080fd5b823567ffffffffffffffff8082111561161257600080fd5b818501915085601f83011261162657600080fd5b813581811115611638576116386115d1565b8060051b604051601f19603f8301168101818110858211171561165d5761165d6115d1565b60405291825284820192508381018501918883111561167b57600080fd5b938501935b828510156116a05761169185611554565b84529385019392850192611680565b98975050505050505050565b6000602082840312156116be57600080fd5b81356113d98161153f565b600080604083850312156116dc57600080fd5b82356116e78161153f565b915060208301356116f78161153f565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561175357816000190482111561173957611739611702565b8085161561174657918102915b93841c939080029061171d565b509250929050565b60008261176a575060016103f6565b81611777575060006103f6565b816001811461178d5760028114611797576117b3565b60019150506103f6565b60ff8411156117a8576117a8611702565b50506001821b6103f6565b5060208310610133831016604e8410600b84101617156117d6575081810a6103f6565b6117e08383611718565b80600019048211156117f4576117f4611702565b029392505050565b60006113d960ff84168361175b565b80820281158282048414176103f6576103f6611702565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006001820161187f5761187f611702565b5060010190565b60006020828403121561189857600080fd5b81516113d98161153f565b6000806000606084860312156118b857600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156118e357600080fd5b815180151581146113d957600080fd5b808201808211156103f6576103f6611702565b60008161191557611915611702565b506000190190565b818103818111156103f6576103f6611702565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119805784516001600160a01b03168352938301939183019160010161195b565b50506001600160a01b03969096166060850152505050608001529392505050565b6000826119be57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bf6ddff100b280dcc4df5ca53433cdbba78d03f3cc0d9d8db5bc1402e5c20c8764736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101235760003560e01c8063751039fc116100a0578063a9059cbb11610064578063a9059cbb14610335578063c3c8cd8014610355578063c9567bf91461036a578063d34628cc1461037f578063dd62ed3e1461039f57600080fd5b8063751039fc146102a05780637d1db4a5146102b55780638da5cb5b146102cb5780638f9a55c0146102f357806395d89b411461030957600080fd5b806331c2d847116100e757806331c2d8471461020857806334376f3b1461022a5780636fc3eaec1461024057806370a0823114610255578063715018a61461028b57600080fd5b806306fdde031461012f578063095ea7b31461017957806318160ddd146101a957806323b872dd146101cc578063313ce567146101ec57600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b5060408051808201909152600f81526e29b432b73d349024b73a9021b63ab160891b60208201525b60405161017091906114f1565b60405180910390f35b34801561018557600080fd5b50610199610194366004611564565b6103e5565b6040519015158152602001610170565b3480156101b557600080fd5b506101be6103fc565b604051908152602001610170565b3480156101d857600080fd5b506101996101e7366004611590565b61041c565b3480156101f857600080fd5b5060405160088152602001610170565b34801561021457600080fd5b506102286102233660046115e7565b610485565b005b34801561023657600080fd5b506101be600e5481565b34801561024c57600080fd5b50610228610524565b34801561026157600080fd5b506101be6102703660046116ac565b6001600160a01b031660009081526001602052604090205490565b34801561029757600080fd5b5061022861052f565b3480156102ac57600080fd5b506102286105a3565b3480156102c157600080fd5b506101be600c5481565b3480156102d757600080fd5b506000546040516001600160a01b039091168152602001610170565b3480156102ff57600080fd5b506101be600d5481565b34801561031557600080fd5b5060408051808201909152600381526253494360e81b6020820152610163565b34801561034157600080fd5b50610199610350366004611564565b610652565b34801561036157600080fd5b5061022861065f565b34801561037657600080fd5b50610228610678565b34801561038b57600080fd5b5061022861039a3660046115e7565b610a32565b3480156103ab57600080fd5b506101be6103ba3660046116c9565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006103f2338484610ac4565b5060015b92915050565b600061040a6008600a6117fc565b61041790620f424061180b565b905090565b6000610429848484610be8565b61047b8433610476856040518060600160405280602881526020016119c4602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906110cc565b610ac4565b5060019392505050565b6000546001600160a01b031633146104b85760405162461bcd60e51b81526004016104af90611822565b60405180910390fd5b60005b8151811015610520576000600460008484815181106104dc576104dc611857565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806105188161186d565b9150506104bb565b5050565b61052d47611106565b565b6000546001600160a01b031633146105595760405162461bcd60e51b81526004016104af90611822565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105cd5760405162461bcd60e51b81526004016104af90611822565b6105d96008600a6117fc565b6105e690620f424061180b565b600c556105f56008600a6117fc565b61060290620f424061180b565b600d557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106326008600a6117fc565b61063f90620f424061180b565b60405190815260200160405180910390a1565b60006103f2338484610be8565b3060009081526001602052604090205461052d906111dd565b6000546001600160a01b031633146106a25760405162461bcd60e51b81526004016104af90611822565b601054600160a01b900460ff16156106fc5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104af565b600f80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107449030906107376008600a6117fc565b61047690620f424061180b565b600f60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610797573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bb9190611886565b6001600160a01b031663c9c6539630600f60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561081d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108419190611886565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b29190611886565b601080546001600160a01b039283166001600160a01b0319909116179055600f541663f305d71947306108fa816001600160a01b031660009081526001602052604090205490565b60008061090f6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610977573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061099c91906118a3565b50506010805462ff00ff60a01b1981166201000160a01b17909155600f5460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2f91906118d1565b50565b6000546001600160a01b03163314610a5c5760405162461bcd60e51b81526004016104af90611822565b60005b815181101561052057600160046000848481518110610a8057610a80611857565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610abc8161186d565b915050610a5f565b6001600160a01b038316610b265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104af565b6001600160a01b038216610b875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104af565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c4c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104af565b6001600160a01b038216610cae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104af565b60008111610d105760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104af565b600080546001600160a01b03858116911614801590610d3d57506000546001600160a01b03848116911614155b15610f89576001600160a01b03841660009081526004602052604090205460ff16158015610d8457506001600160a01b03831660009081526004602052604090205460ff16155b610d8d57600080fd5b610db86064610db2600a54600014610da757600854610dab565b6009545b8590611357565b906113e0565b6010549091506001600160a01b038581169116148015610de65750600f546001600160a01b03848116911614155b8015610e0b57506001600160a01b03831660009081526003602052604090205460ff16155b15610efb57600c54821115610e625760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104af565b600d5482610e85856001600160a01b031660009081526001602052604090205490565b610e8f91906118f3565b1115610edd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104af565b600a5415610efb57600a8054906000610ef583611906565b91905055505b30600090815260016020526040902054601054600160a81b900460ff16158015610f3357506010546001600160a01b03868116911614155b8015610f485750601054600160b01b900460ff165b8015610f555750600e5481115b8015610f655750600b54600a5411155b15610f8757610f75600e546111dd565b478015610f8557610f8547611106565b505b505b6001600160a01b038416600090815260016020526040902054610fac9083611422565b6001600160a01b038516600090815260016020526040902055610ff1610fd28383611422565b6001600160a01b03851660009081526001602052604090205490611464565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61103b8585611422565b60405190815260200160405180910390a380156110c6573060009081526001602052604090205461106c9082611464565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110bd9085815260200190565b60405180910390a35b50505050565b600081848411156110f05760405162461bcd60e51b81526004016104af91906114f1565b5060006110fd848661191d565b95945050505050565b6005546001600160a01b03166108fc6111256064610db2856028611357565b6040518115909202916000818181858888f1935050505015801561114d573d6000803e3d6000fd5b506006546001600160a01b03166108fc61116d6064610db2856028611357565b6040518115909202916000818181858888f19350505050158015611195573d6000803e3d6000fd5b506007546001600160a01b03166108fc6111b56064610db2856014611357565b6040518115909202916000818181858888f19350505050158015610520573d6000803e3d6000fd5b6010805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061122557611225611857565b6001600160a01b03928316602091820292909201810191909152600f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561127e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a29190611886565b816001815181106112b5576112b5611857565b6001600160a01b039283166020918202929092010152600f546112db9130911684610ac4565b600f5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611314908590600090869030904290600401611930565b600060405180830381600087803b15801561132e57600080fd5b505af1158015611342573d6000803e3d6000fd5b50506010805460ff60a81b1916905550505050565b600082600003611369575060006103f6565b6000611375838561180b565b90508261138285836119a1565b146113d95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104af565b9392505050565b60006113d983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114c3565b60006113d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110cc565b60008061147183856118f3565b9050838110156113d95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104af565b600081836114e45760405162461bcd60e51b81526004016104af91906114f1565b5060006110fd84866119a1565b600060208083528351808285015260005b8181101561151e57858101830151858201604001528201611502565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a2f57600080fd5b803561155f8161153f565b919050565b6000806040838503121561157757600080fd5b82356115828161153f565b946020939093013593505050565b6000806000606084860312156115a557600080fd5b83356115b08161153f565b925060208401356115c08161153f565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156115fa57600080fd5b823567ffffffffffffffff8082111561161257600080fd5b818501915085601f83011261162657600080fd5b813581811115611638576116386115d1565b8060051b604051601f19603f8301168101818110858211171561165d5761165d6115d1565b60405291825284820192508381018501918883111561167b57600080fd5b938501935b828510156116a05761169185611554565b84529385019392850192611680565b98975050505050505050565b6000602082840312156116be57600080fd5b81356113d98161153f565b600080604083850312156116dc57600080fd5b82356116e78161153f565b915060208301356116f78161153f565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561175357816000190482111561173957611739611702565b8085161561174657918102915b93841c939080029061171d565b509250929050565b60008261176a575060016103f6565b81611777575060006103f6565b816001811461178d5760028114611797576117b3565b60019150506103f6565b60ff8411156117a8576117a8611702565b50506001821b6103f6565b5060208310610133831016604e8410600b84101617156117d6575081810a6103f6565b6117e08383611718565b80600019048211156117f4576117f4611702565b029392505050565b60006113d960ff84168361175b565b80820281158282048414176103f6576103f6611702565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006001820161187f5761187f611702565b5060010190565b60006020828403121561189857600080fd5b81516113d98161153f565b6000806000606084860312156118b857600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156118e357600080fd5b815180151581146113d957600080fd5b808201808211156103f6576103f6611702565b60008161191557611915611702565b506000190190565b818103818111156103f6576103f6611702565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119805784516001600160a01b03168352938301939183019160010161195b565b50506001600160a01b03969096166060850152505050608001529392505050565b6000826119be57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bf6ddff100b280dcc4df5ca53433cdbba78d03f3cc0d9d8db5bc1402e5c20c8764736f6c63430008110033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,433.66 | 0.000000000000000001 | <$0.000001 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.