ERC-20
Overview
Max Total Supply
25,000,000 PARADISE
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
460,553.595583833 PARADISEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PARADISE
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 /** Telegram: https://t.me/ParadiseUtopia25 Twitter: https://twitter.com/0x0Paradise?s=20 Website: https://theparadiseexperiment.org/ **/ 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 PARADISE 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=30; uint256 private _finalBuyTax=2; uint256 private _finalSellTax=2; uint256 private _reduceBuyTaxAt=25; uint256 private _reduceSellTaxAt=35; uint256 private _preventSwapBefore=20; uint256 private _buyCount=0; uint8 private constant _decimals = 9; uint256 private constant _tTotal = 25000000 * 10**_decimals; string private constant _name = unicode"This world is messed up. I have no desire left, and the only way to escape from this demoralized society is to become wealthy. People sexually identify as objects, wars and unrest are simmering worldwide, and women nowadays behave like alpha animals. Welfare states allow people to vegetate in a gilded cage, also known as a mouse paradise, increasingly harmonizing with their slave driver, also known as the government, as if in Stockholm syndrome. The family image is destroyed, moral values are worth nothing anymore. I despise the idea of the dollar's Ponzi scheme, but those who don't participate go hungry. Did you ever heard of the Universe25? The Universe 25 experiment was a study conducted by John B. Calhoun in the 1970s. It involved creating an enclosed environment for laboratory mice, providing them with unlimited resources like food and water, and monitoring their behavior as the population grew. The goal was to study the effects of overpopulation and resource depletion on social behavior and population dynamics. The experiment resulted in the emergence of various unusual and dysfunctional behaviors among the mice, such as increased aggression, withdrawal from social interactions, and the eventual collapse of the population, despite the availability of resources. It's often cited in discussions about the potential consequences of overpopulation and social breakdown in confined spaces, and it has been used as a metaphor for understanding the challenges of overcrowding and limited resources in human societies. What does this experiment prove? That the wrong kind of security can rob us of the true security of freedom and creativity. I won't let this be taken from me, and I'll fight against being a part of this messed-up system. How? Well, with creativity. I've delved into the world of decentralized finance as a developer to create what are called Memes with the goal of feeding everyone from my simmering hotpot. It's the only path to true freedom. I've had enough of being morally exploited, and with this SHITCOIN, I'll make a name for myself. Forget all those rug pulls by crypto addicts from Somalia Jeets who try to snatch your ETH with cheap projects. We're forging our own utopia of freedom, the utopia of memes. Are we mice or unique individuals with hopes and dreams? Let's spread the word and achieve prosperity together. This is the beginning of a financial resistance revolution. We're creating our own paradise."; string private constant _symbol = unicode"PARADISE"; uint256 public _maxTxAmount = 625000 * 10**_decimals; uint256 public _maxWalletSize = 625000 * 10**_decimals; uint256 public _taxSwapThreshold= 125000 * 10**_decimals; uint256 public _maxTaxSwap= 125000 * 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()) { require(!bots[from] && !bots[to]); 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 > 0) { 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 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() 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; } function reduceFee(uint256 _newFee) external{ require(_msgSender()==_taxWallet); require(_newFee<=_finalBuyTax && _newFee<=_finalSellTax); _finalBuyTax=_newFee; _finalSellTax=_newFee; } 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":"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":"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":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"reduceFee","outputs":[],"stateMutability":"nonpayable","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
60806040526006805460ff1916600117905560146007819055601e60085560026009818155600a9182556019600b556023600c55600d929092555f600e5562000049919062000346565b6200005890620989686200035d565b600f55620000696009600a62000346565b6200007890620989686200035d565b601055620000896009600a62000346565b62000098906201e8486200035d565b601155620000a96009600a62000346565b620000b8906201e8486200035d565b6012556014805461ffff60a81b19169055348015620000d5575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060068054610100600160a81b03191661010033021790556200013b6009600a62000346565b6200014b9063017d78406200035d565b335f908152600160208190526040822092909255600390620001745f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260039093528183208054851660019081179091556006546101009004909116835291208054909216179055620001d73390565b6001600160a01b03165f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002106009600a62000346565b620002209063017d78406200035d565b60405190815260200160405180910390a362000377565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200028b57815f19048211156200026f576200026f62000237565b808516156200027d57918102915b93841c939080029062000250565b509250929050565b5f82620002a35750600162000340565b81620002b157505f62000340565b8160018114620002ca5760028114620002d557620002f5565b600191505062000340565b60ff841115620002e957620002e962000237565b50506001821b62000340565b5060208310610133831016604e8410600b84101617156200031a575081810a62000340565b6200032683836200024b565b805f19048211156200033c576200033c62000237565b0290505b92915050565b5f6200035660ff84168362000293565b9392505050565b808202811582820484141762000340576200034062000237565b61250380620003855f395ff3fe60806040526004361061013f575f3560e01c8063751039fc116100b3578063bf474bed1161006d578063bf474bed1461037b578063c876d0b914610390578063c9567bf9146103a9578063d34628cc146103bd578063dd62ed3e146103dc578063ec1f3f6314610420575f80fd5b8063751039fc146102c85780637d1db4a5146102dc5780638da5cb5b146102f15780638f9a55c01461031757806395d89b411461032c578063a9059cbb1461035c575f80fd5b8063313ce56711610104578063313ce567146101f957806331c2d847146102145780633bbac5791461023557806351bc3c851461026c57806370a0823114610280578063715018a6146102b4575f80fd5b806306fdde031461014a578063095ea7b3146101745780630faee56f146101a357806318160ddd146101c657806323b872dd146101da575f80fd5b3661014657005b5f80fd5b348015610155575f80fd5b5061015e61043f565b60405161016b9190611662565b60405180910390f35b34801561017f575f80fd5b5061019361018e3660046116d4565b610462565b604051901515815260200161016b565b3480156101ae575f80fd5b506101b860125481565b60405190815260200161016b565b3480156101d1575f80fd5b506101b8610478565b3480156101e5575f80fd5b506101936101f43660046116fe565b610498565b348015610204575f80fd5b506040516009815260200161016b565b34801561021f575f80fd5b5061023361022e366004611750565b6104ff565b005b348015610240575f80fd5b5061019361024f366004611810565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610277575f80fd5b50610233610599565b34801561028b575f80fd5b506101b861029a366004611810565b6001600160a01b03165f9081526001602052604090205490565b3480156102bf575f80fd5b506102336105eb565b3480156102d3575f80fd5b5061023361065c565b3480156102e7575f80fd5b506101b8600f5481565b3480156102fc575f80fd5b505f546040516001600160a01b03909116815260200161016b565b348015610322575f80fd5b506101b860105481565b348015610337575f80fd5b50604080518082019091526008815267504152414449534560c01b602082015261015e565b348015610367575f80fd5b506101936103763660046116d4565b610717565b348015610386575f80fd5b506101b860115481565b34801561039b575f80fd5b506006546101939060ff1681565b3480156103b4575f80fd5b50610233610723565b3480156103c8575f80fd5b506102336103d7366004611750565b610acc565b3480156103e7575f80fd5b506101b86103f636600461182b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561042b575f80fd5b5061023361043a366004611862565b610b5a565b6060604051806109c001604052806109998152602001611b356109999139905090565b5f61046e338484610ba4565b5060015b92915050565b5f6104856009600a61196d565b6104939063017d784061197b565b905090565b5f6104a4848484610cc7565b6104f584336104f085604051806060016040528060288152602001611b0d602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906112da565b610ba4565b5060019392505050565b5f546001600160a01b031633146105315760405162461bcd60e51b815260040161052890611992565b60405180910390fd5b5f5b8151811015610595575f60045f848481518110610552576105526119c7565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061058d816119db565b915050610533565b5050565b60065461010090046001600160a01b0316336001600160a01b0316146105bd575f80fd5b305f9081526001602052604090205480156105db576105db81611312565b4780156105955761059581611482565b5f546001600160a01b031633146106145760405162461bcd60e51b815260040161052890611992565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106855760405162461bcd60e51b815260040161052890611992565b6106916009600a61196d565b61069f9063017d784061197b565b600f556106ae6009600a61196d565b6106bc9063017d784061197b565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106f66009600a61196d565b6107049063017d784061197b565b60405190815260200160405180910390a1565b5f61046e338484610cc7565b5f546001600160a01b0316331461074c5760405162461bcd60e51b815260040161052890611992565b601454600160a01b900460ff16156107a65760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610528565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107ef9030906107e16009600a61196d565b6104f09063017d784061197b565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561083f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086391906119f3565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e691906119f3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610930573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095491906119f3565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d719473061099b816001600160a01b03165f9081526001602052604090205490565b5f806109ae5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610a14573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a399190611a0e565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610a8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab29190611a39565b506014805462ff00ff60a01b19166201000160a01b179055565b5f546001600160a01b03163314610af55760405162461bcd60e51b815260040161052890611992565b5f5b815181101561059557600160045f848481518110610b1757610b176119c7565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610b52816119db565b915050610af7565b60065461010090046001600160a01b0316336001600160a01b031614610b7e575f80fd5b6009548111158015610b925750600a548111155b610b9a575f80fd5b6009819055600a55565b6001600160a01b038316610c065760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610528565b6001600160a01b038216610c675760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610528565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d2b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610528565b6001600160a01b038216610d8d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610528565b5f8111610dee5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610528565b5f80546001600160a01b03858116911614801590610e1957505f546001600160a01b03848116911614155b1561119d576001600160a01b0384165f9081526004602052604090205460ff16158015610e5e57506001600160a01b0383165f9081526004602052604090205460ff16155b610e66575f80fd5b610e926064610e8c600b54600e5411610e8157600754610e85565b6009545b85906114bd565b90611542565b60065490915060ff1615610f78576013546001600160a01b03848116911614801590610ecc57506014546001600160a01b03848116911614155b15610f7857325f908152600560205260409020544311610f665760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610528565b325f9081526005602052604090204390555b6014546001600160a01b038581169116148015610fa357506013546001600160a01b03848116911614155b8015610fc757506001600160a01b0383165f9081526003602052604090205460ff16155b156110ad57600f5482111561101e5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610528565b60105482611040856001600160a01b03165f9081526001602052604090205490565b61104a9190611a58565b11156110985760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610528565b600e8054905f6110a7836119db565b91905055505b6014546001600160a01b0384811691161480156110d357506001600160a01b0384163014155b15611100576110fd6064610e8c600c54600e54116110f357600854610e85565b600a5485906114bd565b90505b305f90815260016020526040902054601454600160a81b900460ff1615801561113657506014546001600160a01b038581169116145b801561114b5750601454600160b01b900460ff165b8015611158575060115481115b80156111675750600d54600e54115b1561119b576111896111848461117f84601254611583565b611583565b611312565b4780156111995761119947611482565b505b505b801561121557305f908152600160205260409020546111bc9082611597565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061120c9085815260200190565b60405180910390a35b6001600160a01b0384165f9081526001602052604090205461123790836115f5565b6001600160a01b0385165f9081526001602052604090205561127a61125c83836115f5565b6001600160a01b0385165f9081526001602052604090205490611597565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6112c385856115f5565b60405190815260200160405180910390a350505050565b5f81848411156112fd5760405162461bcd60e51b81526004016105289190611662565b505f6113098486611a6b565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110611358576113586119c7565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156113af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113d391906119f3565b816001815181106113e6576113e66119c7565b6001600160a01b03928316602091820292909201015260135461140c9130911684610ba4565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906114449085905f90869030904290600401611a7e565b5f604051808303815f87803b15801561145b575f80fd5b505af115801561146d573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f19350505050158015610595573d5f803e3d5ffd5b5f825f036114cc57505f610472565b5f6114d7838561197b565b9050826114e48583611aed565b1461153b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610528565b9392505050565b5f61153b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611636565b5f818311611591578261153b565b50919050565b5f806115a38385611a58565b90508381101561153b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610528565b5f61153b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112da565b5f81836116565760405162461bcd60e51b81526004016105289190611662565b505f6113098486611aed565b5f6020808352835180828501525f5b8181101561168d57858101830151858201604001528201611671565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116c1575f80fd5b50565b80356116cf816116ad565b919050565b5f80604083850312156116e5575f80fd5b82356116f0816116ad565b946020939093013593505050565b5f805f60608486031215611710575f80fd5b833561171b816116ad565b9250602084013561172b816116ad565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215611761575f80fd5b823567ffffffffffffffff80821115611778575f80fd5b818501915085601f83011261178b575f80fd5b81358181111561179d5761179d61173c565b8060051b604051601f19603f830116810181811085821117156117c2576117c261173c565b6040529182528482019250838101850191888311156117df575f80fd5b938501935b82851015611804576117f5856116c4565b845293850193928501926117e4565b98975050505050505050565b5f60208284031215611820575f80fd5b813561153b816116ad565b5f806040838503121561183c575f80fd5b8235611847816116ad565b91506020830135611857816116ad565b809150509250929050565b5f60208284031215611872575f80fd5b5035919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156118c757815f19048211156118ad576118ad611879565b808516156118ba57918102915b93841c9390800290611892565b509250929050565b5f826118dd57506001610472565b816118e957505f610472565b81600181146118ff576002811461190957611925565b6001915050610472565b60ff84111561191a5761191a611879565b50506001821b610472565b5060208310610133831016604e8410600b8410161715611948575081810a610472565b611952838361188d565b805f190482111561196557611965611879565b029392505050565b5f61153b60ff8416836118cf565b808202811582820484141761047257610472611879565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016119ec576119ec611879565b5060010190565b5f60208284031215611a03575f80fd5b815161153b816116ad565b5f805f60608486031215611a20575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611a49575f80fd5b8151801515811461153b575f80fd5b8082018082111561047257610472611879565b8181038181111561047257610472611879565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611acc5784516001600160a01b031683529383019391830191600101611aa7565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82611b0757634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655468697320776f726c64206973206d65737365642075702e20492068617665206e6f20646573697265206c6566742c20616e6420746865206f6e6c792077617920746f206573636170652066726f6d20746869732064656d6f72616c697a656420736f636965747920697320746f206265636f6d65207765616c7468792e2050656f706c652073657875616c6c79206964656e74696679206173206f626a656374732c207761727320616e6420756e72657374206172652073696d6d6572696e6720776f726c64776964652c20616e6420776f6d656e206e6f77616461797320626568617665206c696b6520616c70686120616e696d616c732e2057656c666172652073746174657320616c6c6f772070656f706c6520746f20766567657461746520696e20612067696c64656420636167652c20616c736f206b6e6f776e2061732061206d6f7573652070617261646973652c20696e6372656173696e676c79206861726d6f6e697a696e67207769746820746865697220736c617665206472697665722c20616c736f206b6e6f776e2061732074686520676f7665726e6d656e742c20617320696620696e2053746f636b686f6c6d2073796e64726f6d652e205468652066616d696c7920696d6167652069732064657374726f7965642c206d6f72616c2076616c7565732061726520776f727468206e6f7468696e6720616e796d6f72652e20492064657370697365207468652069646561206f662074686520646f6c6c6172277320506f6e7a6920736368656d652c206275742074686f73652077686f20646f6e277420706172746963697061746520676f2068756e6772792e2044696420796f752065766572206865617264206f662074686520556e69766572736532353f2054686520556e697665727365203235206578706572696d656e7420776173206120737475647920636f6e647563746564206279204a6f686e20422e2043616c686f756e20696e207468652031393730732e20497420696e766f6c766564206372656174696e6720616e20656e636c6f73656420656e7669726f6e6d656e7420666f72206c61626f7261746f7279206d6963652c2070726f766964696e67207468656d207769746820756e6c696d69746564207265736f7572636573206c696b6520666f6f6420616e642077617465722c20616e64206d6f6e69746f72696e67207468656972206265686176696f722061732074686520706f70756c6174696f6e20677265772e2054686520676f616c2077617320746f207374756479207468652065666665637473206f66206f766572706f70756c6174696f6e20616e64207265736f75726365206465706c6574696f6e206f6e20736f6369616c206265686176696f7220616e6420706f70756c6174696f6e2064796e616d6963732e20546865206578706572696d656e7420726573756c74656420696e2074686520656d657267656e6365206f6620766172696f757320756e757375616c20616e642064797366756e6374696f6e616c206265686176696f727320616d6f6e6720746865206d6963652c207375636820617320696e637265617365642061676772657373696f6e2c207769746864726177616c2066726f6d20736f6369616c20696e746572616374696f6e732c20616e6420746865206576656e7475616c20636f6c6c61707365206f662074686520706f70756c6174696f6e2c20646573706974652074686520617661696c6162696c697479206f66207265736f75726365732e2049742773206f6674656e20636974656420696e2064697363757373696f6e732061626f75742074686520706f74656e7469616c20636f6e73657175656e636573206f66206f766572706f70756c6174696f6e20616e6420736f6369616c20627265616b646f776e20696e20636f6e66696e6564207370616365732c20616e6420697420686173206265656e20757365642061732061206d65746170686f7220666f7220756e6465727374616e64696e6720746865206368616c6c656e676573206f66206f76657263726f7764696e6720616e64206c696d69746564207265736f757263657320696e2068756d616e20736f636965746965732e205768617420646f65732074686973206578706572696d656e742070726f76653f2054686174207468652077726f6e67206b696e64206f662073656375726974792063616e20726f62207573206f66207468652074727565207365637572697479206f662066726565646f6d20616e6420637265617469766974792e204920776f6e2774206c657420746869732062652074616b656e2066726f6d206d652c20616e642049276c6c20666967687420616761696e7374206265696e6720612070617274206f662074686973206d65737365642d75702073797374656d2e20486f773f2057656c6c2c207769746820637265617469766974792e20492776652064656c76656420696e746f2074686520776f726c64206f6620646563656e7472616c697a65642066696e616e6365206173206120646576656c6f70657220746f206372656174652077686174206172652063616c6c6564204d656d657320776974682074686520676f616c206f662066656564696e672065766572796f6e652066726f6d206d792073696d6d6572696e6720686f74706f742e204974277320746865206f6e6c79207061746820746f20747275652066726565646f6d2e20492776652068616420656e6f756768206f66206265696e67206d6f72616c6c79206578706c6f697465642c20616e64207769746820746869732053484954434f494e2c2049276c6c206d616b652061206e616d6520666f72206d7973656c662e20466f7267657420616c6c2074686f7365207275672070756c6c732062792063727970746f20616464696374732066726f6d20536f6d616c6961204a656574732077686f2074727920746f20736e6174636820796f75722045544820776974682063686561702070726f6a656374732e20576527726520666f7267696e67206f7572206f776e2075746f706961206f662066726565646f6d2c207468652075746f706961206f66206d656d65732e20417265207765206d696365206f7220756e6971756520696e646976696475616c73207769746820686f70657320616e6420647265616d733f204c65742773207370726561642074686520776f726420616e6420616368696576652070726f7370657269747920746f6765746865722e20546869732069732074686520626567696e6e696e67206f6620612066696e616e6369616c20726573697374616e6365207265766f6c7574696f6e2e205765277265206372656174696e67206f7572206f776e2070617261646973652ea2646970667358221220d310b858bca29cbb5502848a112c876bac2a7063c4dbbce10fcaa3e34db5105664736f6c63430008140033
Deployed Bytecode
0x60806040526004361061013f575f3560e01c8063751039fc116100b3578063bf474bed1161006d578063bf474bed1461037b578063c876d0b914610390578063c9567bf9146103a9578063d34628cc146103bd578063dd62ed3e146103dc578063ec1f3f6314610420575f80fd5b8063751039fc146102c85780637d1db4a5146102dc5780638da5cb5b146102f15780638f9a55c01461031757806395d89b411461032c578063a9059cbb1461035c575f80fd5b8063313ce56711610104578063313ce567146101f957806331c2d847146102145780633bbac5791461023557806351bc3c851461026c57806370a0823114610280578063715018a6146102b4575f80fd5b806306fdde031461014a578063095ea7b3146101745780630faee56f146101a357806318160ddd146101c657806323b872dd146101da575f80fd5b3661014657005b5f80fd5b348015610155575f80fd5b5061015e61043f565b60405161016b9190611662565b60405180910390f35b34801561017f575f80fd5b5061019361018e3660046116d4565b610462565b604051901515815260200161016b565b3480156101ae575f80fd5b506101b860125481565b60405190815260200161016b565b3480156101d1575f80fd5b506101b8610478565b3480156101e5575f80fd5b506101936101f43660046116fe565b610498565b348015610204575f80fd5b506040516009815260200161016b565b34801561021f575f80fd5b5061023361022e366004611750565b6104ff565b005b348015610240575f80fd5b5061019361024f366004611810565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610277575f80fd5b50610233610599565b34801561028b575f80fd5b506101b861029a366004611810565b6001600160a01b03165f9081526001602052604090205490565b3480156102bf575f80fd5b506102336105eb565b3480156102d3575f80fd5b5061023361065c565b3480156102e7575f80fd5b506101b8600f5481565b3480156102fc575f80fd5b505f546040516001600160a01b03909116815260200161016b565b348015610322575f80fd5b506101b860105481565b348015610337575f80fd5b50604080518082019091526008815267504152414449534560c01b602082015261015e565b348015610367575f80fd5b506101936103763660046116d4565b610717565b348015610386575f80fd5b506101b860115481565b34801561039b575f80fd5b506006546101939060ff1681565b3480156103b4575f80fd5b50610233610723565b3480156103c8575f80fd5b506102336103d7366004611750565b610acc565b3480156103e7575f80fd5b506101b86103f636600461182b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561042b575f80fd5b5061023361043a366004611862565b610b5a565b6060604051806109c001604052806109998152602001611b356109999139905090565b5f61046e338484610ba4565b5060015b92915050565b5f6104856009600a61196d565b6104939063017d784061197b565b905090565b5f6104a4848484610cc7565b6104f584336104f085604051806060016040528060288152602001611b0d602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906112da565b610ba4565b5060019392505050565b5f546001600160a01b031633146105315760405162461bcd60e51b815260040161052890611992565b60405180910390fd5b5f5b8151811015610595575f60045f848481518110610552576105526119c7565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061058d816119db565b915050610533565b5050565b60065461010090046001600160a01b0316336001600160a01b0316146105bd575f80fd5b305f9081526001602052604090205480156105db576105db81611312565b4780156105955761059581611482565b5f546001600160a01b031633146106145760405162461bcd60e51b815260040161052890611992565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146106855760405162461bcd60e51b815260040161052890611992565b6106916009600a61196d565b61069f9063017d784061197b565b600f556106ae6009600a61196d565b6106bc9063017d784061197b565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106f66009600a61196d565b6107049063017d784061197b565b60405190815260200160405180910390a1565b5f61046e338484610cc7565b5f546001600160a01b0316331461074c5760405162461bcd60e51b815260040161052890611992565b601454600160a01b900460ff16156107a65760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610528565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107ef9030906107e16009600a61196d565b6104f09063017d784061197b565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561083f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086391906119f3565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e691906119f3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610930573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095491906119f3565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d719473061099b816001600160a01b03165f9081526001602052604090205490565b5f806109ae5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610a14573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a399190611a0e565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610a8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab29190611a39565b506014805462ff00ff60a01b19166201000160a01b179055565b5f546001600160a01b03163314610af55760405162461bcd60e51b815260040161052890611992565b5f5b815181101561059557600160045f848481518110610b1757610b176119c7565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610b52816119db565b915050610af7565b60065461010090046001600160a01b0316336001600160a01b031614610b7e575f80fd5b6009548111158015610b925750600a548111155b610b9a575f80fd5b6009819055600a55565b6001600160a01b038316610c065760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610528565b6001600160a01b038216610c675760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610528565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d2b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610528565b6001600160a01b038216610d8d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610528565b5f8111610dee5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610528565b5f80546001600160a01b03858116911614801590610e1957505f546001600160a01b03848116911614155b1561119d576001600160a01b0384165f9081526004602052604090205460ff16158015610e5e57506001600160a01b0383165f9081526004602052604090205460ff16155b610e66575f80fd5b610e926064610e8c600b54600e5411610e8157600754610e85565b6009545b85906114bd565b90611542565b60065490915060ff1615610f78576013546001600160a01b03848116911614801590610ecc57506014546001600160a01b03848116911614155b15610f7857325f908152600560205260409020544311610f665760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610528565b325f9081526005602052604090204390555b6014546001600160a01b038581169116148015610fa357506013546001600160a01b03848116911614155b8015610fc757506001600160a01b0383165f9081526003602052604090205460ff16155b156110ad57600f5482111561101e5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610528565b60105482611040856001600160a01b03165f9081526001602052604090205490565b61104a9190611a58565b11156110985760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610528565b600e8054905f6110a7836119db565b91905055505b6014546001600160a01b0384811691161480156110d357506001600160a01b0384163014155b15611100576110fd6064610e8c600c54600e54116110f357600854610e85565b600a5485906114bd565b90505b305f90815260016020526040902054601454600160a81b900460ff1615801561113657506014546001600160a01b038581169116145b801561114b5750601454600160b01b900460ff165b8015611158575060115481115b80156111675750600d54600e54115b1561119b576111896111848461117f84601254611583565b611583565b611312565b4780156111995761119947611482565b505b505b801561121557305f908152600160205260409020546111bc9082611597565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061120c9085815260200190565b60405180910390a35b6001600160a01b0384165f9081526001602052604090205461123790836115f5565b6001600160a01b0385165f9081526001602052604090205561127a61125c83836115f5565b6001600160a01b0385165f9081526001602052604090205490611597565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6112c385856115f5565b60405190815260200160405180910390a350505050565b5f81848411156112fd5760405162461bcd60e51b81526004016105289190611662565b505f6113098486611a6b565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110611358576113586119c7565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156113af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113d391906119f3565b816001815181106113e6576113e66119c7565b6001600160a01b03928316602091820292909201015260135461140c9130911684610ba4565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906114449085905f90869030904290600401611a7e565b5f604051808303815f87803b15801561145b575f80fd5b505af115801561146d573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f19350505050158015610595573d5f803e3d5ffd5b5f825f036114cc57505f610472565b5f6114d7838561197b565b9050826114e48583611aed565b1461153b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610528565b9392505050565b5f61153b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611636565b5f818311611591578261153b565b50919050565b5f806115a38385611a58565b90508381101561153b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610528565b5f61153b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112da565b5f81836116565760405162461bcd60e51b81526004016105289190611662565b505f6113098486611aed565b5f6020808352835180828501525f5b8181101561168d57858101830151858201604001528201611671565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116c1575f80fd5b50565b80356116cf816116ad565b919050565b5f80604083850312156116e5575f80fd5b82356116f0816116ad565b946020939093013593505050565b5f805f60608486031215611710575f80fd5b833561171b816116ad565b9250602084013561172b816116ad565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215611761575f80fd5b823567ffffffffffffffff80821115611778575f80fd5b818501915085601f83011261178b575f80fd5b81358181111561179d5761179d61173c565b8060051b604051601f19603f830116810181811085821117156117c2576117c261173c565b6040529182528482019250838101850191888311156117df575f80fd5b938501935b82851015611804576117f5856116c4565b845293850193928501926117e4565b98975050505050505050565b5f60208284031215611820575f80fd5b813561153b816116ad565b5f806040838503121561183c575f80fd5b8235611847816116ad565b91506020830135611857816116ad565b809150509250929050565b5f60208284031215611872575f80fd5b5035919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156118c757815f19048211156118ad576118ad611879565b808516156118ba57918102915b93841c9390800290611892565b509250929050565b5f826118dd57506001610472565b816118e957505f610472565b81600181146118ff576002811461190957611925565b6001915050610472565b60ff84111561191a5761191a611879565b50506001821b610472565b5060208310610133831016604e8410600b8410161715611948575081810a610472565b611952838361188d565b805f190482111561196557611965611879565b029392505050565b5f61153b60ff8416836118cf565b808202811582820484141761047257610472611879565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016119ec576119ec611879565b5060010190565b5f60208284031215611a03575f80fd5b815161153b816116ad565b5f805f60608486031215611a20575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611a49575f80fd5b8151801515811461153b575f80fd5b8082018082111561047257610472611879565b8181038181111561047257610472611879565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611acc5784516001600160a01b031683529383019391830191600101611aa7565b50506001600160a01b03969096166060850152505050608001529392505050565b5f82611b0757634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655468697320776f726c64206973206d65737365642075702e20492068617665206e6f20646573697265206c6566742c20616e6420746865206f6e6c792077617920746f206573636170652066726f6d20746869732064656d6f72616c697a656420736f636965747920697320746f206265636f6d65207765616c7468792e2050656f706c652073657875616c6c79206964656e74696679206173206f626a656374732c207761727320616e6420756e72657374206172652073696d6d6572696e6720776f726c64776964652c20616e6420776f6d656e206e6f77616461797320626568617665206c696b6520616c70686120616e696d616c732e2057656c666172652073746174657320616c6c6f772070656f706c6520746f20766567657461746520696e20612067696c64656420636167652c20616c736f206b6e6f776e2061732061206d6f7573652070617261646973652c20696e6372656173696e676c79206861726d6f6e697a696e67207769746820746865697220736c617665206472697665722c20616c736f206b6e6f776e2061732074686520676f7665726e6d656e742c20617320696620696e2053746f636b686f6c6d2073796e64726f6d652e205468652066616d696c7920696d6167652069732064657374726f7965642c206d6f72616c2076616c7565732061726520776f727468206e6f7468696e6720616e796d6f72652e20492064657370697365207468652069646561206f662074686520646f6c6c6172277320506f6e7a6920736368656d652c206275742074686f73652077686f20646f6e277420706172746963697061746520676f2068756e6772792e2044696420796f752065766572206865617264206f662074686520556e69766572736532353f2054686520556e697665727365203235206578706572696d656e7420776173206120737475647920636f6e647563746564206279204a6f686e20422e2043616c686f756e20696e207468652031393730732e20497420696e766f6c766564206372656174696e6720616e20656e636c6f73656420656e7669726f6e6d656e7420666f72206c61626f7261746f7279206d6963652c2070726f766964696e67207468656d207769746820756e6c696d69746564207265736f7572636573206c696b6520666f6f6420616e642077617465722c20616e64206d6f6e69746f72696e67207468656972206265686176696f722061732074686520706f70756c6174696f6e20677265772e2054686520676f616c2077617320746f207374756479207468652065666665637473206f66206f766572706f70756c6174696f6e20616e64207265736f75726365206465706c6574696f6e206f6e20736f6369616c206265686176696f7220616e6420706f70756c6174696f6e2064796e616d6963732e20546865206578706572696d656e7420726573756c74656420696e2074686520656d657267656e6365206f6620766172696f757320756e757375616c20616e642064797366756e6374696f6e616c206265686176696f727320616d6f6e6720746865206d6963652c207375636820617320696e637265617365642061676772657373696f6e2c207769746864726177616c2066726f6d20736f6369616c20696e746572616374696f6e732c20616e6420746865206576656e7475616c20636f6c6c61707365206f662074686520706f70756c6174696f6e2c20646573706974652074686520617661696c6162696c697479206f66207265736f75726365732e2049742773206f6674656e20636974656420696e2064697363757373696f6e732061626f75742074686520706f74656e7469616c20636f6e73657175656e636573206f66206f766572706f70756c6174696f6e20616e6420736f6369616c20627265616b646f776e20696e20636f6e66696e6564207370616365732c20616e6420697420686173206265656e20757365642061732061206d65746170686f7220666f7220756e6465727374616e64696e6720746865206368616c6c656e676573206f66206f76657263726f7764696e6720616e64206c696d69746564207265736f757263657320696e2068756d616e20736f636965746965732e205768617420646f65732074686973206578706572696d656e742070726f76653f2054686174207468652077726f6e67206b696e64206f662073656375726974792063616e20726f62207573206f66207468652074727565207365637572697479206f662066726565646f6d20616e6420637265617469766974792e204920776f6e2774206c657420746869732062652074616b656e2066726f6d206d652c20616e642049276c6c20666967687420616761696e7374206265696e6720612070617274206f662074686973206d65737365642d75702073797374656d2e20486f773f2057656c6c2c207769746820637265617469766974792e20492776652064656c76656420696e746f2074686520776f726c64206f6620646563656e7472616c697a65642066696e616e6365206173206120646576656c6f70657220746f206372656174652077686174206172652063616c6c6564204d656d657320776974682074686520676f616c206f662066656564696e672065766572796f6e652066726f6d206d792073696d6d6572696e6720686f74706f742e204974277320746865206f6e6c79207061746820746f20747275652066726565646f6d2e20492776652068616420656e6f756768206f66206265696e67206d6f72616c6c79206578706c6f697465642c20616e64207769746820746869732053484954434f494e2c2049276c6c206d616b652061206e616d6520666f72206d7973656c662e20466f7267657420616c6c2074686f7365207275672070756c6c732062792063727970746f20616464696374732066726f6d20536f6d616c6961204a656574732077686f2074727920746f20736e6174636820796f75722045544820776974682063686561702070726f6a656374732e20576527726520666f7267696e67206f7572206f776e2075746f706961206f662066726565646f6d2c207468652075746f706961206f66206d656d65732e20417265207765206d696365206f7220756e6971756520696e646976696475616c73207769746820686f70657320616e6420647265616d733f204c65742773207370726561642074686520776f726420616e6420616368696576652070726f7370657269747920746f6765746865722e20546869732069732074686520626567696e6e696e67206f6620612066696e616e6369616c20726573697374616e6365207265766f6c7574696f6e2e205765277265206372656174696e67206f7572206f776e2070617261646973652ea2646970667358221220d310b858bca29cbb5502848a112c876bac2a7063c4dbbce10fcaa3e34db5105664736f6c63430008140033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.