Overview
ETH Balance
1 ETH
Eth Value
$3,350.29 (@ $3,350.29/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 53 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 20717553 | 113 days ago | IN | 0 ETH | 0.00014214 | ||||
Transfer | 20710057 | 114 days ago | IN | 1 ETH | 0.00006011 | ||||
Approve | 20710051 | 114 days ago | IN | 0 ETH | 0.00034623 | ||||
Approve | 20710047 | 114 days ago | IN | 0 ETH | 0.00034756 | ||||
Approve | 20710044 | 114 days ago | IN | 0 ETH | 0.00020775 | ||||
Approve | 20710044 | 114 days ago | IN | 0 ETH | 0.00020775 | ||||
Approve | 20710041 | 114 days ago | IN | 0 ETH | 0.00030028 | ||||
Approve | 20710037 | 114 days ago | IN | 0 ETH | 0.00034222 | ||||
Approve | 20710034 | 114 days ago | IN | 0 ETH | 0.00029995 | ||||
Approve | 20710034 | 114 days ago | IN | 0 ETH | 0.00029995 | ||||
Approve | 20710033 | 114 days ago | IN | 0 ETH | 0.00030085 | ||||
Approve | 20710032 | 114 days ago | IN | 0 ETH | 0.00076817 | ||||
Approve | 20710031 | 114 days ago | IN | 0 ETH | 0.00020152 | ||||
Approve | 20710031 | 114 days ago | IN | 0 ETH | 0.00020152 | ||||
Approve | 20710031 | 114 days ago | IN | 0 ETH | 0.00034125 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00020922 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00020922 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00020922 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00020922 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00030229 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00258465 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00258465 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00258465 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00258465 | ||||
Approve | 20710029 | 114 days ago | IN | 0 ETH | 0.00258465 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20710050 | 114 days ago | 0.01904577 ETH | ||||
20710050 | 114 days ago | 0.01904577 ETH | ||||
20710048 | 114 days ago | 0.01945575 ETH | ||||
20710048 | 114 days ago | 0.01945575 ETH | ||||
20710046 | 114 days ago | 0.01420032 ETH | ||||
20710046 | 114 days ago | 0.01420032 ETH | ||||
20710046 | 114 days ago | 0.01711318 ETH | ||||
20710046 | 114 days ago | 0.01711318 ETH | ||||
20710045 | 114 days ago | 0.02300054 ETH | ||||
20710045 | 114 days ago | 0.02300054 ETH | ||||
20710043 | 114 days ago | 0.01483514 ETH | ||||
20710043 | 114 days ago | 0.01483514 ETH | ||||
20710041 | 114 days ago | 0.0241556 ETH | ||||
20710041 | 114 days ago | 0.0241556 ETH | ||||
20710041 | 114 days ago | 0.02734985 ETH | ||||
20710041 | 114 days ago | 0.02734985 ETH | ||||
20710036 | 114 days ago | 0.02669144 ETH | ||||
20710036 | 114 days ago | 0.02669144 ETH | ||||
20710034 | 114 days ago | 0.0293575 ETH | ||||
20710034 | 114 days ago | 0.0293575 ETH | ||||
20710034 | 114 days ago | 0.03368616 ETH | ||||
20710034 | 114 days ago | 0.03368616 ETH | ||||
20710034 | 114 days ago | 0.03904856 ETH | ||||
20710034 | 114 days ago | 0.03904856 ETH | ||||
20710033 | 114 days ago | 0.04580223 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MasterYoda
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-09 */ // // SPDX-License-Identifier: MIT pragma solidity 0.8.23; 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 MasterYoda 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 _taxWallet; string private constant _name = unicode"Master Yoda"; string private constant _symbol = unicode"Yoda"; uint256 private _initialBuyTax=20; uint256 private _initialSellTax=20; uint256 private _finalBuyTax=0; uint256 private _finalSellTax=0; uint256 private _reduceBuyTaxAt=23; uint256 private _reduceSellTaxAt=23; uint256 private _preventSwapBefore=0; uint256 private _buyCount=0; uint8 private constant _decimals = 18; uint256 private constant _tTotal = 420690000000 * 10**_decimals; uint256 public _maxTxAmount = 8413800000 * 10**_decimals; uint256 public _maxWalletSize = 8413800000 * 10**_decimals; uint256 public _taxSwapThreshold= _tTotal / 100; uint256 public _maxTaxSwap= _tTotal / 100; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private takeTax = true; uint256 private sellCount = 0; uint256 private lastSellBlock = 0; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () payable { _taxWallet = payable(address(owner())); _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()) { require(!bots[from] && !bots[to]); if (takeTax) { taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100); } 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) { if (block.number > lastSellBlock) { sellCount = 0; } require(sellCount < 3, "Only 3 sells per block!"); swapTokensForEth(min(amount, min(contractTokenBalance, _maxTaxSwap))); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } sellCount++; lastSellBlock = block.number; } } 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; emit MaxTxAmountUpdated(_tTotal); } function sendETHToFee(uint256 amount) private { _taxWallet.transfer(amount); } 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 isBot(address a) public view returns (bool){ return bots[a]; } function openTrading() public onlyOwner() { require(!tradingOpen, "trading is already open"); address routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; if (block.chainid == 56) { routerAddress = 0x10ED43C718714eb63d5aA57B78B54704E256024E; } else if (block.chainid == 97) { routerAddress = 0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3; } else if (block.chainid == 1 || block.chainid == 4 || block.chainid == 3 || block.chainid == 5 || block.chainid == 31337) { routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; } else if(block.chainid == 11155111){ routerAddress = 0xC532a74256D3Db42D0Bf7a0400fEFDbad7694008; } else { revert(); } uniswapV2Router = IUniswapV2Router02(routerAddress); takeTax = false; _approve(address(this), msg.sender, type(uint256).max); transfer(address(this), balanceOf(msg.sender)); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), type(uint256).max); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)).mul(100 - 15).div(100),0,0,owner(),block.timestamp); takeTax = true; 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); } } function manualsend() external { require(_msgSender()==_taxWallet); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } }
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":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":"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":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualsend","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
6080604052601460065560146007555f6008555f6009556017600a556017600b555f600c555f600d556012600a62000038919062000376565b62000049906401f58066406200038d565b600e556200005a6012600a62000376565b6200006b906401f58066406200038d565b600f5560646200007e6012600a62000376565b6200008f906461f313f8806200038d565b6200009b9190620003a7565b6010556064620000ae6012600a62000376565b620000bf906461f313f8806200038d565b620000cb9190620003a7565b6011556013805462ffffff60a81b1916600160b81b1790555f60148190556015819055620000f63390565b5f80546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3505f54600580546001600160a01b0319166001600160a01b039092169190911790556200016e6012600a62000376565b6200017f906461f313f8806200038d565b335f908152600160208190526040822092909255600390620001a85f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790553081526003909352818320805485166001908117909155600554909116835291208054909216179055620002063390565b6001600160a01b03165f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6200023f6012600a62000376565b62000250906461f313f8806200038d565b60405190815260200160405180910390a3620003c7565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620002bb57815f19048211156200029f576200029f62000267565b80851615620002ad57918102915b93841c939080029062000280565b509250929050565b5f82620002d35750600162000370565b81620002e157505f62000370565b8160018114620002fa5760028114620003055762000325565b600191505062000370565b60ff84111562000319576200031962000267565b50506001821b62000370565b5060208310610133831016604e8410600b84101617156200034a575081810a62000370565b6200035683836200027b565b805f19048211156200036c576200036c62000267565b0290505b92915050565b5f6200038660ff841683620002c3565b9392505050565b808202811582820484141762000370576200037062000267565b5f82620003c257634e487b7160e01b5f52601260045260245ffd5b500490565b611b8c80620003d55f395ff3fe608060405260043610610134575f3560e01c8063715018a6116100a857806395d89b411161006d57806395d89b4114610350578063a9059cbb1461037c578063bf474bed1461039b578063c9567bf9146103b0578063d34628cc146103c4578063dd62ed3e146103e3575f80fd5b8063715018a6146102d8578063751039fc146102ec5780637d1db4a5146103005780638da5cb5b146103155780638f9a55c01461033b575f80fd5b8063313ce567116100f9578063313ce5671461020957806331c2d847146102245780633bbac5791461024557806351bc3c851461027c5780636fc3eaec1461029057806370a08231146102a4575f80fd5b806306fdde031461013f578063095ea7b3146101845780630faee56f146101b357806318160ddd146101d657806323b872dd146101ea575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201909152600b81526a4d617374657220596f646160a81b60208201525b60405161017b919061169b565b60405180910390f35b34801561018f575f80fd5b506101a361019e36600461170b565b610427565b604051901515815260200161017b565b3480156101be575f80fd5b506101c860115481565b60405190815260200161017b565b3480156101e1575f80fd5b506101c861043d565b3480156101f5575f80fd5b506101a3610204366004611735565b61045e565b348015610214575f80fd5b506040516012815260200161017b565b34801561022f575f80fd5b5061024361023e366004611787565b6104c5565b005b348015610250575f80fd5b506101a361025f366004611847565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610287575f80fd5b50610243610555565b34801561029b575f80fd5b506102436105a2565b3480156102af575f80fd5b506101c86102be366004611847565b6001600160a01b03165f9081526001602052604090205490565b3480156102e3575f80fd5b506102436105ce565b3480156102f7575f80fd5b5061024361063f565b34801561030b575f80fd5b506101c8600e5481565b348015610320575f80fd5b505f546040516001600160a01b03909116815260200161017b565b348015610346575f80fd5b506101c8600f5481565b34801561035b575f80fd5b50604080518082019091526004815263596f646160e01b602082015261016e565b348015610387575f80fd5b506101a361039636600461170b565b6106f3565b3480156103a6575f80fd5b506101c860105481565b3480156103bb575f80fd5b506102436106ff565b3480156103cf575f80fd5b506102436103de366004611787565b610bbb565b3480156103ee575f80fd5b506101c86103fd366004611862565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610433338484610c3f565b5060015b92915050565b5f61044a6012600a61198d565b610459906461f313f88061199b565b905090565b5f61046a848484610d62565b6104bb84336104b685604051806060016040528060288152602001611b2f602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611317565b610c3f565b5060019392505050565b5f546001600160a01b031633146104f75760405162461bcd60e51b81526004016104ee906119b2565b60405180910390fd5b5f5b8151811015610551575f60045f848481518110610518576105186119e7565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016104f9565b5050565b6005546001600160a01b0316336001600160a01b031614610574575f80fd5b305f908152600160205260409020548015610592576105928161134f565b47801561055157610551816114bf565b6005546001600160a01b0316336001600160a01b0316146105c1575f80fd5b476105cb816114bf565b50565b5f546001600160a01b031633146105f75760405162461bcd60e51b81526004016104ee906119b2565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106685760405162461bcd60e51b81526004016104ee906119b2565b6106746012600a61198d565b610683906461f313f88061199b565b600e556106926012600a61198d565b6106a1906461f313f88061199b565b600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106d16012600a61198d565b6106e0906461f313f88061199b565b60405190815260200160405180910390a1565b5f610433338484610d62565b5f546001600160a01b031633146107285760405162461bcd60e51b81526004016104ee906119b2565b601354600160a01b900460ff16156107825760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104ee565b737a250d5630b4cf539739df2c5dacb4c659f2488d466038036107ba57507310ed43c718714eb63d5aa57b78b54704e256024e61084f565b466061036107dd5750739ac64cc6e4415144c455bd8e4837fea55603e5c361084f565b46600114806107ec5750466004145b806107f75750466003145b806108025750466005145b8061080e575046617a69145b1561082e5750737a250d5630b4cf539739df2c5dacb4c659f2488d61084f565b4662aa36a70361013b575073c532a74256d3db42d0bf7a0400fefdbad76940085b601280546001600160a01b0319166001600160a01b0383161790556013805460ff60b81b1916905561088330335f19610c3f565b335f9081526001602052604090205461089d9030906106f3565b5060125f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091291906119fb565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610971573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061099591906119fb565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156109df573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0391906119fb565b601380546001600160a01b0319166001600160a01b03928316179055601254610a30913091165f19610c3f565b6012546001600160a01b031663f305d7194730610a776064610a716055610a6b856001600160a01b03165f9081526001602052604090205490565b906114f6565b9061157b565b5f80610a8a5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610af0573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b159190611a16565b505060138054600160b81b60ff60b81b1982161790915560125460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610b7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba09190611a41565b50506013805462ff00ff60a01b19166201000160a01b179055565b5f546001600160a01b03163314610be45760405162461bcd60e51b81526004016104ee906119b2565b5f5b815181101561055157600160045f848481518110610c0657610c066119e7565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610be6565b6001600160a01b038316610ca15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ee565b6001600160a01b038216610d025760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ee565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610dc65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ee565b6001600160a01b038216610e285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ee565b5f8111610e895760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104ee565b5f80546001600160a01b03858116911614801590610eb457505f546001600160a01b03848116911614155b156111da576001600160a01b0384165f9081526004602052604090205460ff16158015610ef957506001600160a01b0383165f9081526004602052604090205460ff16155b610f01575f80fd5b601354600160b81b900460ff1615610f3c57610f396064610a71600a54600d5411610f2e57600654610f32565b6008545b85906114f6565b90505b6013546001600160a01b038581169116148015610f6757506012546001600160a01b03848116911614155b8015610f8b57506001600160a01b0383165f9081526003602052604090205460ff16155b1561107157600e54821115610fe25760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104ee565b600f5482611004856001600160a01b03165f9081526001602052604090205490565b61100e9190611a60565b111561105c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104ee565b600d8054905f61106b83611a73565b91905055505b6013546001600160a01b03848116911614801561109757506001600160a01b0384163014155b156110c4576110c16064610a71600b54600d54116110b757600754610f32565b60095485906114f6565b90505b305f90815260016020526040902054601354600160a81b900460ff161580156110fa57506013546001600160a01b038581169116145b801561110f5750601354600160b01b900460ff165b801561111c575060105481115b801561112b5750600c54600d54115b156111d85760155443111561113f575f6014555b6003601454106111915760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920332073656c6c732070657220626c6f636b2100000000000000000060448201526064016104ee565b6111ae6111a9846111a4846011546115bc565b6115bc565b61134f565b4780156111be576111be476114bf565b60148054905f6111cd83611a73565b909155505043601555505b505b801561125257305f908152600160205260409020546111f990826115d0565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112499085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054611274908361162e565b6001600160a01b0385165f908152600160205260409020556112b7611299838361162e565b6001600160a01b0385165f90815260016020526040902054906115d0565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611300858561162e565b60405190815260200160405180910390a350505050565b5f818484111561133a5760405162461bcd60e51b81526004016104ee919061169b565b505f6113468486611a8b565b95945050505050565b6013805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110611395576113956119e7565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156113ec573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141091906119fb565b81600181518110611423576114236119e7565b6001600160a01b0392831660209182029290920101526012546114499130911684610c3f565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac947906114819085905f90869030904290600401611a9e565b5f604051808303815f87803b158015611498575f80fd5b505af11580156114aa573d5f803e3d5ffd5b50506013805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610551573d5f803e3d5ffd5b5f825f0361150557505f610437565b5f611510838561199b565b90508261151d8583611b0f565b146115745760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104ee565b9392505050565b5f61157483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061166f565b5f8183116115ca5782611574565b50919050565b5f806115dc8385611a60565b9050838110156115745760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104ee565b5f61157483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611317565b5f818361168f5760405162461bcd60e51b81526004016104ee919061169b565b505f6113468486611b0f565b5f602080835283518060208501525f5b818110156116c7578581018301518582016040015282016116ab565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105cb575f80fd5b8035611706816116e7565b919050565b5f806040838503121561171c575f80fd5b8235611727816116e7565b946020939093013593505050565b5f805f60608486031215611747575f80fd5b8335611752816116e7565b92506020840135611762816116e7565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215611798575f80fd5b823567ffffffffffffffff808211156117af575f80fd5b818501915085601f8301126117c2575f80fd5b8135818111156117d4576117d4611773565b8060051b604051601f19603f830116810181811085821117156117f9576117f9611773565b604052918252848201925083810185019188831115611816575f80fd5b938501935b8285101561183b5761182c856116fb565b8452938501939285019261181b565b98975050505050505050565b5f60208284031215611857575f80fd5b8135611574816116e7565b5f8060408385031215611873575f80fd5b823561187e816116e7565b9150602083013561188e816116e7565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156118e757815f19048211156118cd576118cd611899565b808516156118da57918102915b93841c93908002906118b2565b509250929050565b5f826118fd57506001610437565b8161190957505f610437565b816001811461191f576002811461192957611945565b6001915050610437565b60ff84111561193a5761193a611899565b50506001821b610437565b5060208310610133831016604e8410600b8410161715611968575081810a610437565b61197283836118ad565b805f190482111561198557611985611899565b029392505050565b5f61157460ff8416836118ef565b808202811582820484141761043757610437611899565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611a0b575f80fd5b8151611574816116e7565b5f805f60608486031215611a28575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611a51575f80fd5b81518015158114611574575f80fd5b8082018082111561043757610437611899565b5f60018201611a8457611a84611899565b5060010190565b8181038181111561043757610437611899565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611aee5784516001600160a01b031683529383019391830191600101611ac9565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82611b2957634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200a500591966f7a09498b7ed354506fc72e6f9c28d393e461c5c65e4e9a6ad94c64736f6c63430008170033
Deployed Bytecode
0x608060405260043610610134575f3560e01c8063715018a6116100a857806395d89b411161006d57806395d89b4114610350578063a9059cbb1461037c578063bf474bed1461039b578063c9567bf9146103b0578063d34628cc146103c4578063dd62ed3e146103e3575f80fd5b8063715018a6146102d8578063751039fc146102ec5780637d1db4a5146103005780638da5cb5b146103155780638f9a55c01461033b575f80fd5b8063313ce567116100f9578063313ce5671461020957806331c2d847146102245780633bbac5791461024557806351bc3c851461027c5780636fc3eaec1461029057806370a08231146102a4575f80fd5b806306fdde031461013f578063095ea7b3146101845780630faee56f146101b357806318160ddd146101d657806323b872dd146101ea575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201909152600b81526a4d617374657220596f646160a81b60208201525b60405161017b919061169b565b60405180910390f35b34801561018f575f80fd5b506101a361019e36600461170b565b610427565b604051901515815260200161017b565b3480156101be575f80fd5b506101c860115481565b60405190815260200161017b565b3480156101e1575f80fd5b506101c861043d565b3480156101f5575f80fd5b506101a3610204366004611735565b61045e565b348015610214575f80fd5b506040516012815260200161017b565b34801561022f575f80fd5b5061024361023e366004611787565b6104c5565b005b348015610250575f80fd5b506101a361025f366004611847565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610287575f80fd5b50610243610555565b34801561029b575f80fd5b506102436105a2565b3480156102af575f80fd5b506101c86102be366004611847565b6001600160a01b03165f9081526001602052604090205490565b3480156102e3575f80fd5b506102436105ce565b3480156102f7575f80fd5b5061024361063f565b34801561030b575f80fd5b506101c8600e5481565b348015610320575f80fd5b505f546040516001600160a01b03909116815260200161017b565b348015610346575f80fd5b506101c8600f5481565b34801561035b575f80fd5b50604080518082019091526004815263596f646160e01b602082015261016e565b348015610387575f80fd5b506101a361039636600461170b565b6106f3565b3480156103a6575f80fd5b506101c860105481565b3480156103bb575f80fd5b506102436106ff565b3480156103cf575f80fd5b506102436103de366004611787565b610bbb565b3480156103ee575f80fd5b506101c86103fd366004611862565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610433338484610c3f565b5060015b92915050565b5f61044a6012600a61198d565b610459906461f313f88061199b565b905090565b5f61046a848484610d62565b6104bb84336104b685604051806060016040528060288152602001611b2f602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611317565b610c3f565b5060019392505050565b5f546001600160a01b031633146104f75760405162461bcd60e51b81526004016104ee906119b2565b60405180910390fd5b5f5b8151811015610551575f60045f848481518110610518576105186119e7565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016104f9565b5050565b6005546001600160a01b0316336001600160a01b031614610574575f80fd5b305f908152600160205260409020548015610592576105928161134f565b47801561055157610551816114bf565b6005546001600160a01b0316336001600160a01b0316146105c1575f80fd5b476105cb816114bf565b50565b5f546001600160a01b031633146105f75760405162461bcd60e51b81526004016104ee906119b2565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106685760405162461bcd60e51b81526004016104ee906119b2565b6106746012600a61198d565b610683906461f313f88061199b565b600e556106926012600a61198d565b6106a1906461f313f88061199b565b600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106d16012600a61198d565b6106e0906461f313f88061199b565b60405190815260200160405180910390a1565b5f610433338484610d62565b5f546001600160a01b031633146107285760405162461bcd60e51b81526004016104ee906119b2565b601354600160a01b900460ff16156107825760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104ee565b737a250d5630b4cf539739df2c5dacb4c659f2488d466038036107ba57507310ed43c718714eb63d5aa57b78b54704e256024e61084f565b466061036107dd5750739ac64cc6e4415144c455bd8e4837fea55603e5c361084f565b46600114806107ec5750466004145b806107f75750466003145b806108025750466005145b8061080e575046617a69145b1561082e5750737a250d5630b4cf539739df2c5dacb4c659f2488d61084f565b4662aa36a70361013b575073c532a74256d3db42d0bf7a0400fefdbad76940085b601280546001600160a01b0319166001600160a01b0383161790556013805460ff60b81b1916905561088330335f19610c3f565b335f9081526001602052604090205461089d9030906106f3565b5060125f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091291906119fb565b6001600160a01b031663c9c653963060125f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610971573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061099591906119fb565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156109df573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0391906119fb565b601380546001600160a01b0319166001600160a01b03928316179055601254610a30913091165f19610c3f565b6012546001600160a01b031663f305d7194730610a776064610a716055610a6b856001600160a01b03165f9081526001602052604090205490565b906114f6565b9061157b565b5f80610a8a5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610af0573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b159190611a16565b505060138054600160b81b60ff60b81b1982161790915560125460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610b7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba09190611a41565b50506013805462ff00ff60a01b19166201000160a01b179055565b5f546001600160a01b03163314610be45760405162461bcd60e51b81526004016104ee906119b2565b5f5b815181101561055157600160045f848481518110610c0657610c066119e7565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610be6565b6001600160a01b038316610ca15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ee565b6001600160a01b038216610d025760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ee565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610dc65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ee565b6001600160a01b038216610e285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ee565b5f8111610e895760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104ee565b5f80546001600160a01b03858116911614801590610eb457505f546001600160a01b03848116911614155b156111da576001600160a01b0384165f9081526004602052604090205460ff16158015610ef957506001600160a01b0383165f9081526004602052604090205460ff16155b610f01575f80fd5b601354600160b81b900460ff1615610f3c57610f396064610a71600a54600d5411610f2e57600654610f32565b6008545b85906114f6565b90505b6013546001600160a01b038581169116148015610f6757506012546001600160a01b03848116911614155b8015610f8b57506001600160a01b0383165f9081526003602052604090205460ff16155b1561107157600e54821115610fe25760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104ee565b600f5482611004856001600160a01b03165f9081526001602052604090205490565b61100e9190611a60565b111561105c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104ee565b600d8054905f61106b83611a73565b91905055505b6013546001600160a01b03848116911614801561109757506001600160a01b0384163014155b156110c4576110c16064610a71600b54600d54116110b757600754610f32565b60095485906114f6565b90505b305f90815260016020526040902054601354600160a81b900460ff161580156110fa57506013546001600160a01b038581169116145b801561110f5750601354600160b01b900460ff165b801561111c575060105481115b801561112b5750600c54600d54115b156111d85760155443111561113f575f6014555b6003601454106111915760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920332073656c6c732070657220626c6f636b2100000000000000000060448201526064016104ee565b6111ae6111a9846111a4846011546115bc565b6115bc565b61134f565b4780156111be576111be476114bf565b60148054905f6111cd83611a73565b909155505043601555505b505b801561125257305f908152600160205260409020546111f990826115d0565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112499085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054611274908361162e565b6001600160a01b0385165f908152600160205260409020556112b7611299838361162e565b6001600160a01b0385165f90815260016020526040902054906115d0565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611300858561162e565b60405190815260200160405180910390a350505050565b5f818484111561133a5760405162461bcd60e51b81526004016104ee919061169b565b505f6113468486611a8b565b95945050505050565b6013805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110611395576113956119e7565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156113ec573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141091906119fb565b81600181518110611423576114236119e7565b6001600160a01b0392831660209182029290920101526012546114499130911684610c3f565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac947906114819085905f90869030904290600401611a9e565b5f604051808303815f87803b158015611498575f80fd5b505af11580156114aa573d5f803e3d5ffd5b50506013805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610551573d5f803e3d5ffd5b5f825f0361150557505f610437565b5f611510838561199b565b90508261151d8583611b0f565b146115745760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104ee565b9392505050565b5f61157483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061166f565b5f8183116115ca5782611574565b50919050565b5f806115dc8385611a60565b9050838110156115745760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104ee565b5f61157483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611317565b5f818361168f5760405162461bcd60e51b81526004016104ee919061169b565b505f6113468486611b0f565b5f602080835283518060208501525f5b818110156116c7578581018301518582016040015282016116ab565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105cb575f80fd5b8035611706816116e7565b919050565b5f806040838503121561171c575f80fd5b8235611727816116e7565b946020939093013593505050565b5f805f60608486031215611747575f80fd5b8335611752816116e7565b92506020840135611762816116e7565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215611798575f80fd5b823567ffffffffffffffff808211156117af575f80fd5b818501915085601f8301126117c2575f80fd5b8135818111156117d4576117d4611773565b8060051b604051601f19603f830116810181811085821117156117f9576117f9611773565b604052918252848201925083810185019188831115611816575f80fd5b938501935b8285101561183b5761182c856116fb565b8452938501939285019261181b565b98975050505050505050565b5f60208284031215611857575f80fd5b8135611574816116e7565b5f8060408385031215611873575f80fd5b823561187e816116e7565b9150602083013561188e816116e7565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156118e757815f19048211156118cd576118cd611899565b808516156118da57918102915b93841c93908002906118b2565b509250929050565b5f826118fd57506001610437565b8161190957505f610437565b816001811461191f576002811461192957611945565b6001915050610437565b60ff84111561193a5761193a611899565b50506001821b610437565b5060208310610133831016604e8410600b8410161715611968575081810a610437565b61197283836118ad565b805f190482111561198557611985611899565b029392505050565b5f61157460ff8416836118ef565b808202811582820484141761043757610437611899565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611a0b575f80fd5b8151611574816116e7565b5f805f60608486031215611a28575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611a51575f80fd5b81518015158114611574575f80fd5b8082018082111561043757610437611899565b5f60018201611a8457611a84611899565b5060010190565b8181038181111561043757610437611899565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611aee5784516001600160a01b031683529383019391830191600101611ac9565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82611b2957634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212200a500591966f7a09498b7ed354506fc72e6f9c28d393e461c5c65e4e9a6ad94c64736f6c63430008170033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,350.29 | 1 | $3,350.29 |
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.