More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 27 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Trading Enab... | 14568696 | 1094 days ago | IN | 0 ETH | 0.00119629 | ||||
Set Max Tx Perce... | 14557463 | 1096 days ago | IN | 0 ETH | 0.00052183 | ||||
Set Swap And Sel... | 14557460 | 1096 days ago | IN | 0 ETH | 0.00054234 | ||||
Approve | 14392418 | 1122 days ago | IN | 0 ETH | 0.00172108 | ||||
Approve | 14392397 | 1122 days ago | IN | 0 ETH | 0.0021746 | ||||
Approve | 14392375 | 1122 days ago | IN | 0 ETH | 0.00281001 | ||||
Approve | 14392374 | 1122 days ago | IN | 0 ETH | 0.0098307 | ||||
Set Trading Enab... | 14392371 | 1122 days ago | IN | 0 ETH | 0.00201597 | ||||
Approve | 14392371 | 1122 days ago | IN | 0 ETH | 0.0032993 | ||||
Approve | 14392371 | 1122 days ago | IN | 0 ETH | 0.00332259 | ||||
Approve | 14392371 | 1122 days ago | IN | 0 ETH | 0.01721523 | ||||
Approve | 14392371 | 1122 days ago | IN | 0 ETH | 0.02492618 | ||||
Approve | 14392370 | 1122 days ago | IN | 0 ETH | 0.00298782 | ||||
Approve | 14392368 | 1122 days ago | IN | 0 ETH | 0.00235725 | ||||
Approve | 14392368 | 1122 days ago | IN | 0 ETH | 0.00235725 | ||||
Approve | 14392368 | 1122 days ago | IN | 0 ETH | 0.00252031 | ||||
Approve | 14392368 | 1122 days ago | IN | 0 ETH | 0.00252031 | ||||
Approve | 14392366 | 1122 days ago | IN | 0 ETH | 0.00236328 | ||||
Approve | 14392366 | 1122 days ago | IN | 0 ETH | 0.00236328 | ||||
Approve | 14392366 | 1122 days ago | IN | 0 ETH | 0.0046591 | ||||
Approve | 14392365 | 1122 days ago | IN | 0 ETH | 0.00279464 | ||||
Approve | 14392365 | 1122 days ago | IN | 0 ETH | 0.00436814 | ||||
Set Trading Enab... | 14392362 | 1122 days ago | IN | 0 ETH | 0.00147264 | ||||
Set Swap And Sel... | 14392315 | 1122 days ago | IN | 0 ETH | 0.00102772 | ||||
Set Max Tx Perce... | 14392299 | 1122 days ago | IN | 0 ETH | 0.0011351 |
Latest 12 internal transactions
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
- | 14392371 | 1122 days ago | 0.0068418 ETH | ||||
- | 14392371 | 1122 days ago | 0.0068418 ETH | ||||
- | 14392371 | 1122 days ago | 0.01368361 ETH | ||||
- | 14392371 | 1122 days ago | 0.0379978 ETH | ||||
- | 14392371 | 1122 days ago | 0.0379978 ETH | ||||
- | 14392371 | 1122 days ago | 0.07599561 ETH | ||||
- | 14392369 | 1122 days ago | 0.06578779 ETH | ||||
- | 14392369 | 1122 days ago | 0.06578779 ETH | ||||
- | 14392369 | 1122 days ago | 0.13157558 ETH | ||||
- | 14392369 | 1122 days ago | 0.09519785 ETH | ||||
- | 14392369 | 1122 days ago | 0.09519785 ETH | ||||
- | 14392369 | 1122 days ago | 0.1903957 ETH |
Loading...
Loading
Contract Name:
CryptosPlayground
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-15 */ // Website | https://CryptosPlayground.com // Telegram | https://t.me/CryptosPlayground // Twitter | https://twitter.com/CrptPlayground // Beta Access Card NFT Mint | https://www.cryptosplayground.io // $LetsPlay - Introduction Token to the future of Cryptocurrency Gaming by die hard Simpsons fans! If you love the Simpsons, crypto, games, money, NFT's, community, and feel good vibes... // You've found the right place. // Buy Beta Access Card NFT: Coming immediately after launch https://cryptosplayground.com/#nft // 👻 Stealth launch // 🍩 5% Liquidity/Buybacks // 💰 5% tax for community rewards, house bank and game progression // 1T | 5 ETH | 95% Supply 🍾 Fun positive vibes only | 2% MaxTx to start // Dev is a former pro gamer and is offering the supervision of adults to play fair and nice! // Welcome to Crypto's Playground... Sometimes it can get rough. // Summary: // Crypto's Playground - Use $LetsPlay as your quarters for the Arcade/Casino when the Game is complete, generate a rng NFT as your Avatar, participate in daily games to win rewards, // trade/showcase your NFT's until you get the one that you love, and compete against others by betting against them in the Playground. Be a part of the community to stay #woke on updates // with all crypto related events. pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } //SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.4; contract CryptosPlayground 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; bool public isTradingEnabled; bool private inSwapAndLiquify; bool public swapAndSellEnabled; IUniswapV2Router02 private immutable uniswapV2Router; address public immutable uniswapV2Pair; address payable private feeWallet1 = payable(0xC93d62b5356e8aa125Ba619dC46b0EF2eCE85d6b); // Owner / Liquidity / Buyback Wallet | 5% address payable private feeWallet2 = payable(0x92c65FE7af76B04A3Cdbc7B52a12019C880fbABb); // Community Rewards / House Bank Wallet | 5% uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; uint256 public _maxTxAmount; uint256 private numTokensSoldToSendAsFee = 1000000000 * 10*18; event SwapAndSell(uint256 contractTokenBalance, uint256 newBalance, address wallet1, address wallet2); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() { _name = "CryptosPlayground"; _symbol = "LetsPlay"; _decimals = 18; _totalSupply = 1000000000000 * 10**18; _balances[msg.sender] = _totalSupply; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; swapAndSellEnabled = false; _maxTxAmount = _totalSupply.mul(100).div(100); emit Transfer(address(0), msg.sender, _totalSupply); } receive() external payable {} function getOwner() external view returns (address) { return owner(); } function decimals() external view returns (uint8) { return _decimals; } function symbol() external view returns (string memory) { return _symbol; } function name() external view returns (string memory) { return _name; } function totalSupply() external view override returns (uint256) { return _totalSupply; } function balanceOf(address account) external view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) external view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); return true; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner { require(maxTxPercent <= 100, "Invalid max amount"); _maxTxAmount = _totalSupply.mul(maxTxPercent).div( 10**2 ); } function setSellTokenThreshold(uint256 amount) external onlyOwner { require(amount < _totalSupply,"Invalid amount"); numTokensSoldToSendAsFee = amount; } function setTradingEnabled(bool value) public onlyOwner { isTradingEnabled = value; } function setSwapAndSellEnabled(bool value) public onlyOwner { swapAndSellEnabled = value; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); if(!_isExcludedFromFee[sender] && !_isExcludedFromFee[recipient]){ require(amount <= _maxTxAmount,"Transfer amount exceeds maximum"); if(sender == uniswapV2Pair || recipient == uniswapV2Pair){ require(isTradingEnabled,"Trading is not enabled"); } uint256 feeAmount = amount.mul(10).div(100); _balances[address(this)] = _balances[address(this)].add(feeAmount); amount = amount.sub(feeAmount); emit Transfer(sender, address(this), feeAmount); } uint256 contractTokenBalance = this.balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount){ contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSoldToSendAsFee; if ( overMinTokenBalance && !inSwapAndLiquify && sender != uniswapV2Pair && swapAndSellEnabled ) { //add liquidity swapAndSell(contractTokenBalance); } _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function swapAndSell(uint256 contractTokenBalance) private lockTheSwap { // capture the contract's current ETH balance. uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(contractTokenBalance); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap feeWallet1.transfer(newBalance.div(2)); feeWallet2.transfer(newBalance.div(2)); emit SwapAndSell(contractTokenBalance, newBalance, feeWallet1, feeWallet2); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) internal { 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 _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"contractTokenBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"},{"indexed":false,"internalType":"address","name":"wallet1","type":"address"},{"indexed":false,"internalType":"address","name":"wallet2","type":"address"}],"name":"SwapAndSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSellTokenThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSwapAndSellEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndSellEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526004805476c93d62b5356e8aa125ba619dc46b0ef2ece85d6b0000006301000000600160b81b0319909116179055600580546001600160a01b0319167392c65fe7af76b04a3cdbc7b52a12019c880fbabb1790556429e8d60800600b553480156200006e57600080fd5b506200007a33620003a0565b6040805180820190915260118082527010dc9e5c1d1bdcd41b185e59dc9bdd5b99607a1b6020909201918252620000b49160099162000413565b50604080518082019091526008808252674c657473506c617960c01b6020909201918252620000e4918162000413565b506007805460ff191660121790556c0c9f2c9cd04674edea4000000060068190553360009081526001602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200016457600080fd5b505afa15801562000179573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019f9190620004b9565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e857600080fd5b505afa158015620001fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002239190620004b9565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200026c57600080fd5b505af115801562000281573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a79190620004b9565b6001600160601b0319606091821b811660a0529082901b16608052600160036000620002db6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600383522080549092166001179091556004805462ff0000191690556006546200035b9160649162000347918390620009ce620003f0821b17901c565b6200040560201b620009e11790919060201c565b600a5560065460405190815233906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3506200056c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620003fe828462000503565b9392505050565b6000620003fe8284620004e2565b82805462000421906200052f565b90600052602060002090601f01602090048101928262000445576000855562000490565b82601f106200046057805160ff191683800117855562000490565b8280016001018555821562000490579182015b828111156200049057825182559160200191906001019062000473565b506200049e929150620004a2565b5090565b5b808211156200049e5760008155600101620004a3565b600060208284031215620004cb578081fd5b81516001600160a01b0381168114620003fe578182fd5b600082620004fe57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200052a57634e487b7160e01b81526011600452602481fd5b500290565b600181811c908216806200054457607f821691505b602082108114156200056657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c611806620005bb600039600081816102d701528181610cbb01528181610cf60152610eba0152600081816112be0152818161139401526113d001526118066000f3fe6080604052600436106101855760003560e01c8063893d20e8116100d1578063c2e5ec041161008a578063dd62ed3e11610064578063dd62ed3e14610465578063e316cfe5146104ab578063ea2f0b37146104cb578063f2fde38b146104eb57600080fd5b8063c2e5ec0414610405578063d543dbeb14610425578063d7b7a0dc1461044557600080fd5b8063893d20e8146103725780638da5cb5b1461037257806395d89b4114610390578063a457c2d7146103a5578063a9059cbb146103c5578063b6343b21146103e557600080fd5b8063395093511161013e57806349bd5a5e1161011857806349bd5a5e146102c557806370a0823114610311578063715018a6146103475780637d1db4a51461035c57600080fd5b8063395093511461026357806342966c6814610283578063437823ec146102a357600080fd5b8063064a59d01461019157806306fdde03146101c0578063095ea7b3146101e257806318160ddd1461020257806323b872dd14610221578063313ce5671461024157600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506004546101ab9060ff1681565b60405190151581526020015b60405180910390f35b3480156101cc57600080fd5b506101d561050b565b6040516101b7919061156f565b3480156101ee57600080fd5b506101ab6101fd3660046114f4565b61059d565b34801561020e57600080fd5b506006545b6040519081526020016101b7565b34801561022d57600080fd5b506101ab61023c3660046114b4565b6105b3565b34801561024d57600080fd5b5060075460405160ff90911681526020016101b7565b34801561026f57600080fd5b506101ab61027e3660046114f4565b61061c565b34801561028f57600080fd5b506101ab61029e36600461153f565b610652565b3480156102af57600080fd5b506102c36102be366004611444565b610666565b005b3480156102d157600080fd5b506102f97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101b7565b34801561031d57600080fd5b5061021361032c366004611444565b6001600160a01b031660009081526001602052604090205490565b34801561035357600080fd5b506102c36106bd565b34801561036857600080fd5b50610213600a5481565b34801561037e57600080fd5b506000546001600160a01b03166102f9565b34801561039c57600080fd5b506101d56106f3565b3480156103b157600080fd5b506101ab6103c03660046114f4565b610702565b3480156103d157600080fd5b506101ab6103e03660046114f4565b610751565b3480156103f157600080fd5b506102c361040036600461153f565b61075e565b34801561041157600080fd5b506102c361042036600461151f565b6107cf565b34801561043157600080fd5b506102c361044036600461153f565b61080c565b34801561045157600080fd5b506004546101ab9062010000900460ff1681565b34801561047157600080fd5b5061021361048036600461147c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156104b757600080fd5b506102c36104c636600461151f565b6108a2565b3480156104d757600080fd5b506102c36104e6366004611444565b6108e8565b3480156104f757600080fd5b506102c3610506366004611444565b610933565b60606009805461051a906116d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610546906116d5565b80156105935780601f1061056857610100808354040283529160200191610593565b820191906000526020600020905b81548152906001019060200180831161057657829003601f168201915b5050505050905090565b60006105aa3384846109ed565b50600192915050565b60006105c0848484610b11565b610612843361060d85604051806060016040528060288152602001611784602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610f97565b6109ed565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916105aa91859061060d9086610fc3565b600061065e3383610fcf565b506001919050565b6000546001600160a01b031633146106995760405162461bcd60e51b8152600401610690906115c2565b60405180910390fd5b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b6000546001600160a01b031633146106e75760405162461bcd60e51b8152600401610690906115c2565b6106f160006110da565b565b60606008805461051a906116d5565b60006105aa338461060d856040518060600160405280602581526020016117ac602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610f97565b60006105aa338484610b11565b6000546001600160a01b031633146107885760405162461bcd60e51b8152600401610690906115c2565b60065481106107ca5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610690565b600b55565b6000546001600160a01b031633146107f95760405162461bcd60e51b8152600401610690906115c2565b6004805460ff1916911515919091179055565b6000546001600160a01b031633146108365760405162461bcd60e51b8152600401610690906115c2565b606481111561087c5760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a59081b585e08185b5bdd5b9d60721b6044820152606401610690565b61089c6064610896836006546109ce90919063ffffffff16565b906109e1565b600a5550565b6000546001600160a01b031633146108cc5760405162461bcd60e51b8152600401610690906115c2565b60048054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146109125760405162461bcd60e51b8152600401610690906115c2565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6000546001600160a01b0316331461095d5760405162461bcd60e51b8152600401610690906115c2565b6001600160a01b0381166109c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610690565b6109cb816110da565b50565b60006109da828461169f565b9392505050565b60006109da828461167f565b6001600160a01b038316610a4f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610690565b6001600160a01b038216610ab05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610690565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610690565b6001600160a01b038216610bd75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610690565b610c148160405180606001604052806026815260200161175e602691396001600160a01b0386166000908152600160205260409020549190610f97565b6001600160a01b03841660009081526001602090815260408083209390935560039052205460ff16158015610c6257506001600160a01b03821660009081526003602052604090205460ff16155b15610e1457600a54811115610cb95760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220616d6f756e742065786365656473206d6178696d756d006044820152606401610690565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610d2a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b15610d7a5760045460ff16610d7a5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610690565b6000610d8c606461089684600a6109ce565b30600090815260016020526040902054909150610da99082610fc3565b30600090815260016020526040902055610dc3828261112a565b9150306001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e0a91815260200190565b60405180910390a3505b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b158015610e4d57600080fd5b505afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190611557565b9050600a548110610e955750600a545b600b5481108015908190610eb15750600454610100900460ff16155b8015610eef57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015610f03575060045462010000900460ff165b15610f1157610f1182611136565b6001600160a01b038416600090815260016020526040902054610f349084610fc3565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f889087815260200190565b60405180910390a35050505050565b60008184841115610fbb5760405162461bcd60e51b8152600401610690919061156f565b505050900390565b60006109da8284611667565b6001600160a01b03821661102f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610690565b61106c8160405180606001604052806022815260200161173c602291396001600160a01b0385166000908152600160205260409020549190610f97565b6001600160a01b038316600090815260016020526040902055600654611092908261112a565b6006556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006109da82846116be565b6004805461ff0019166101001790554761114f82611259565b600061115b478361112a565b600454909150630100000090046001600160a01b03166108fc61117f8360026109e1565b6040518115909202916000818181858888f193505050501580156111a7573d6000803e3d6000fd5b506005546001600160a01b03166108fc6111c28360026109e1565b6040518115909202916000818181858888f193505050501580156111ea573d6000803e3d6000fd5b5060045460055460408051868152602081018590526001600160a01b036301000000909404841681830152929091166060830152517f86c8a418ca900167dba44a9de9a7f7d8504021d589bf656066f8925595487c4b9181900360800190a150506004805461ff001916905550565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061129c57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561131557600080fd5b505afa158015611329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134d9190611460565b8160018151811061136e57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250506113b9307f0000000000000000000000000000000000000000000000000000000000000000846109ed565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061140e9085906000908690309042906004016115f7565b600060405180830381600087803b15801561142857600080fd5b505af115801561143c573d6000803e3d6000fd5b505050505050565b600060208284031215611455578081fd5b81356109da81611726565b600060208284031215611471578081fd5b81516109da81611726565b6000806040838503121561148e578081fd5b823561149981611726565b915060208301356114a981611726565b809150509250929050565b6000806000606084860312156114c8578081fd5b83356114d381611726565b925060208401356114e381611726565b929592945050506040919091013590565b60008060408385031215611506578182fd5b823561151181611726565b946020939093013593505050565b600060208284031215611530578081fd5b813580151581146109da578182fd5b600060208284031215611550578081fd5b5035919050565b600060208284031215611568578081fd5b5051919050565b6000602080835283518082850152825b8181101561159b5785810183015185820160400152820161157f565b818111156115ac5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156116465784516001600160a01b031683529383019391830191600101611621565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561167a5761167a611710565b500190565b60008261169a57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156116b9576116b9611710565b500290565b6000828210156116d0576116d0611710565b500390565b600181811c908216806116e957607f821691505b6020821081141561170a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146109cb57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fac082460a1c285f4f5f4d37da9ddc2ee6e619d1385379eeaa36e940552b3cf764736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101855760003560e01c8063893d20e8116100d1578063c2e5ec041161008a578063dd62ed3e11610064578063dd62ed3e14610465578063e316cfe5146104ab578063ea2f0b37146104cb578063f2fde38b146104eb57600080fd5b8063c2e5ec0414610405578063d543dbeb14610425578063d7b7a0dc1461044557600080fd5b8063893d20e8146103725780638da5cb5b1461037257806395d89b4114610390578063a457c2d7146103a5578063a9059cbb146103c5578063b6343b21146103e557600080fd5b8063395093511161013e57806349bd5a5e1161011857806349bd5a5e146102c557806370a0823114610311578063715018a6146103475780637d1db4a51461035c57600080fd5b8063395093511461026357806342966c6814610283578063437823ec146102a357600080fd5b8063064a59d01461019157806306fdde03146101c0578063095ea7b3146101e257806318160ddd1461020257806323b872dd14610221578063313ce5671461024157600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506004546101ab9060ff1681565b60405190151581526020015b60405180910390f35b3480156101cc57600080fd5b506101d561050b565b6040516101b7919061156f565b3480156101ee57600080fd5b506101ab6101fd3660046114f4565b61059d565b34801561020e57600080fd5b506006545b6040519081526020016101b7565b34801561022d57600080fd5b506101ab61023c3660046114b4565b6105b3565b34801561024d57600080fd5b5060075460405160ff90911681526020016101b7565b34801561026f57600080fd5b506101ab61027e3660046114f4565b61061c565b34801561028f57600080fd5b506101ab61029e36600461153f565b610652565b3480156102af57600080fd5b506102c36102be366004611444565b610666565b005b3480156102d157600080fd5b506102f97f000000000000000000000000c4c509bc195d2df6bc774a4707c6806fd461abb681565b6040516001600160a01b0390911681526020016101b7565b34801561031d57600080fd5b5061021361032c366004611444565b6001600160a01b031660009081526001602052604090205490565b34801561035357600080fd5b506102c36106bd565b34801561036857600080fd5b50610213600a5481565b34801561037e57600080fd5b506000546001600160a01b03166102f9565b34801561039c57600080fd5b506101d56106f3565b3480156103b157600080fd5b506101ab6103c03660046114f4565b610702565b3480156103d157600080fd5b506101ab6103e03660046114f4565b610751565b3480156103f157600080fd5b506102c361040036600461153f565b61075e565b34801561041157600080fd5b506102c361042036600461151f565b6107cf565b34801561043157600080fd5b506102c361044036600461153f565b61080c565b34801561045157600080fd5b506004546101ab9062010000900460ff1681565b34801561047157600080fd5b5061021361048036600461147c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156104b757600080fd5b506102c36104c636600461151f565b6108a2565b3480156104d757600080fd5b506102c36104e6366004611444565b6108e8565b3480156104f757600080fd5b506102c3610506366004611444565b610933565b60606009805461051a906116d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610546906116d5565b80156105935780601f1061056857610100808354040283529160200191610593565b820191906000526020600020905b81548152906001019060200180831161057657829003601f168201915b5050505050905090565b60006105aa3384846109ed565b50600192915050565b60006105c0848484610b11565b610612843361060d85604051806060016040528060288152602001611784602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610f97565b6109ed565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916105aa91859061060d9086610fc3565b600061065e3383610fcf565b506001919050565b6000546001600160a01b031633146106995760405162461bcd60e51b8152600401610690906115c2565b60405180910390fd5b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b6000546001600160a01b031633146106e75760405162461bcd60e51b8152600401610690906115c2565b6106f160006110da565b565b60606008805461051a906116d5565b60006105aa338461060d856040518060600160405280602581526020016117ac602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610f97565b60006105aa338484610b11565b6000546001600160a01b031633146107885760405162461bcd60e51b8152600401610690906115c2565b60065481106107ca5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610690565b600b55565b6000546001600160a01b031633146107f95760405162461bcd60e51b8152600401610690906115c2565b6004805460ff1916911515919091179055565b6000546001600160a01b031633146108365760405162461bcd60e51b8152600401610690906115c2565b606481111561087c5760405162461bcd60e51b8152602060048201526012602482015271125b9d985b1a59081b585e08185b5bdd5b9d60721b6044820152606401610690565b61089c6064610896836006546109ce90919063ffffffff16565b906109e1565b600a5550565b6000546001600160a01b031633146108cc5760405162461bcd60e51b8152600401610690906115c2565b60048054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146109125760405162461bcd60e51b8152600401610690906115c2565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6000546001600160a01b0316331461095d5760405162461bcd60e51b8152600401610690906115c2565b6001600160a01b0381166109c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610690565b6109cb816110da565b50565b60006109da828461169f565b9392505050565b60006109da828461167f565b6001600160a01b038316610a4f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610690565b6001600160a01b038216610ab05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610690565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610690565b6001600160a01b038216610bd75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610690565b610c148160405180606001604052806026815260200161175e602691396001600160a01b0386166000908152600160205260409020549190610f97565b6001600160a01b03841660009081526001602090815260408083209390935560039052205460ff16158015610c6257506001600160a01b03821660009081526003602052604090205460ff16155b15610e1457600a54811115610cb95760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220616d6f756e742065786365656473206d6178696d756d006044820152606401610690565b7f000000000000000000000000c4c509bc195d2df6bc774a4707c6806fd461abb66001600160a01b0316836001600160a01b03161480610d2a57507f000000000000000000000000c4c509bc195d2df6bc774a4707c6806fd461abb66001600160a01b0316826001600160a01b0316145b15610d7a5760045460ff16610d7a5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610690565b6000610d8c606461089684600a6109ce565b30600090815260016020526040902054909150610da99082610fc3565b30600090815260016020526040902055610dc3828261112a565b9150306001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e0a91815260200190565b60405180910390a3505b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b158015610e4d57600080fd5b505afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190611557565b9050600a548110610e955750600a545b600b5481108015908190610eb15750600454610100900460ff16155b8015610eef57507f000000000000000000000000c4c509bc195d2df6bc774a4707c6806fd461abb66001600160a01b0316856001600160a01b031614155b8015610f03575060045462010000900460ff165b15610f1157610f1182611136565b6001600160a01b038416600090815260016020526040902054610f349084610fc3565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f889087815260200190565b60405180910390a35050505050565b60008184841115610fbb5760405162461bcd60e51b8152600401610690919061156f565b505050900390565b60006109da8284611667565b6001600160a01b03821661102f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610690565b61106c8160405180606001604052806022815260200161173c602291396001600160a01b0385166000908152600160205260409020549190610f97565b6001600160a01b038316600090815260016020526040902055600654611092908261112a565b6006556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006109da82846116be565b6004805461ff0019166101001790554761114f82611259565b600061115b478361112a565b600454909150630100000090046001600160a01b03166108fc61117f8360026109e1565b6040518115909202916000818181858888f193505050501580156111a7573d6000803e3d6000fd5b506005546001600160a01b03166108fc6111c28360026109e1565b6040518115909202916000818181858888f193505050501580156111ea573d6000803e3d6000fd5b5060045460055460408051868152602081018590526001600160a01b036301000000909404841681830152929091166060830152517f86c8a418ca900167dba44a9de9a7f7d8504021d589bf656066f8925595487c4b9181900360800190a150506004805461ff001916905550565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061129c57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561131557600080fd5b505afa158015611329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134d9190611460565b8160018151811061136e57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250506113b9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846109ed565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061140e9085906000908690309042906004016115f7565b600060405180830381600087803b15801561142857600080fd5b505af115801561143c573d6000803e3d6000fd5b505050505050565b600060208284031215611455578081fd5b81356109da81611726565b600060208284031215611471578081fd5b81516109da81611726565b6000806040838503121561148e578081fd5b823561149981611726565b915060208301356114a981611726565b809150509250929050565b6000806000606084860312156114c8578081fd5b83356114d381611726565b925060208401356114e381611726565b929592945050506040919091013590565b60008060408385031215611506578182fd5b823561151181611726565b946020939093013593505050565b600060208284031215611530578081fd5b813580151581146109da578182fd5b600060208284031215611550578081fd5b5035919050565b600060208284031215611568578081fd5b5051919050565b6000602080835283518082850152825b8181101561159b5785810183015185820160400152820161157f565b818111156115ac5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156116465784516001600160a01b031683529383019391830191600101611621565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561167a5761167a611710565b500190565b60008261169a57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156116b9576116b9611710565b500290565b6000828210156116d0576116d0611710565b500390565b600181811c908216806116e957607f821691505b6020821081141561170a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146109cb57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fac082460a1c285f4f5f4d37da9ddc2ee6e619d1385379eeaa36e940552b3cf764736f6c63430008040033
Deployed Bytecode Sourcemap
19815:8792:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20094:28;;;;;;;;;;-1:-1:-1;20094:28:0;;;;;;;;;;;2811:14:1;;2804:22;2786:41;;2774:2;2759:18;20094:28:0;;;;;;;;22059:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22677:153::-;;;;;;;;;;-1:-1:-1;22677:153:0;;;;;:::i;:::-;;:::i;22144:96::-;;;;;;;;;;-1:-1:-1;22222:12:0;;22144:96;;;7781:25:1;;;7769:2;7754:18;22144:96:0;7736:76:1;22836:301:0;;;;;;;;;;-1:-1:-1;22836:301:0;;;;;:::i;:::-;;:::i;21885:79::-;;;;;;;;;;-1:-1:-1;21949:9:0;;21885:79;;21949:9;;;;9415:36:1;;9403:2;9388:18;21885:79:0;9370:87:1;23143:200:0;;;;;;;;;;-1:-1:-1;23143:200:0;;;;;:::i;:::-;;:::i;23606:110::-;;;;;;;;;;-1:-1:-1;23606:110:0;;;;;:::i;:::-;;:::i;23724:105::-;;;;;;;;;;-1:-1:-1;23724:105:0;;;;;:::i;:::-;;:::i;:::-;;20257:38;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2602:32:1;;;2584:51;;2572:2;2557:18;20257:38:0;2539:102:1;22246:115:0;;;;;;;;;;-1:-1:-1;22246:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;22337:18:0;22314:7;22337:18;;;:9;:18;;;;;;;22246:115;16345:94;;;;;;;;;;;;;:::i;20702:27::-;;;;;;;;;;;;;;;;21800:79;;;;;;;;;;-1:-1:-1;21843:7:0;15767:6;-1:-1:-1;;;;;15767:6:0;21800:79;;21970:83;;;;;;;;;;;;;:::i;23349:251::-;;;;;;;;;;-1:-1:-1;23349:251:0;;;;;:::i;:::-;;:::i;22367:159::-;;;;;;;;;;-1:-1:-1;22367:159:0;;;;;:::i;:::-;;:::i;24171:168::-;;;;;;;;;;-1:-1:-1;24171:168:0;;;;;:::i;:::-;;:::i;24347:93::-;;;;;;;;;;-1:-1:-1;24347:93:0;;;;;:::i;:::-;;:::i;23953:210::-;;;;;;;;;;-1:-1:-1;23953:210:0;;;;;:::i;:::-;;:::i;20161:30::-;;;;;;;;;;-1:-1:-1;20161:30:0;;;;;;;;;;;22532:139;;;;;;;;;;-1:-1:-1;22532:139:0;;;;;:::i;:::-;-1:-1:-1;;;;;22638:18:0;;;22615:7;22638:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22532:139;24448:99;;;;;;;;;;-1:-1:-1;24448:99:0;;;;;:::i;:::-;;:::i;23839:106::-;;;;;;;;;;-1:-1:-1;23839:106:0;;;;;:::i;:::-;;:::i;16594:192::-;;;;;;;;;;-1:-1:-1;16594:192:0;;;;;:::i;:::-;;:::i;22059:79::-;22098:13;22127:5;22120:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22059:79;:::o;22677:153::-;22754:4;22767:39;14619:10;22790:7;22799:6;22767:8;:39::i;:::-;-1:-1:-1;22820:4:0;22677:153;;;;:::o;22836:301::-;22936:4;22949:36;22959:6;22967:9;22978:6;22949:9;:36::i;:::-;22992:121;23001:6;14619:10;23023:89;23061:6;23023:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23023:19:0;;;;;;:11;:19;;;;;;;;14619:10;23023:33;;;;;;;;;;:37;:89::i;:::-;22992:8;:121::i;:::-;-1:-1:-1;23127:4:0;22836:301;;;;;:::o;23143:200::-;14619:10;23223:4;23268:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;23268:34:0;;;;;;;;;;23223:4;;23236:83;;23259:7;;23268:50;;23307:10;23268:38;:50::i;23606:110::-;23652:4;23665:27;14619:10;23685:6;23665:5;:27::i;:::-;-1:-1:-1;23706:4:0;;23606:110;-1:-1:-1;23606:110:0:o;23724:105::-;15740:7;15767:6;-1:-1:-1;;;;;15767:6:0;14619:10;15914:23;15906:68;;;;-1:-1:-1;;;15906:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;23789:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;23789:34:0::1;23819:4;23789:34;::::0;;23724:105::o;16345:94::-;15740:7;15767:6;-1:-1:-1;;;;;15767:6:0;14619:10;15914:23;15906:68;;;;-1:-1:-1;;;15906:68:0;;;;;;;:::i;:::-;16410:21:::1;16428:1;16410:9;:21::i;:::-;16345:94::o:0;21970:83::-;22011:13;22040:7;22033:14;;;;;:::i;23349:251::-;23434:4;23447:129;14619:10;23470:7;23479:96;23518:15;23479:96;;;;;;;;;;;;;;;;;14619:10;23479:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;23479:34:0;;;;;;;;;;;;:38;:96::i;22367:159::-;22447:4;22460:42;14619:10;22484:9;22495:6;22460:9;:42::i;24171:168::-;15740:7;15767:6;-1:-1:-1;;;;;15767:6:0;14619:10;15914:23;15906:68;;;;-1:-1:-1;;;15906:68:0;;;;;;;:::i;:::-;24261:12:::1;;24252:6;:21;24244:47;;;::::0;-1:-1:-1;;;24244:47:0;;4862:2:1;24244:47:0::1;::::0;::::1;4844:21:1::0;4901:2;4881:18;;;4874:30;-1:-1:-1;;;4920:18:1;;;4913:44;4974:18;;24244:47:0::1;4834:164:1::0;24244:47:0::1;24300:24;:33:::0;24171:168::o;24347:93::-;15740:7;15767:6;-1:-1:-1;;;;;15767:6:0;14619:10;15914:23;15906:68;;;;-1:-1:-1;;;15906:68:0;;;;;;;:::i;:::-;24410:16:::1;:24:::0;;-1:-1:-1;;24410:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24347:93::o;23953:210::-;15740:7;15767:6;-1:-1:-1;;;;;15767:6:0;14619:10;15914:23;15906:68;;;;-1:-1:-1;;;15906:68:0;;;;;;;:::i;:::-;24050:3:::1;24034:12;:19;;24026:50;;;::::0;-1:-1:-1;;;24026:50:0;;6277:2:1;24026:50:0::1;::::0;::::1;6259:21:1::0;6316:2;6296:18;;;6289:30;-1:-1:-1;;;6335:18:1;;;6328:48;6393:18;;24026:50:0::1;6249:168:1::0;24026:50:0::1;24100:57;24145:5;24100:30;24117:12;24100;;:16;;:30;;;;:::i;:::-;:34:::0;::::1;:57::i;:::-;24085:12;:72:::0;-1:-1:-1;23953:210:0:o;24448:99::-;15740:7;15767:6;-1:-1:-1;;;;;15767:6:0;14619:10;15914:23;15906:68;;;;-1:-1:-1;;;15906:68:0;;;;;;;:::i;:::-;24515:18:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;24515:26:0;;::::1;::::0;;;::::1;::::0;;24448:99::o;23839:106::-;15740:7;15767:6;-1:-1:-1;;;;;15767:6:0;14619:10;15914:23;15906:68;;;;-1:-1:-1;;;15906:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23902:27:0::1;23932:5;23902:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;23902:35:0::1;::::0;;23839:106::o;16594:192::-;15740:7;15767:6;-1:-1:-1;;;;;15767:6:0;14619:10;15914:23;15906:68;;;;-1:-1:-1;;;15906:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16683:22:0;::::1;16675:73;;;::::0;-1:-1:-1;;;16675:73:0;;4052:2:1;16675:73:0::1;::::0;::::1;4034:21:1::0;4091:2;4071:18;;;4064:30;4130:34;4110:18;;;4103:62;-1:-1:-1;;;4181:18:1;;;4174:36;4227:19;;16675:73:0::1;4024:228:1::0;16675:73:0::1;16759:19;16769:8;16759:9;:19::i;:::-;16594:192:::0;:::o;10544:98::-;10602:7;10629:5;10633:1;10629;:5;:::i;:::-;10622:12;10544:98;-1:-1:-1;;;10544:98:0:o;10943:::-;11001:7;11028:5;11032:1;11028;:5;:::i;28056:320::-;-1:-1:-1;;;;;28146:19:0;;28138:68;;;;-1:-1:-1;;;28138:68:0;;7432:2:1;28138:68:0;;;7414:21:1;7471:2;7451:18;;;7444:30;7510:34;7490:18;;;7483:62;-1:-1:-1;;;7561:18:1;;;7554:34;7605:19;;28138:68:0;7404:226:1;28138:68:0;-1:-1:-1;;;;;28221:21:0;;28213:68;;;;-1:-1:-1;;;28213:68:0;;4459:2:1;28213:68:0;;;4441:21:1;4498:2;4478:18;;;4471:30;4537:34;4517:18;;;4510:62;-1:-1:-1;;;4588:18:1;;;4581:32;4630:19;;28213:68:0;4431:224:1;28213:68:0;-1:-1:-1;;;;;28290:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28338:32;;7781:25:1;;;28338:32:0;;7754:18:1;28338:32:0;;;;;;;28056:320;;;:::o;24557:1554::-;-1:-1:-1;;;;;24651:20:0;;24643:70;;;;-1:-1:-1;;;24643:70:0;;7026:2:1;24643:70:0;;;7008:21:1;7065:2;7045:18;;;7038:30;7104:34;7084:18;;;7077:62;-1:-1:-1;;;7155:18:1;;;7148:35;7200:19;;24643:70:0;6998:227:1;24643:70:0;-1:-1:-1;;;;;24728:23:0;;24720:71;;;;-1:-1:-1;;;24720:71:0;;3648:2:1;24720:71:0;;;3630:21:1;3687:2;3667:18;;;3660:30;3726:34;3706:18;;;3699:62;-1:-1:-1;;;3777:18:1;;;3770:33;3820:19;;24720:71:0;3620:225:1;24720:71:0;24824;24846:6;24824:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24824:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;24804:17:0;;;;;;:9;:17;;;;;;;;:91;;;;24912:18;:26;;;;;;24911:27;:61;;;;-1:-1:-1;;;;;;24943:29:0;;;;;;:18;:29;;;;;;;;24942:30;24911:61;24908:563;;;25002:12;;24992:6;:22;;24984:65;;;;-1:-1:-1;;;24984:65:0;;5556:2:1;24984:65:0;;;5538:21:1;5595:2;5575:18;;;5568:30;5634:33;5614:18;;;5607:61;5685:18;;24984:65:0;5528:181:1;24984:65:0;25083:13;-1:-1:-1;;;;;25073:23:0;:6;-1:-1:-1;;;;;25073:23:0;;:53;;;;25113:13;-1:-1:-1;;;;;25100:26:0;:9;-1:-1:-1;;;;;25100:26:0;;25073:53;25070:134;;;25150:16;;;;25142:50;;;;-1:-1:-1;;;25142:50:0;;5205:2:1;25142:50:0;;;5187:21:1;5244:2;5224:18;;;5217:30;-1:-1:-1;;;5263:18:1;;;5256:52;5325:18;;25142:50:0;5177:172:1;25142:50:0;25224:17;25244:23;25263:3;25244:14;:6;25255:2;25244:10;:14::i;:23::-;25323:4;25305:24;;;;:9;:24;;;;;;25224:43;;-1:-1:-1;25305:39:0;;25224:43;25305:28;:39::i;:::-;25296:4;25278:24;;;;:9;:24;;;;;:66;25364:21;:6;25375:9;25364:10;:21::i;:::-;25355:30;;25436:4;-1:-1:-1;;;;;25411:42:0;25420:6;-1:-1:-1;;;;;25411:42:0;;25443:9;25411:42;;;;7781:25:1;;7769:2;7754:18;;7736:76;25411:42:0;;;;;;;;24908:563;;25514:29;;-1:-1:-1;;;25514:29:0;;:4;:29;;;2584:51:1;;;25483:28:0;;25514:14;;2557:18:1;;25514:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25483:60;;25587:12;;25563:20;:36;25560:94;;-1:-1:-1;25634:12:0;;25560:94;25721:24;;25697:48;;;;;;;25776:49;;-1:-1:-1;25809:16:0;;;;;;;25808:17;25776:49;:85;;;;;25848:13;-1:-1:-1;;;;;25838:23:0;:6;-1:-1:-1;;;;;25838:23:0;;;25776:85;:116;;;;-1:-1:-1;25874:18:0;;;;;;;25776:116;25762:215;;;25936:33;25948:20;25936:11;:33::i;:::-;-1:-1:-1;;;;;26006:20:0;;;;;;:9;:20;;;;;;:32;;26031:6;26006:24;:32::i;:::-;-1:-1:-1;;;;;25983:20:0;;;;;;;:9;:20;;;;;;;:55;;;;26064:35;;;;;;;;;;26092:6;7781:25:1;;7769:2;7754:18;;7736:76;26064:35:0;;;;;;;;24557:1554;;;;;:::o;12085:240::-;12205:7;12266:12;12258:6;;;;12250:29;;;;-1:-1:-1;;;12250:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;12301:5:0;;;12085:240::o;9806:98::-;9864:7;9891:5;9895:1;9891;:5;:::i;27720:330::-;-1:-1:-1;;;;;27792:21:0;;27784:67;;;;-1:-1:-1;;;27784:67:0;;6624:2:1;27784:67:0;;;6606:21:1;6663:2;6643:18;;;6636:30;6702:34;6682:18;;;6675:62;-1:-1:-1;;;6753:18:1;;;6746:31;6794:19;;27784:67:0;6596:223:1;27784:67:0;27881:68;27904:6;27881:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27881:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;27860:18:0;;;;;;:9;:18;;;;;:89;27971:12;;:24;;27988:6;27971:16;:24::i;:::-;27956:12;:39;28007:37;;7781:25:1;;;28033:1:0;;-1:-1:-1;;;;;28007:37:0;;;;;7769:2:1;7754:18;28007:37:0;;;;;;;27720:330;;:::o;16794:173::-;16850:16;16869:6;;-1:-1:-1;;;;;16886:17:0;;;-1:-1:-1;;;;;;16886:17:0;;;;;;16919:40;;16869:6;;;;;;;16919:40;;16850:16;16919:40;16794:173;;:::o;10187:98::-;10245:7;10272:5;10276:1;10272;:5;:::i;26119:702::-;20946:16;:23;;-1:-1:-1;;20946:23:0;;;;;26284:21:::1;26350:38;26367:20:::0;26350:16:::1;:38::i;:::-;26519:18;26540:41;:21;26566:14:::0;26540:25:::1;:41::i;:::-;26631:10;::::0;26519:62;;-1:-1:-1;26631:10:0;;::::1;-1:-1:-1::0;;;;;26631:10:0::1;:38;26651:17;26519:62:::0;26666:1:::1;26651:14;:17::i;:::-;26631:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;26680:10:0::1;::::0;-1:-1:-1;;;;;26680:10:0::1;:38;26700:17;:10:::0;26715:1:::1;26700:14;:17::i;:::-;26680:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;26790:10:0::1;::::0;26802::::1;::::0;26744:69:::1;::::0;;9052:25:1;;;9108:2;9093:18;;9086:34;;;-1:-1:-1;;;;;26790:10:0;;;::::1;::::0;::::1;9174:18:1::0;;;9167:43;26802:10:0;;;::::1;9241:2:1::0;9226:18;;9219:43;26744:69:0;::::1;::::0;;;;9039:3:1;26744:69:0;;::::1;-1:-1:-1::0;;20992:16:0;:24;;-1:-1:-1;;20992:24:0;;;-1:-1:-1;26119:702:0:o;26829:589::-;26979:16;;;26993:1;26979:16;;;;;;;;26955:21;;26979:16;;;;;;;;;;-1:-1:-1;26979:16:0;26955:40;;27024:4;27006;27011:1;27006:7;;;;;;-1:-1:-1;;;27006:7:0;;;;;;;;;;;;;;:23;-1:-1:-1;;;;;27006:23:0;;;-1:-1:-1;;;;;27006:23:0;;;;;27050:15;-1:-1:-1;;;;;27050:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27040:4;27045:1;27040:7;;;;;;-1:-1:-1;;;27040:7:0;;;;;;;;;;;;;;:32;-1:-1:-1;;;;;27040:32:0;;;-1:-1:-1;;;;;27040:32:0;;;;;27085:62;27102:4;27117:15;27135:11;27085:8;:62::i;:::-;27186:224;;-1:-1:-1;;;27186:224:0;;-1:-1:-1;;;;;27186:15:0;:66;;;;:224;;27267:11;;27293:1;;27337:4;;27364;;27384:15;;27186:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26829:589;;:::o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:325::-;1484:6;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:2;;;1566:6;1558;1551:22;1513:2;1610:9;1597:23;1629:31;1654:5;1629:31;:::i;:::-;1679:5;1731:2;1716:18;;;;1703:32;;-1:-1:-1;;;1503:238:1:o;1746:293::-;1802:6;1855:2;1843:9;1834:7;1830:23;1826:32;1823:2;;;1876:6;1868;1861:22;1823:2;1920:9;1907:23;1973:5;1966:13;1959:21;1952:5;1949:32;1939:2;;2000:6;1992;1985:22;2044:190;2103:6;2156:2;2144:9;2135:7;2131:23;2127:32;2124:2;;;2177:6;2169;2162:22;2124:2;-1:-1:-1;2205:23:1;;2114:120;-1:-1:-1;2114:120:1:o;2239:194::-;2309:6;2362:2;2350:9;2341:7;2337:23;2333:32;2330:2;;;2383:6;2375;2368:22;2330:2;-1:-1:-1;2411:16:1;;2320:113;-1:-1:-1;2320:113:1:o;2838:603::-;2950:4;2979:2;3008;2997:9;2990:21;3040:6;3034:13;3083:6;3078:2;3067:9;3063:18;3056:34;3108:4;3121:140;3135:6;3132:1;3129:13;3121:140;;;3230:14;;;3226:23;;3220:30;3196:17;;;3215:2;3192:26;3185:66;3150:10;;3121:140;;;3279:6;3276:1;3273:13;3270:2;;;3349:4;3344:2;3335:6;3324:9;3320:22;3316:31;3309:45;3270:2;-1:-1:-1;3425:2:1;3404:15;-1:-1:-1;;3400:29:1;3385:45;;;;3432:2;3381:54;;2959:482;-1:-1:-1;;;2959:482:1:o;5714:356::-;5916:2;5898:21;;;5935:18;;;5928:30;5994:34;5989:2;5974:18;;5967:62;6061:2;6046:18;;5888:182::o;7817:983::-;8079:4;8127:3;8116:9;8112:19;8158:6;8147:9;8140:25;8184:2;8222:6;8217:2;8206:9;8202:18;8195:34;8265:3;8260:2;8249:9;8245:18;8238:31;8289:6;8324;8318:13;8355:6;8347;8340:22;8393:3;8382:9;8378:19;8371:26;;8432:2;8424:6;8420:15;8406:29;;8453:4;8466:195;8480:6;8477:1;8474:13;8466:195;;;8545:13;;-1:-1:-1;;;;;8541:39:1;8529:52;;8636:15;;;;8601:12;;;;8577:1;8495:9;8466:195;;;-1:-1:-1;;;;;;;8717:32:1;;;;8712:2;8697:18;;8690:60;-1:-1:-1;;;8781:3:1;8766:19;8759:35;8678:3;8088:712;-1:-1:-1;;;8088:712:1:o;9462:128::-;9502:3;9533:1;9529:6;9526:1;9523:13;9520:2;;;9539:18;;:::i;:::-;-1:-1:-1;9575:9:1;;9510:80::o;9595:217::-;9635:1;9661;9651:2;;-1:-1:-1;;;9686:31:1;;9740:4;9737:1;9730:15;9768:4;9693:1;9758:15;9651:2;-1:-1:-1;9797:9:1;;9641:171::o;9817:168::-;9857:7;9923:1;9919;9915:6;9911:14;9908:1;9905:21;9900:1;9893:9;9886:17;9882:45;9879:2;;;9930:18;;:::i;:::-;-1:-1:-1;9970:9:1;;9869:116::o;9990:125::-;10030:4;10058:1;10055;10052:8;10049:2;;;10063:18;;:::i;:::-;-1:-1:-1;10100:9:1;;10039:76::o;10120:380::-;10199:1;10195:12;;;;10242;;;10263:2;;10317:4;10309:6;10305:17;10295:27;;10263:2;10370;10362:6;10359:14;10339:18;10336:38;10333:2;;;10416:10;10411:3;10407:20;10404:1;10397:31;10451:4;10448:1;10441:15;10479:4;10476:1;10469:15;10333:2;;10175:325;;;:::o;10505:127::-;10566:10;10561:3;10557:20;10554:1;10547:31;10597:4;10594:1;10587:15;10621:4;10618:1;10611:15;10637:131;-1:-1:-1;;;;;10712:31:1;;10702:42;;10692:2;;10758:1;10755;10748:12
Swarm Source
ipfs://fac082460a1c285f4f5f4d37da9ddc2ee6e619d1385379eeaa36e940552b3cf7
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1,503.97 | 0.000000000000000003 | <$0.000001 |
Loading...
Loading
Loading...
Loading
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.