More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 126 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20650349 | 79 days ago | IN | 0 ETH | 0.00005607 | ||||
Approve | 20595854 | 86 days ago | IN | 0 ETH | 0.00005885 | ||||
Approve | 20110003 | 154 days ago | IN | 0 ETH | 0.00014984 | ||||
Approve | 19834558 | 193 days ago | IN | 0 ETH | 0.00018096 | ||||
Approve | 18608763 | 364 days ago | IN | 0 ETH | 0.0015376 | ||||
Approve | 18583215 | 368 days ago | IN | 0 ETH | 0.00152519 | ||||
Approve | 18578886 | 369 days ago | IN | 0 ETH | 0.00267283 | ||||
Transfer | 18578884 | 369 days ago | IN | 0 ETH | 0.00404084 | ||||
Approve | 18578877 | 369 days ago | IN | 0 ETH | 0.0013319 | ||||
Approve | 18578860 | 369 days ago | IN | 0 ETH | 0.00246163 | ||||
Transfer | 18578803 | 369 days ago | IN | 0 ETH | 0.00378498 | ||||
Approve | 18578798 | 369 days ago | IN | 0 ETH | 0.00266202 | ||||
Approve | 18578762 | 369 days ago | IN | 0 ETH | 0.00236323 | ||||
Approve | 18578667 | 369 days ago | IN | 0 ETH | 0.00289678 | ||||
Approve | 18578661 | 369 days ago | IN | 0 ETH | 0.00258886 | ||||
Transfer | 18578619 | 369 days ago | IN | 0 ETH | 0.00295416 | ||||
Approve | 18578486 | 369 days ago | IN | 0 ETH | 0.00163445 | ||||
Approve | 18578469 | 369 days ago | IN | 0 ETH | 0.00194519 | ||||
Approve | 18578469 | 369 days ago | IN | 0 ETH | 0.00203782 | ||||
Approve | 18578461 | 369 days ago | IN | 0 ETH | 0.00171745 | ||||
Transfer | 18578461 | 369 days ago | IN | 0 ETH | 0.00273664 | ||||
Approve | 18578455 | 369 days ago | IN | 0 ETH | 0.00120357 | ||||
Approve | 18578426 | 369 days ago | IN | 0 ETH | 0.00228564 | ||||
Approve | 18578425 | 369 days ago | IN | 0 ETH | 0.00201505 | ||||
Approve | 18578419 | 369 days ago | IN | 0 ETH | 0.00234292 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20110295 | 154 days ago | 0.00226877 ETH | ||||
18578880 | 369 days ago | 0.02429882 ETH | ||||
18578422 | 369 days ago | 0.12224233 ETH | ||||
18578422 | 369 days ago | 0.12224233 ETH | ||||
18578420 | 369 days ago | 0.15314676 ETH | ||||
18578420 | 369 days ago | 0.15314676 ETH | ||||
18578410 | 369 days ago | 0.20426517 ETH | ||||
18578410 | 369 days ago | 0.20426517 ETH | ||||
18578248 | 369 days ago | 0.0892028 ETH | ||||
18578248 | 369 days ago | 0.0892028 ETH | ||||
18578231 | 369 days ago | 0.1912096 ETH | ||||
18578231 | 369 days ago | 0.1912096 ETH | ||||
18578219 | 369 days ago | 0.18992423 ETH | ||||
18578219 | 369 days ago | 0.18992423 ETH | ||||
18578205 | 369 days ago | 0.08482085 ETH | ||||
18578205 | 369 days ago | 0.08482085 ETH | ||||
18578203 | 369 days ago | 0.06870684 ETH | ||||
18578203 | 369 days ago | 0.06870684 ETH | ||||
18578202 | 369 days ago | 0.19441434 ETH | ||||
18578202 | 369 days ago | 0.19441434 ETH | ||||
18578029 | 369 days ago | 0.16155555 ETH | ||||
18578029 | 369 days ago | 0.16155555 ETH | ||||
18577994 | 369 days ago | 0.09987297 ETH | ||||
18577994 | 369 days ago | 0.09987297 ETH | ||||
18577887 | 369 days ago | 0.14615675 ETH |
Loading...
Loading
Contract Name:
BABYWEB
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* */ pragma solidity 0.8.20; 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 BABYWEB 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; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = true; address payable private _taxWallet; uint256 private _initialBuyTax=20; uint256 private _initialSellTax=25; uint256 private _finalBuyTax=1; uint256 private _finalSellTax=1; uint256 private _reduceBuyTaxAt=15; uint256 private _reduceSellTaxAt=15; uint256 private _preventSwapBefore=20; uint256 private _buyCount=0; uint8 private constant _decimals = 9; uint256 private constant _tTotal = 1000000000 * 10**_decimals; string private constant _name = "BABY WEB"; string private constant _symbol = "BWEB"; uint256 public _maxTxAmount = 19000000 * 10**_decimals; uint256 public _maxWalletSize = 19000000 * 10**_decimals; uint256 public _taxSwapThreshold= 5000000 * 10**_decimals; uint256 public _maxTaxSwap= 10000000 * 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 () { _taxWallet = payable(_msgSender()); _balances[_msgSender()] = _tTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = 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()) { taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100); if (transferDelayEnabled) { if (to != address(uniswapV2Router) && to != address(uniswapV2Pair)) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] ) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); _buyCount++; } if(to == uniswapV2Pair && from!= address(this) ){ taxAmount = amount.mul((_buyCount>_reduceSellTaxAt)?_finalSellTax:_initialSellTax).div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance>_taxSwapThreshold && _buyCount>_preventSwapBefore) { swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap))); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 50000000000000000) { sendETHToFee(address(this).balance); } } } if(taxAmount>0){ _balances[address(this)]=_balances[address(this)].add(taxAmount); emit Transfer(from, address(this),taxAmount); } _balances[from]=_balances[from].sub(amount); _balances[to]=_balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a>b)?b:a; } 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; transferDelayEnabled=false; emit MaxTxAmountUpdated(_tTotal); } function sendETHToFee(uint256 amount) private { _taxWallet.transfer(amount); } function opentrade() 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); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; } receive() external payable {} function manualSwap() external { require(_msgSender()==_taxWallet); uint256 tokenBalance=balanceOf(address(this)); if(tokenBalance>0){ swapTokensForEth(tokenBalance); } uint256 ethBalance=address(this).balance; if(ethBalance>0){ sendETHToFee(ethBalance); } } }
{ "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":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"opentrade","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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
60806040526006805460ff191660019081179091556014600781905560196008556009828155600a928355600f600b819055600c55600d919091555f600e55620000499162000348565b6200005990630121eac06200035f565b600f556200006a6009600a62000348565b6200007a90630121eac06200035f565b6010556200008b6009600a62000348565b6200009a90624c4b406200035f565b601155620000ab6009600a62000348565b620000ba90629896806200035f565b6012556014805461ffff60a81b19169055348015620000d7575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060068054610100600160a81b03191661010033021790556200013d6009600a62000348565b6200014d90633b9aca006200035f565b335f908152600160208190526040822092909255600390620001765f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260039093528183208054851660019081179091556006546101009004909116835291208054909216179055620001d93390565b6001600160a01b03165f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002126009600a62000348565b6200022290633b9aca006200035f565b60405190815260200160405180910390a362000379565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200028d57815f190482111562000271576200027162000239565b808516156200027f57918102915b93841c939080029062000252565b509250929050565b5f82620002a55750600162000342565b81620002b357505f62000342565b8160018114620002cc5760028114620002d757620002f7565b600191505062000342565b60ff841115620002eb57620002eb62000239565b50506001821b62000342565b5060208310610133831016604e8410600b84101617156200031c575081810a62000342565b6200032883836200024d565b805f19048211156200033e576200033e62000239565b0290505b92915050565b5f6200035860ff84168362000295565b9392505050565b808202811582820484141762000342576200034262000239565b6117fc80620003875f395ff3fe608060405260043610610113575f3560e01c8063751039fc1161009d57806395d89b411161006257806395d89b41146102d6578063a9059cbb14610302578063bf474bed14610321578063c876d0b914610336578063dd62ed3e1461034f575f80fd5b8063751039fc1461025e5780637d1db4a5146102725780638d0076d5146102875780638da5cb5b1461029b5780638f9a55c0146102c1575f80fd5b806323b872dd116100e357806323b872dd146101c6578063313ce567146101e557806351bc3c851461020057806370a0823114610216578063715018a61461024a575f80fd5b806306fdde031461011e578063095ea7b3146101605780630faee56f1461018f57806318160ddd146101b2575f80fd5b3661011a57005b5f80fd5b348015610129575f80fd5b506040805180820190915260088152672120a12c902ba2a160c11b60208201525b60405161015791906113ef565b60405180910390f35b34801561016b575f80fd5b5061017f61017a366004611451565b610393565b6040519015158152602001610157565b34801561019a575f80fd5b506101a460125481565b604051908152602001610157565b3480156101bd575f80fd5b506101a46103a9565b3480156101d1575f80fd5b5061017f6101e036600461147b565b6103c9565b3480156101f0575f80fd5b5060405160098152602001610157565b34801561020b575f80fd5b50610214610430565b005b348015610221575f80fd5b506101a46102303660046114b9565b6001600160a01b03165f9081526001602052604090205490565b348015610255575f80fd5b50610214610486565b348015610269575f80fd5b50610214610500565b34801561027d575f80fd5b506101a4600f5481565b348015610292575f80fd5b506102146105bb565b3480156102a6575f80fd5b505f546040516001600160a01b039091168152602001610157565b3480156102cc575f80fd5b506101a460105481565b3480156102e1575f80fd5b50604080518082019091526004815263212ba2a160e11b602082015261014a565b34801561030d575f80fd5b5061017f61031c366004611451565b610964565b34801561032c575f80fd5b506101a460115481565b348015610341575f80fd5b5060065461017f9060ff1681565b34801561035a575f80fd5b506101a46103693660046114d4565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f61039f338484610970565b5060015b92915050565b5f6103b66009600a6115ff565b6103c490633b9aca0061160d565b905090565b5f6103d5848484610a93565b61042684336104218560405180606001604052806028815260200161179f602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611067565b610970565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b031614610454575f80fd5b305f908152600160205260409020548015610472576104728161109f565b478015610482576104828161120f565b5050565b5f546001600160a01b031633146104b85760405162461bcd60e51b81526004016104af90611624565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105295760405162461bcd60e51b81526004016104af90611624565b6105356009600a6115ff565b61054390633b9aca0061160d565b600f556105526009600a6115ff565b61056090633b9aca0061160d565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61059a6009600a6115ff565b6105a890633b9aca0061160d565b60405190815260200160405180910390a1565b5f546001600160a01b031633146105e45760405162461bcd60e51b81526004016104af90611624565b601454600160a01b900460ff161561063e5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104af565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106879030906106796009600a6115ff565b61042190633b9aca0061160d565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106fb9190611659565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561075a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061077e9190611659565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156107c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ec9190611659565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d7194730610833816001600160a01b03165f9081526001602052604090205490565b5f806108465f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156108ac573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108d19190611674565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610926573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061094a919061169f565b506014805462ff00ff60a01b19166201000160a01b179055565b5f61039f338484610a93565b6001600160a01b0383166109d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104af565b6001600160a01b038216610a335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104af565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610af75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104af565b6001600160a01b038216610b595760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104af565b5f8111610bba5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104af565b5f80546001600160a01b03858116911614801590610be557505f546001600160a01b03848116911614155b15610f2a57610c166064610c10600b54600e5411610c0557600754610c09565b6009545b859061124a565b906112cf565b60065490915060ff1615610cfc576013546001600160a01b03848116911614801590610c5057506014546001600160a01b03848116911614155b15610cfc57325f908152600560205260409020544311610cea5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016104af565b325f9081526005602052604090204390555b6014546001600160a01b038581169116148015610d2757506013546001600160a01b03848116911614155b8015610d4b57506001600160a01b0383165f9081526003602052604090205460ff16155b15610e3157600f54821115610da25760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104af565b60105482610dc4856001600160a01b03165f9081526001602052604090205490565b610dce91906116be565b1115610e1c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104af565b600e8054905f610e2b836116d1565b91905055505b6014546001600160a01b038481169116148015610e5757506001600160a01b0384163014155b15610e8457610e816064610c10600c54600e5411610e7757600854610c09565b600a54859061124a565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610eba57506014546001600160a01b038581169116145b8015610ecf5750601454600160b01b900460ff165b8015610edc575060115481115b8015610eeb5750600d54600e54115b15610f2857610f0d610f0884610f0384601254611310565b611310565b61109f565b4766b1a2bc2ec50000811115610f2657610f264761120f565b505b505b8015610fa257305f90815260016020526040902054610f499082611324565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f999085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054610fc49083611382565b6001600160a01b0385165f90815260016020526040902055611007610fe98383611382565b6001600160a01b0385165f9081526001602052604090205490611324565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110508585611382565b60405190815260200160405180910390a350505050565b5f818484111561108a5760405162461bcd60e51b81526004016104af91906113ef565b505f61109684866116e9565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110e5576110e56116fc565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561113c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111609190611659565b81600181518110611173576111736116fc565b6001600160a01b0392831660209182029290920101526013546111999130911684610970565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906111d19085905f90869030904290600401611710565b5f604051808303815f87803b1580156111e8575f80fd5b505af11580156111fa573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f19350505050158015610482573d5f803e3d5ffd5b5f825f0361125957505f6103a3565b5f611264838561160d565b905082611271858361177f565b146112c85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104af565b9392505050565b5f6112c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113c3565b5f81831161131e57826112c8565b50919050565b5f8061133083856116be565b9050838110156112c85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104af565b5f6112c883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611067565b5f81836113e35760405162461bcd60e51b81526004016104af91906113ef565b505f611096848661177f565b5f6020808352835180828501525f5b8181101561141a578581018301518582016040015282016113fe565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461144e575f80fd5b50565b5f8060408385031215611462575f80fd5b823561146d8161143a565b946020939093013593505050565b5f805f6060848603121561148d575f80fd5b83356114988161143a565b925060208401356114a88161143a565b929592945050506040919091013590565b5f602082840312156114c9575f80fd5b81356112c88161143a565b5f80604083850312156114e5575f80fd5b82356114f08161143a565b915060208301356115008161143a565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561155957815f190482111561153f5761153f61150b565b8085161561154c57918102915b93841c9390800290611524565b509250929050565b5f8261156f575060016103a3565b8161157b57505f6103a3565b8160018114611591576002811461159b576115b7565b60019150506103a3565b60ff8411156115ac576115ac61150b565b50506001821b6103a3565b5060208310610133831016604e8410600b84101617156115da575081810a6103a3565b6115e4838361151f565b805f19048211156115f7576115f761150b565b029392505050565b5f6112c860ff841683611561565b80820281158282048414176103a3576103a361150b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611669575f80fd5b81516112c88161143a565b5f805f60608486031215611686575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156116af575f80fd5b815180151581146112c8575f80fd5b808201808211156103a3576103a361150b565b5f600182016116e2576116e261150b565b5060010190565b818103818111156103a3576103a361150b565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561175e5784516001600160a01b031683529383019391830191600101611739565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261179957634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212209158b2a0310587db1b66440df9d017bda05cdcefb53c25574b17a8d87b8c41f964736f6c63430008140033
Deployed Bytecode
0x608060405260043610610113575f3560e01c8063751039fc1161009d57806395d89b411161006257806395d89b41146102d6578063a9059cbb14610302578063bf474bed14610321578063c876d0b914610336578063dd62ed3e1461034f575f80fd5b8063751039fc1461025e5780637d1db4a5146102725780638d0076d5146102875780638da5cb5b1461029b5780638f9a55c0146102c1575f80fd5b806323b872dd116100e357806323b872dd146101c6578063313ce567146101e557806351bc3c851461020057806370a0823114610216578063715018a61461024a575f80fd5b806306fdde031461011e578063095ea7b3146101605780630faee56f1461018f57806318160ddd146101b2575f80fd5b3661011a57005b5f80fd5b348015610129575f80fd5b506040805180820190915260088152672120a12c902ba2a160c11b60208201525b60405161015791906113ef565b60405180910390f35b34801561016b575f80fd5b5061017f61017a366004611451565b610393565b6040519015158152602001610157565b34801561019a575f80fd5b506101a460125481565b604051908152602001610157565b3480156101bd575f80fd5b506101a46103a9565b3480156101d1575f80fd5b5061017f6101e036600461147b565b6103c9565b3480156101f0575f80fd5b5060405160098152602001610157565b34801561020b575f80fd5b50610214610430565b005b348015610221575f80fd5b506101a46102303660046114b9565b6001600160a01b03165f9081526001602052604090205490565b348015610255575f80fd5b50610214610486565b348015610269575f80fd5b50610214610500565b34801561027d575f80fd5b506101a4600f5481565b348015610292575f80fd5b506102146105bb565b3480156102a6575f80fd5b505f546040516001600160a01b039091168152602001610157565b3480156102cc575f80fd5b506101a460105481565b3480156102e1575f80fd5b50604080518082019091526004815263212ba2a160e11b602082015261014a565b34801561030d575f80fd5b5061017f61031c366004611451565b610964565b34801561032c575f80fd5b506101a460115481565b348015610341575f80fd5b5060065461017f9060ff1681565b34801561035a575f80fd5b506101a46103693660046114d4565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f61039f338484610970565b5060015b92915050565b5f6103b66009600a6115ff565b6103c490633b9aca0061160d565b905090565b5f6103d5848484610a93565b61042684336104218560405180606001604052806028815260200161179f602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611067565b610970565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b031614610454575f80fd5b305f908152600160205260409020548015610472576104728161109f565b478015610482576104828161120f565b5050565b5f546001600160a01b031633146104b85760405162461bcd60e51b81526004016104af90611624565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105295760405162461bcd60e51b81526004016104af90611624565b6105356009600a6115ff565b61054390633b9aca0061160d565b600f556105526009600a6115ff565b61056090633b9aca0061160d565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61059a6009600a6115ff565b6105a890633b9aca0061160d565b60405190815260200160405180910390a1565b5f546001600160a01b031633146105e45760405162461bcd60e51b81526004016104af90611624565b601454600160a01b900460ff161561063e5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104af565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106879030906106796009600a6115ff565b61042190633b9aca0061160d565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106fb9190611659565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561075a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061077e9190611659565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156107c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ec9190611659565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d7194730610833816001600160a01b03165f9081526001602052604090205490565b5f806108465f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156108ac573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108d19190611674565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610926573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061094a919061169f565b506014805462ff00ff60a01b19166201000160a01b179055565b5f61039f338484610a93565b6001600160a01b0383166109d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104af565b6001600160a01b038216610a335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104af565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610af75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104af565b6001600160a01b038216610b595760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104af565b5f8111610bba5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104af565b5f80546001600160a01b03858116911614801590610be557505f546001600160a01b03848116911614155b15610f2a57610c166064610c10600b54600e5411610c0557600754610c09565b6009545b859061124a565b906112cf565b60065490915060ff1615610cfc576013546001600160a01b03848116911614801590610c5057506014546001600160a01b03848116911614155b15610cfc57325f908152600560205260409020544311610cea5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016104af565b325f9081526005602052604090204390555b6014546001600160a01b038581169116148015610d2757506013546001600160a01b03848116911614155b8015610d4b57506001600160a01b0383165f9081526003602052604090205460ff16155b15610e3157600f54821115610da25760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104af565b60105482610dc4856001600160a01b03165f9081526001602052604090205490565b610dce91906116be565b1115610e1c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104af565b600e8054905f610e2b836116d1565b91905055505b6014546001600160a01b038481169116148015610e5757506001600160a01b0384163014155b15610e8457610e816064610c10600c54600e5411610e7757600854610c09565b600a54859061124a565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610eba57506014546001600160a01b038581169116145b8015610ecf5750601454600160b01b900460ff165b8015610edc575060115481115b8015610eeb5750600d54600e54115b15610f2857610f0d610f0884610f0384601254611310565b611310565b61109f565b4766b1a2bc2ec50000811115610f2657610f264761120f565b505b505b8015610fa257305f90815260016020526040902054610f499082611324565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f999085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054610fc49083611382565b6001600160a01b0385165f90815260016020526040902055611007610fe98383611382565b6001600160a01b0385165f9081526001602052604090205490611324565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110508585611382565b60405190815260200160405180910390a350505050565b5f818484111561108a5760405162461bcd60e51b81526004016104af91906113ef565b505f61109684866116e9565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110e5576110e56116fc565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561113c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111609190611659565b81600181518110611173576111736116fc565b6001600160a01b0392831660209182029290920101526013546111999130911684610970565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906111d19085905f90869030904290600401611710565b5f604051808303815f87803b1580156111e8575f80fd5b505af11580156111fa573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f19350505050158015610482573d5f803e3d5ffd5b5f825f0361125957505f6103a3565b5f611264838561160d565b905082611271858361177f565b146112c85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104af565b9392505050565b5f6112c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113c3565b5f81831161131e57826112c8565b50919050565b5f8061133083856116be565b9050838110156112c85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104af565b5f6112c883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611067565b5f81836113e35760405162461bcd60e51b81526004016104af91906113ef565b505f611096848661177f565b5f6020808352835180828501525f5b8181101561141a578581018301518582016040015282016113fe565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461144e575f80fd5b50565b5f8060408385031215611462575f80fd5b823561146d8161143a565b946020939093013593505050565b5f805f6060848603121561148d575f80fd5b83356114988161143a565b925060208401356114a88161143a565b929592945050506040919091013590565b5f602082840312156114c9575f80fd5b81356112c88161143a565b5f80604083850312156114e5575f80fd5b82356114f08161143a565b915060208301356115008161143a565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561155957815f190482111561153f5761153f61150b565b8085161561154c57918102915b93841c9390800290611524565b509250929050565b5f8261156f575060016103a3565b8161157b57505f6103a3565b8160018114611591576002811461159b576115b7565b60019150506103a3565b60ff8411156115ac576115ac61150b565b50506001821b6103a3565b5060208310610133831016604e8410600b84101617156115da575081810a6103a3565b6115e4838361151f565b805f19048211156115f7576115f761150b565b029392505050565b5f6112c860ff841683611561565b80820281158282048414176103a3576103a361150b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611669575f80fd5b81516112c88161143a565b5f805f60608486031215611686575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156116af575f80fd5b815180151581146112c8575f80fd5b808201808211156103a3576103a361150b565b5f600182016116e2576116e261150b565b5060010190565b818103818111156103a3576103a361150b565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561175e5784516001600160a01b031683529383019391830191600101611739565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261179957634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212209158b2a0310587db1b66440df9d017bda05cdcefb53c25574b17a8d87b8c41f964736f6c63430008140033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,166.4 | 0.0266 | $84.12 |
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.