ERC-20
Overview
Max Total Supply
69,420,000 TSLA
Holders
37
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CustomToken
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-27 */ /* ******************************************************************************************************************************************************************************* * * Powered By t.me/BlazeXDeployerBot - This Contract is safe has no hidden malfunctions - Create your own Contract via telegram with blazex.org * * Disclaimer: The @BlazeXDeployerBot tool assists users in contract deployment. Tokens or contracts initiated through this bot are solely under the user's responsibility and are * not linked to, endorsed by, or associated with the BlazeX Team. Users are urged to approach with caution and comprehend the outcomes of their deployments. The contract has been * reviewed and audited. * TG BOT: t.me/BlazeXdeployerBot ********************************************************************************************************************************************************************************* */ /* * * *—————————————————— * * Description: A crypto coin inspired by the almighty space wizard Elon 'The GOAT' Musk and his electric chariot empire, Tesla. * Website: http://tslaclub.vip/ * Twitter: https://x.com/teslaclubx * Telegram: https://t.me/teslaclubx * *————— */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } abstract 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); } function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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 Address { function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } function sendValue( address payable recipient, uint256 amount ) internal returns (bool) { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); return success; } function functionCall( address target, bytes memory data ) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance( address owner, address spender ) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom( address from, address to, uint value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external; event Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } 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); } 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; } contract CustomToken is Context, IERC20, Ownable { using Address for address; using Address for address payable; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcluded; address[] private _excluded; string private _name="TESLA"; string private _symbol="TSLA"; uint8 private _decimals=9; uint256 private constant MAX = type(uint256).max; uint256 private _tTotal = 69420000000000000; uint256 private _tTotalSupply = 69420000000000000; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint public ReflectionFeeonBuy=0; uint public ReflectionFeeonSell=0; uint public liquidityFeeonBuy=0; uint public liquidityFeeonSell=0; uint public marketingFeeonBuy=100; uint public marketingFeeonSell=100; uint public burnFeeOnBuy=0; uint public burnFeeOnSell=0; uint private _ReflectionFee; uint private _liquidityFee; uint private _marketingFee; uint256 private totalBuyFees; uint256 private totalSellFees; address public marketingWallet=0x642975C435C23fBD125098eDaAF6F0bc0a880a30; address public referralWallet; uint256 public serviceFee; uint256 public referralCommission; uint256 public maxTransactionAmountBuy=2082600000000000; uint256 public maxTransactionAmountSell=2082600000000000; uint256 public maxWalletAmount=2082600000000000; bool public walletToWalletTransferWithoutFee; address private DEAD = 0x000000000000000000000000000000000000dEaD; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private inSwapAndLiquify; bool public swapEnabled; bool public tradingEnabled; uint256 public swapTokensAtAmount=6942000000000; address public lpPair; event ExcludeFromFees(address indexed account, bool isExcluded); event MarketingWalletChanged(address marketingWallet); event SwapEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 bnbReceived, uint256 tokensIntoLiqudity ); event SwapAndSendMarketing(uint256 tokensSwapped, uint256 bnbSend); event SwapTokensAtAmountUpdated(uint256 amount); event BuyFeesChanged( uint256 ReflectionFee, uint256 liquidityFee, uint256 marketingFee ); event SellFeesChanged( uint256 ReflectionFee, uint256 liquidityFee, uint256 marketingFee ); event WalletToWalletTransferWithoutFeeEnabled(bool enabled); constructor() payable { address router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; require(msg.value >= 0.05 ether, "Insufficient value for fee receiver"); serviceFee = 0.05000000000000000 ether; payable(0x72460072CCC5DB06559dd6e970dFD2Cb06ee7876).transfer(serviceFee); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); uniswapV2Router = _uniswapV2Router; _approve(msg.sender, address(uniswapV2Router), MAX); _approve(msg.sender, address(this), MAX); totalBuyFees = ReflectionFeeonBuy + liquidityFeeonBuy + marketingFeeonBuy + burnFeeOnBuy; totalSellFees = ReflectionFeeonSell + liquidityFeeonSell + marketingFeeonSell + burnFeeOnSell; swapTokensAtAmount = _tTotal / 5000; maxTransactionLimitEnabled = true; _isExcludedFromMaxTxLimit[owner()] = true; _isExcludedFromMaxTxLimit[address(0)] = true; _isExcludedFromMaxTxLimit[address(this)] = true; _isExcludedFromMaxTxLimit[marketingWallet] = true; _isExcludedFromMaxTxLimit[DEAD] = true; maxWalletLimitEnabled = true; _isExcludedFromMaxWalletLimit[owner()] = true; _isExcludedFromMaxWalletLimit[address(this)] = true; _isExcludedFromMaxWalletLimit[address(0xdead)] = true; _isExcludedFromMaxWalletLimit[marketingWallet] = true; walletToWalletTransferWithoutFee = true; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(0xdead)] = true; _isExcludedFromFees[address(this)] = true; _isExcluded[address(this)] = true; _isExcluded[address(0xdead)] = true; _isExcluded[address(uniswapV2Pair)] = true; _rOwned[owner()] = _rTotal; _tOwned[owner()] = _tTotal; emit Transfer(address(0), owner(), _tTotal); } function createLPPairIfRequired() private { IUniswapV2Factory factory = IUniswapV2Factory( uniswapV2Router.factory() ); address pair = factory.getPair(address(this), uniswapV2Router.WETH()); if (pair == address(0)) { uniswapV2Pair = factory.createPair( address(this), uniswapV2Router.WETH() ); lpPair = uniswapV2Pair; _isExcluded[address(uniswapV2Pair)] = true; } else { if (uniswapV2Pair != pair) { uniswapV2Pair = pair; lpPair = uniswapV2Pair; _isExcluded[address(uniswapV2Pair)] = true; } } } function setPair(address pair) public onlyOwner { uniswapV2Pair = pair; lpPair = uniswapV2Pair; _isExcluded[address(uniswapV2Pair)] = true; } function addLiquidityETH( uint256 _tokenAmount ) public payable returns (bool) { swapEnabled = false; createLPPairIfRequired(); _transfer(msg.sender, address(this), _tokenAmount); _approve(address(this), address(uniswapV2Router), MAX); uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), _tokenAmount, 0, 0, address(msg.sender), block.timestamp + 50 ); swapEnabled = true; return true; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotalSupply; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[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()] - amount ); return true; } function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue ); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalReflectionDistributed() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require( !_isExcluded[sender], "Excluded addresses cannot call this function" ); (uint256 rAmount, , , , , , ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender] - rAmount; _rTotal = _rTotal - rAmount; _tFeeTotal = _tFeeTotal + tAmount; } function reflectionFromToken( uint256 tAmount, bool deductTransferFee ) public view returns (uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount, , , , , , ) = _getValues(tAmount); return rAmount; } else { (, uint256 rTransferAmount, , , , , ) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection( uint256 rAmount ) public view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount / currentRate; } function excludeFromReward(address account) public onlyOwner { require(!_isExcluded[account], "Account is already excluded"); if (_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Account is already included"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } receive() external payable {} function claimStuckTokens(address token) external onlyOwner { require(token != address(this), "Owner cannot claim native tokens"); if (token == address(0x0)) { payable(msg.sender).sendValue(address(this).balance); return; } IERC20 ERC20token = IERC20(token); uint256 balance = ERC20token.balanceOf(address(this)); ERC20token.transfer(msg.sender, balance); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal - rFee; _tFeeTotal = _tFeeTotal + tFee; } function _getValues( uint256 tAmount ) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tMarketing, _getRate() ); return ( rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tMarketing ); } function _getTValues( uint256 tAmount ) private view returns (uint256, uint256, uint256, uint256) { uint256 tFee = calculateReflectionFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tMarketing = calculateMarketingFee(tAmount); uint256 tTransferAmount = tAmount - tFee - tLiquidity - tMarketing; return (tTransferAmount, tFee, tLiquidity, tMarketing); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 currentRate ) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount * currentRate; uint256 rFee = tFee * currentRate; uint256 rLiquidity = tLiquidity * currentRate; uint256 rMarketing = tMarketing * currentRate; uint256 rTransferAmount = rAmount - rFee - rLiquidity - rMarketing; return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply / tSupply; } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply ) return (_rTotal, _tTotal); rSupply = rSupply - _rOwned[_excluded[i]]; tSupply = tSupply - _tOwned[_excluded[i]]; } if (rSupply < _rTotal / _tTotal) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 liquidityAmount; if ( liquidityFeeonBuy > 0 || liquidityFeeonSell > 0 || burnFeeOnBuy > 0 || burnFeeOnSell > 0 ) { liquidityAmount = (tLiquidity * (liquidityFeeonBuy + liquidityFeeonSell)) / (liquidityFeeonBuy + liquidityFeeonSell + burnFeeOnBuy + burnFeeOnSell); } uint256 burnAmount = tLiquidity - liquidityAmount; if (liquidityAmount > 0) { uint256 currentRate = _getRate(); uint256 rLiquidity = liquidityAmount * currentRate; _rOwned[address(this)] = _rOwned[address(this)] + rLiquidity; if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)] + liquidityAmount; } if (burnAmount > 0) { uint256 currentRate = _getRate(); uint256 rBurn = burnAmount * currentRate; _rOwned[address(0xdead)] = _rOwned[address(0xdead)] + rBurn; if (_isExcluded[address(0xdead)]) _tOwned[address(0xdead)] = _tOwned[address(0xdead)] + burnAmount; _tTotalSupply -= burnAmount; } } function _takeMarketing(uint256 tMarketing) private { if (tMarketing > 0) { uint256 currentRate = _getRate(); uint256 rMarketing = tMarketing * currentRate; _rOwned[address(this)] = _rOwned[address(this)] + rMarketing; if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)] + tMarketing; } } function calculateReflectionFee( uint256 _amount ) private view returns (uint256) { return (_amount * _ReflectionFee) / 1000; } function calculateLiquidityFee( uint256 _amount ) private view returns (uint256) { return (_amount * _liquidityFee) / 1000; } function calculateMarketingFee( uint256 _amount ) private view returns (uint256) { return (_amount * _marketingFee) / 1000; } function removeAllFee() private { if (_ReflectionFee == 0 && _liquidityFee == 0 && _marketingFee == 0) return; _ReflectionFee = 0; _marketingFee = 0; _liquidityFee = 0; } function setBuyFee() private { if ( _ReflectionFee == ReflectionFeeonBuy && _liquidityFee == (liquidityFeeonBuy + burnFeeOnBuy) && _marketingFee == marketingFeeonBuy ) return; _ReflectionFee = ReflectionFeeonBuy; _marketingFee = marketingFeeonBuy; _liquidityFee = liquidityFeeonBuy + burnFeeOnBuy; } function setSellFee() private { if ( _ReflectionFee == ReflectionFeeonSell && _liquidityFee == (liquidityFeeonSell + burnFeeOnSell) && _marketingFee == marketingFeeonSell ) return; _ReflectionFee = ReflectionFeeonSell; _marketingFee = marketingFeeonSell; _liquidityFee = liquidityFeeonSell + burnFeeOnSell; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFees[account]; } 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 enableTrading() external onlyOwner { require(tradingEnabled == false, "Trading is already enabled"); tradingEnabled = true; } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { require(tradingEnabled, "Trading is not enabled yet"); } if (maxTransactionLimitEnabled) { if ( (from == uniswapV2Pair || to == uniswapV2Pair) && _isExcludedFromMaxTxLimit[from] == false && _isExcludedFromMaxTxLimit[to] == false ) { if (from == uniswapV2Pair) { require( amount <= maxTransactionAmountBuy, "AntiWhale: Transfer amount exceeds the maxTransactionAmount" ); } else { require( amount <= maxTransactionAmountSell, "AntiWhale: Transfer amount exceeds the maxTransactionAmount" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount; if ( overMinTokenBalance && !inSwapAndLiquify && to == uniswapV2Pair && swapEnabled ) { inSwapAndLiquify = true; uint256 marketingShare = marketingFeeonBuy + marketingFeeonSell; uint256 liquidityShare = liquidityFeeonBuy + liquidityFeeonSell; uint256 totalShare = marketingShare + liquidityShare; if (totalShare > 0) { if (liquidityShare > 0) { uint256 liquidityTokens = (contractTokenBalance * liquidityShare) / totalShare; swapAndLiquify(liquidityTokens); } if (marketingShare > 0) { uint256 marketingTokens = (contractTokenBalance * marketingShare) / totalShare; swapAndSendMarketing(marketingTokens); } } inSwapAndLiquify = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from, to, amount); if (maxWalletLimitEnabled) { if ( !_isExcludedFromMaxWalletLimit[from] && !_isExcludedFromMaxWalletLimit[to] && to != uniswapV2Pair ) { uint256 balance = balanceOf(to); require( balance + amount <= maxWalletAmount, "MaxWallet: Recipient exceeds the maxWalletAmount" ); } } } function swapAndLiquify(uint256 tokens) private { uint256 half = tokens / 2; uint256 otherHalf = tokens - half; uint256 initialBalance = address(this).balance; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( half, 0, // accept any amount of ETH path, address(this), block.timestamp ); uint256 newBalance = address(this).balance - initialBalance; uniswapV2Router.addLiquidityETH{value: newBalance}( address(this), otherHalf, 0, // slippage is unavoidable 0, // slippage is unavoidable DEAD, block.timestamp ); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapAndSendMarketing(uint256 tokenAmount) private { uint256 initialBalance = address(this).balance; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); uint256 newBalance = address(this).balance - initialBalance; payable(marketingWallet).sendValue(newBalance); emit SwapAndSendMarketing(tokenAmount, newBalance); } function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require( newAmount > totalSupply() / 1e5, "SwapTokensAtAmount must be greater than 0.001% of total supply" ); swapTokensAtAmount = newAmount; emit SwapTokensAtAmountUpdated(newAmount); } function setSwapEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; emit SwapEnabledUpdated(_enabled); } function _tokenTransfer( address sender, address recipient, uint256 amount ) private { if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) { removeAllFee(); } else if (recipient == uniswapV2Pair) { setSellFee(); } else if (sender == uniswapV2Pair) { setBuyFee(); } else if (walletToWalletTransferWithoutFee) { removeAllFee(); } else { setSellFee(); } if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender] - rAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeMarketing(tMarketing); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender] - rAmount; _tOwned[recipient] = _tOwned[recipient] + tTransferAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeMarketing(tMarketing); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender] - tAmount; _rOwned[sender] = _rOwned[sender] - rAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeMarketing(tMarketing); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender] - tAmount; _rOwned[sender] = _rOwned[sender] - rAmount; _tOwned[recipient] = _tOwned[recipient] + tTransferAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeMarketing(tMarketing); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFees( address account, bool excluded ) external onlyOwner { require( _isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'" ); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function changeMarketingWallet( address _marketingWallet ) external onlyOwner { require( _marketingWallet != marketingWallet, "Marketing wallet is already that address" ); require( _marketingWallet != address(0), "Marketing wallet is the zero address" ); marketingWallet = _marketingWallet; emit MarketingWalletChanged(marketingWallet); } function setBuyFeePercentages( uint _ReflectionFeeonBuy, uint _liquidityFeeonBuy, uint _marketingFeeonBuy, uint _burnFeeOnBuy ) external onlyOwner { ReflectionFeeonBuy = _ReflectionFeeonBuy; liquidityFeeonBuy = _liquidityFeeonBuy; marketingFeeonBuy = _marketingFeeonBuy; burnFeeOnBuy = _burnFeeOnBuy; totalBuyFees = ReflectionFeeonBuy + liquidityFeeonBuy + marketingFeeonBuy + burnFeeOnBuy; require(totalBuyFees <= 300, "Buy fees cannot be greater than 30%"); emit BuyFeesChanged( ReflectionFeeonBuy, liquidityFeeonBuy, marketingFeeonBuy ); } function setSellFeePercentages( uint _ReflectionFeeonSell, uint _liquidityFeeonSell, uint _marketingFeeonSell, uint _burnFeeOnSell ) external onlyOwner { ReflectionFeeonSell = _ReflectionFeeonSell; liquidityFeeonSell = _liquidityFeeonSell; marketingFeeonSell = _marketingFeeonSell; burnFeeOnSell = _burnFeeOnSell; totalSellFees = ReflectionFeeonSell + liquidityFeeonSell + marketingFeeonSell + burnFeeOnSell; require(totalSellFees <= 300, "Sell fees cannot be greater than 30%"); emit SellFeesChanged( ReflectionFeeonSell, liquidityFeeonSell, marketingFeeonSell ); } function enableWalletToWalletTransferWithoutFee( bool enable ) external onlyOwner { require( walletToWalletTransferWithoutFee != enable, "Wallet to wallet transfer without fee is already set to that value" ); walletToWalletTransferWithoutFee = enable; emit WalletToWalletTransferWithoutFeeEnabled(enable); } mapping(address => bool) private _isExcludedFromMaxTxLimit; bool public maxTransactionLimitEnabled; event ExcludedFromMaxTransactionLimit( address indexed account, bool isExcluded ); event MaxTransactionLimitStateChanged(bool maxTransactionLimit); event MaxTransactionLimitAmountChanged( uint256 maxTransactionAmountBuy, uint256 maxTransactionAmountSell ); function setEnableMaxTransactionLimit(bool enable) external onlyOwner { require( enable != maxTransactionLimitEnabled, "Max transaction limit is already set to that state" ); maxTransactionLimitEnabled = enable; emit MaxTransactionLimitStateChanged(maxTransactionLimitEnabled); } function setMaxTransactionAmounts( uint256 _maxTransactionAmountBuy, uint256 _maxTransactionAmountSell ) external onlyOwner { require( _maxTransactionAmountBuy >= totalSupply() / 1000 && _maxTransactionAmountSell >= totalSupply() / 1000, "Max Transaction limis cannot be lower than 0.1% of total supply" ); maxTransactionAmountBuy = _maxTransactionAmountBuy; maxTransactionAmountSell = _maxTransactionAmountSell; emit MaxTransactionLimitAmountChanged( maxTransactionAmountBuy, maxTransactionAmountSell ); } function setExcludeFromMaxTransactionLimit( address account, bool exclude ) external onlyOwner { require( _isExcludedFromMaxTxLimit[account] != exclude, "Account is already set to that state" ); _isExcludedFromMaxTxLimit[account] = exclude; emit ExcludedFromMaxTransactionLimit(account, exclude); } function isExcludedFromMaxTransaction( address account ) public view returns (bool) { return _isExcludedFromMaxTxLimit[account]; } mapping(address => bool) private _isExcludedFromMaxWalletLimit; bool public maxWalletLimitEnabled; event ExcludedFromMaxWalletLimit(address indexed account, bool isExcluded); event MaxWalletLimitStateChanged(bool maxWalletLimit); event MaxWalletLimitAmountChanged(uint256 maxWalletAmount); function setEnableMaxWalletLimit(bool enable) external onlyOwner { require( enable != maxWalletLimitEnabled, "Max wallet limit is already set to that state" ); maxWalletLimitEnabled = enable; emit MaxWalletLimitStateChanged(maxWalletLimitEnabled); } function setMaxWalletAmount(uint256 _maxWalletAmount) external onlyOwner { require( _maxWalletAmount >= totalSupply() / 1000, "Max wallet percentage cannot be lower than 0.1%" ); maxWalletAmount = _maxWalletAmount; emit MaxWalletLimitAmountChanged(maxWalletAmount); } function excludeFromMaxWallet( address account, bool exclude ) external onlyOwner { require( _isExcludedFromMaxWalletLimit[account] != exclude, "Account is already set to that state" ); require(account != address(this), "Can't set this address."); _isExcludedFromMaxWalletLimit[account] = exclude; emit ExcludedFromMaxWalletLimit(account, exclude); } function isExcludedFromMaxWalletLimit( address account ) public view returns (bool) { return _isExcludedFromMaxWalletLimit[account]; } function contractTypeBlazex() external pure returns (uint) { return 2; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"ReflectionFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"BuyFeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxTransactionLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxWalletLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"MarketingWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransactionAmountBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxTransactionAmountSell","type":"uint256"}],"name":"MaxTransactionLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxTransactionLimit","type":"bool"}],"name":"MaxTransactionLimitStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxWalletLimit","type":"bool"}],"name":"MaxWalletLimitStateChanged","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":"ReflectionFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"SellFeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbSend","type":"uint256"}],"name":"SwapAndSendMarketing","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensAtAmountUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"WalletToWalletTransferWithoutFeeEnabled","type":"event"},{"inputs":[],"name":"ReflectionFeeonBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ReflectionFeeonSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"addLiquidityETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","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":"burnFeeOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractTypeBlazex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"enableWalletToWalletTransferWithoutFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeonBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeonSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeonBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeonSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmountBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmountSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimitEnabled","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":"referralCommission","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"serviceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ReflectionFeeonBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeonBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeonBuy","type":"uint256"},{"internalType":"uint256","name":"_burnFeeOnBuy","type":"uint256"}],"name":"setBuyFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"setExcludeFromMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionAmountBuy","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmountSell","type":"uint256"}],"name":"setMaxTransactionAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ReflectionFeeonSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeonSell","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeonSell","type":"uint256"},{"internalType":"uint256","name":"_burnFeeOnSell","type":"uint256"}],"name":"setSellFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReflectionDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletToWalletTransferWithoutFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405260056080908152645445534c4160d81b60a052600790620000269082620007c0565b5060408051808201909152600481526354534c4160e01b6020820152600890620000519082620007c0565b506009805460ff19168117905566f6a11f484ec000600a819055600b8190556200007e90600019620008a2565b6200008c90600019620008cf565b600c556000600e819055600f819055601081905560118190556064601281905560135560148190556015819055601b805473642975c435c23fbd125098edaaf6f0bc0a880a306001600160a01b0319918216179091556607661d19359000601f819055602081905560215560228054610100600160a81b03191662dead001790556506504f71ac00602555815433911681178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d66b1a2bc2ec50000341015620001cb5760405162461bcd60e51b815260206004820152602360248201527f496e73756666696369656e742076616c756520666f72206665652072656365696044820152623b32b960e91b60648201526084015b60405180910390fd5b66b1a2bc2ec50000601d8190556040517372460072ccc5db06559dd6e970dfd2cb06ee78769160009182818181858883f1935050505015801562000213573d6000803e3d6000fd5b50602380546001600160a01b0319166001600160a01b038316908117909155819062000244903390600019620005e4565b620002533330600019620005e4565b601454601254601054600e546200026b9190620008eb565b620002779190620008eb565b620002839190620008eb565b601955601554601354601154600f546200029e9190620008eb565b620002aa9190620008eb565b620002b69190620008eb565b601a55600a54620002cb906113889062000901565b6025556028805460ff1916600190811790915560276000620002f56000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905560279093527f552d06d8e69b1fc894b5bb152d5c34ccb2ea2834fd646ff017b1562d77bdb85a8054851660019081179091553084528284208054861682179055601b54821684528284208054861682179055602254610100900490911683529082208054841682179055602a80549093168117909255602990620003af6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260299093528183208054851660019081179091557f16f9c3ed1581301300a6478f511a4cd0de0c2efd40004ab5590b096193ba59748054861682179055601b5490911683529082208054841682179055602280549093168117909255600490620004526000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600484527f42c63635470f1fb1d6d4b6441c413cb435b1ebb6fedd1896dd5e25d1399147dd8054861660019081179091553082528382208054871682179055600590945282812080548616851790557f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba8054861685179055602454909116815290812080549093168217909255600c5491620005246000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600a54600260006200055f6200070c60201b60201c565b6001600160a01b031681526020810191909152604001600020556200058c6000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a54604051620005d491815260200190565b60405180910390a3505062000918565b6001600160a01b038316620006485760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620001c2565b6001600160a01b038216620006ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620001c2565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031690565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200074657607f821691505b6020821081036200076757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007bb57600081815260208120601f850160051c81016020861015620007965750805b601f850160051c820191505b81811015620007b757828155600101620007a2565b5050505b505050565b81516001600160401b03811115620007dc57620007dc6200071b565b620007f481620007ed845462000731565b846200076d565b602080601f8311600181146200082c5760008415620008135750858301515b600019600386901b1c1916600185901b178555620007b7565b600085815260208120601f198616915b828110156200085d578886015182559484019460019091019084016200083c565b50858210156200087c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b600082620008b457620008b46200088c565b500690565b634e487b7160e01b600052601160045260246000fd5b81810381811115620008e557620008e5620008b9565b92915050565b80820180821115620008e557620008e5620008b9565b6000826200091357620009136200088c565b500490565b615a0280620009286000396000f3fe6080604052600436106103fd5760003560e01c8063715018a61161020d578063b6f7f68111610128578063dd62ed3e116100bb578063e3b467911161008a578063edb469981161006f578063edb4699814610c91578063f2fde38b14610ca7578063f9d0831a14610cc757600080fd5b8063e3b4679114610c51578063e982f35114610c7157600080fd5b8063dd62ed3e14610b9b578063e01af92c14610bee578063e1f1487414610c0e578063e2f4560514610c3b57600080fd5b8063cbef3ce9116100f7578063cbef3ce914610b3e578063ce3fdca914610b52578063d06d04cc14610b68578063d2fcc00114610b7b57600080fd5b8063b6f7f68114610ac8578063bb85c6d114610ae8578063c024666814610b08578063c531096c14610b2857600080fd5b8063989a124f116101a0578063a938d1c91161016f578063a938d1c914610a67578063aa4bde2814610a7d578063afa4f3b214610a93578063b577554a14610ab357600080fd5b8063989a124f146109cb578063a457c2d7146109e1578063a8a69b9d14610a01578063a9059cbb14610a4757600080fd5b80638a8c523c116101dc5780638a8c523c146109605780638abdf5aa146109755780638da5cb5b1461098b57806395d89b41146109b657600080fd5b8063715018a6146108b857806375f0a874146108cd5780638187f516146108fa57806388f820201461091a57600080fd5b80633685d4191161031857806352390c02116102ab57806359136fa51161027a57806365a8ee4f1161025f57806365a8ee4f1461084f5780636ddd17131461086557806370a082311461089857600080fd5b806359136fa5146108235780635a04e0351461083957600080fd5b806352390c021461077d5780635342acb41461079d5780635654d0b3146107e357806356a6cabf1461080357600080fd5b80634549b039116102e75780634549b039146106e657806349bd5a5e146107065780634ada218b146107335780634b93d0591461076757600080fd5b80633685d4191461065957806339509351146106795780633bd5d17314610699578063452ed4f1146106b957600080fd5b806318d9ceae116103905780632a6c7dba1161035f5780632a6c7dba146105dd5780632ba86bf2146105fd5780632d83811914610617578063313ce5671461063757600080fd5b806318d9ceae1461053d57806321a9d82a1461058357806323b872dd1461059d57806327a14fc2146105bd57600080fd5b8063150c880c116103cc578063150c880c1461049a5780631529fbbf146104bc5780631694505e146104d657806318160ddd1461052857600080fd5b80630105d0fd1461040957806306fdde0314610432578063095ea7b314610454578063142725fc1461048457600080fd5b3661040457005b600080fd5b34801561041557600080fd5b5061041f601f5481565b6040519081526020015b60405180910390f35b34801561043e57600080fd5b50610447610ce7565b60405161042991906154f4565b34801561046057600080fd5b5061047461046f366004615582565b610d79565b6040519015158152602001610429565b34801561049057600080fd5b5061041f60115481565b3480156104a657600080fd5b506104ba6104b53660046155bc565b610d90565b005b3480156104c857600080fd5b506022546104749060ff1681565b3480156104e257600080fd5b506023546105039073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610429565b34801561053457600080fd5b50600b5461041f565b34801561054957600080fd5b506104746105583660046155f5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526027602052604090205460ff1690565b34801561058f57600080fd5b50602a546104749060ff1681565b3480156105a957600080fd5b506104746105b8366004615612565b610f5d565b3480156105c957600080fd5b506104ba6105d8366004615653565b610fbc565b3480156105e957600080fd5b506104ba6105f836600461566c565b61111e565b34801561060957600080fd5b506028546104749060ff1681565b34801561062357600080fd5b5061041f610632366004615653565b61129c565b34801561064357600080fd5b5060095460405160ff9091168152602001610429565b34801561066557600080fd5b506104ba6106743660046155f5565b61134d565b34801561068557600080fd5b50610474610694366004615582565b611621565b3480156106a557600080fd5b506104ba6106b4366004615653565b611665565b3480156106c557600080fd5b506026546105039073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106f257600080fd5b5061041f610701366004615689565b611798565b34801561071257600080fd5b506024546105039073ffffffffffffffffffffffffffffffffffffffff1681565b34801561073f57600080fd5b5060245461047490760100000000000000000000000000000000000000000000900460ff1681565b34801561077357600080fd5b5061041f60105481565b34801561078957600080fd5b506104ba6107983660046155f5565b611841565b3480156107a957600080fd5b506104746107b83660046155f5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b3480156107ef57600080fd5b506104ba6107fe36600461566c565b611a7c565b34801561080f57600080fd5b506104ba61081e36600461566c565b611c1c565b34801561082f57600080fd5b5061041f60205481565b34801561084557600080fd5b5061041f60125481565b34801561085b57600080fd5b5061041f60135481565b34801561087157600080fd5b50602454610474907501000000000000000000000000000000000000000000900460ff1681565b3480156108a457600080fd5b5061041f6108b33660046155f5565b611d9a565b3480156108c457600080fd5b506104ba611e20565b3480156108d957600080fd5b50601b546105039073ffffffffffffffffffffffffffffffffffffffff1681565b34801561090657600080fd5b506104ba6109153660046155f5565b611f10565b34801561092657600080fd5b506104746109353660046155f5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460ff1690565b34801561096c57600080fd5b506104ba61201b565b34801561098157600080fd5b5061041f601d5481565b34801561099757600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610503565b3480156109c257600080fd5b50610447612166565b3480156109d757600080fd5b5061041f60155481565b3480156109ed57600080fd5b506104746109fc366004615582565b612175565b348015610a0d57600080fd5b50610474610a1c3660046155f5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526029602052604090205460ff1690565b348015610a5357600080fd5b50610474610a62366004615582565b6121b9565b348015610a7357600080fd5b5061041f60145481565b348015610a8957600080fd5b5061041f60215481565b348015610a9f57600080fd5b506104ba610aae366004615653565b6121c6565b348015610abf57600080fd5b50600d5461041f565b348015610ad457600080fd5b506104ba610ae33660046156ae565b612321565b348015610af457600080fd5b506104ba610b033660046155f5565b6124ae565b348015610b1457600080fd5b506104ba610b233660046155bc565b6126ef565b348015610b3457600080fd5b5061041f600e5481565b348015610b4a57600080fd5b50600261041f565b348015610b5e57600080fd5b5061041f601e5481565b610474610b76366004615653565b6128b0565b348015610b8757600080fd5b506104ba610b963660046155bc565b612a64565b348015610ba757600080fd5b5061041f610bb63660046156d0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b348015610bfa57600080fd5b506104ba610c0936600461566c565b612ca3565b348015610c1a57600080fd5b50601c546105039073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c4757600080fd5b5061041f60255481565b348015610c5d57600080fd5b506104ba610c6c3660046156fe565b612d9e565b348015610c7d57600080fd5b506104ba610c8c3660046156fe565b612f39565b348015610c9d57600080fd5b5061041f600f5481565b348015610cb357600080fd5b506104ba610cc23660046155f5565b6130c9565b348015610cd357600080fd5b506104ba610ce23660046155f5565b61327a565b606060078054610cf690615730565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2290615730565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905090565b6000610d863384846134d3565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205481151560ff909116151503610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660008181526027602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c1091015b60405180910390a25050565b6000610f6a848484613686565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033808552925290912054610fb2918691610fad9086906157b2565b6134d3565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6103e8611049600b5490565b61105391906157c5565b8110156110e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4d61782077616c6c65742070657263656e746167652063616e6e6f742062652060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610e0d565b60218190556040518181527f21bc0ea3406acb92d4449ab33befb4ae82f873a22f3b6cf0e466b2710beb5942906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff16331461119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b602a5460ff16151581151503611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201527f746f2074686174207374617465000000000000000000000000000000000000006064820152608401610e0d565b602a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f190602001611113565b6000600c54821115611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610e0d565b600061133a613d7d565b905061134681846157c5565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1661145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610e0d565b60005b60065481101561161d578173ffffffffffffffffffffffffffffffffffffffff166006828154811061149457611494615800565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361160b57600680546114cb906001906157b2565b815481106114db576114db615800565b6000918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff909216918390811061151457611514615800565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560068054806115af576115af61582f565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b806116158161585e565b915050611460565b5050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d86918590610fad908690615896565b3360008181526005602052604090205460ff1615611705576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610e0d565b600061171083613da0565b5050505073ffffffffffffffffffffffffffffffffffffffff851660009081526001602052604090205492935061174b9284925090506157b2565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600c5461177f9082906157b2565b600c55600d54611790908490615896565b600d55505050565b6000600a54831115611806576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610e0d565b8161182657600061181684613da0565b50949650610d8a95505050505050565b600061183184613da0565b50939650610d8a95505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1615611952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260016020526040902054156119d35773ffffffffffffffffffffffffffffffffffffffff81166000908152600160205260409020546119ac9061129c565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611afd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b60225481151560ff909116151503611bbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560448201527f742066656520697320616c72656164792073657420746f20746861742076616c60648201527f7565000000000000000000000000000000000000000000000000000000000000608482015260a401610e0d565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f77c1f4015c54df9478a364bf8fc1b76b03f0eda36c594de58b4023771cebb9e790602001611113565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b60285460ff16151581151503611d35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960448201527f2073657420746f207468617420737461746500000000000000000000000000006064820152608401610e0d565b602880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf90602001611113565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205460ff1615611df1575073ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610d8a9061129c565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ea1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6024805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b602454760100000000000000000000000000000000000000000000900460ff1615612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610e0d565b602480547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055565b606060088054610cf690615730565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d86918590610fad9086906157b2565b6000610d86338484613686565b60005473ffffffffffffffffffffffffffffffffffffffff163314612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b620186a0612254600b5490565b61225e91906157c5565b81116122ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e30303125206f6620746f74616c20737570706c7900006064820152608401610e0d565b60258190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b14590602001611113565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6103e86123ae600b5490565b6123b891906157c5565b82101580156123dc57506103e86123ce600b5490565b6123d891906157c5565b8110155b612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d6178205472616e73616374696f6e206c696d69732063616e6e6f742062652060448201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c79006064820152608401610e0d565b601f8290556020818155604080518481529182018390527f8c8cbc911b80df94332ececb8eb0945274d76fa965600a0f01f42af3f8afb131910160405180910390a15050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461252f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b601b5473ffffffffffffffffffffffffffffffffffffffff908116908216036125da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff811661267c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e672077616c6c657420697320746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b601b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b90602001611113565b60005473ffffffffffffffffffffffffffffffffffffffff163314612770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205481151560ff90911615150361282d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610f51565b602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905560006128e2613dfb565b6128ed333084613686565b60235461293290309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6134d3565b60235473ffffffffffffffffffffffffffffffffffffffff1663f305d71934308560008033612962426032615896565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af11580156129f4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a1991906158a9565b5050602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905550600192915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ae5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660009081526029602052604090205481151560ff909116151503612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b3073ffffffffffffffffffffffffffffffffffffffff831603612c20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660008181526029602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c9101610f51565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b602480548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f436b6cf978c7b6998fcce43dfe4d37e3a0dc2bb780144a2eb55d7138201e8a129061111390831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612e1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b600e8490556010839055601282905560148190558082612e3f8587615896565b612e499190615896565b612e539190615896565b601981905561012c1015612ee9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42757920666565732063616e6e6f742062652067726561746572207468616e2060448201527f33302500000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b600e54601054601254604080519384526020840192909252908201527ff12a090a464a491e1614a62b7d86a6f8d3fae25361d5af0911f39bd4fd7ea64d906060015b60405180910390a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612fba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b600f8490556011839055601382905560158190558082612fda8587615896565b612fe49190615896565b612fee9190615896565b601a81905561012c1015613083576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c20666565732063616e6e6f742062652067726561746572207468616e60448201527f20333025000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b600f54601154601354604080519384526020840192909252908201527f969e8ecd326f5fe41e2a3cd9798553fbecef5705da23954426a09c9360c7aa5790606001612f2b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461314a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff81166131ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e0d565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146132fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b3073ffffffffffffffffffffffffffffffffffffffff82160361337a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff811661339f5761161d334761426f565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa15801561340e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343291906158d7565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156134a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134cc91906158f0565b5050505b50565b73ffffffffffffffffffffffffffffffffffffffff8316613575576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff8216613618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316613729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e0d565b600081116137b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613815575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b156138a057602454760100000000000000000000000000000000000000000000900460ff166138a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610e0d565b60285460ff1615613aa35760245473ffffffffffffffffffffffffffffffffffffffff848116911614806138ee575060245473ffffffffffffffffffffffffffffffffffffffff8381169116145b8015613920575073ffffffffffffffffffffffffffffffffffffffff831660009081526027602052604090205460ff16155b8015613952575073ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff16155b15613aa35760245473ffffffffffffffffffffffffffffffffffffffff90811690841603613a1157601f54811115613a0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610e0d565b613aa3565b602054811115613aa3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610e0d565b6000613aae30611d9a565b60255490915081108015908190613ae0575060245474010000000000000000000000000000000000000000900460ff16155b8015613b06575060245473ffffffffffffffffffffffffffffffffffffffff8581169116145b8015613b2d57506024547501000000000000000000000000000000000000000000900460ff165b15613c2d57602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055601354601254600091613b8391615896565b90506000601154601054613b979190615896565b90506000613ba58284615896565b90508015613c01578115613bd757600081613bc0848861590d565b613bca91906157c5565b9050613bd581614345565b505b8215613c0157600081613bea858861590d565b613bf491906157c5565b9050613bff8161460a565b505b5050602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b613c38858585614802565b602a5460ff1615613d765773ffffffffffffffffffffffffffffffffffffffff851660009081526029602052604090205460ff16158015613c9f575073ffffffffffffffffffffffffffffffffffffffff841660009081526029602052604090205460ff16155b8015613cc6575060245473ffffffffffffffffffffffffffffffffffffffff858116911614155b15613d76576000613cd685611d9a565b602154909150613ce68583615896565b1115613d74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201527f206d617857616c6c6574416d6f756e74000000000000000000000000000000006064820152608401610e0d565b505b5050505050565b6000806000613d8a614a9a565b9092509050613d9981836157c5565b9250505090565b6000806000806000806000806000806000613dba8c614c51565b93509350935093506000806000613ddb8f878787613dd6613d7d565b614cb0565b919f509d509b509599509397509195509350505050919395979092949650565b602354604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa158015613e6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e8f9190615924565b905060008173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f419190615924565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa158015613fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fd59190615924565b905073ffffffffffffffffffffffffffffffffffffffff81166141c3578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561407c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140a09190615924565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015614112573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141369190615924565b6024805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b60245473ffffffffffffffffffffffffffffffffffffffff82811691161461161d576024805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000091821681179092556026805490911682179055600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b6000814710156142db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e0d565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d8060008114614335576040519150601f19603f3d011682016040523d82523d6000602084013e61433a565b606091505b509095945050505050565b60006143526002836157c5565b9050600061436082846157b2565b6040805160028082526060820183529293504792600092602083019080368337019050509050308160008151811061439a5761439a615800565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614419573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061443d9190615924565b8160018151811061445057614450615800565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906144bc908790600090869030904290600401615941565b600060405180830381600087803b1580156144d657600080fd5b505af11580156144ea573d6000803e3d6000fd5b50505050600082476144fc91906157b2565b6023546022546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101889052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff610100909204821660848201524260a4820152929350169063f305d71990839060c40160606040518083038185885af1158015614599573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145be91906158a9565b505060408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561915060600160405180910390a1505050505050565b60408051600280825260608201835247926000929190602083019080368337019050509050308160008151811061464357614643615800565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156146c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146e69190615924565b816001815181106146f9576146f9615800565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790614765908690600090869030904290600401615941565b600060405180830381600087803b15801561477f57600080fd5b505af1158015614793573d6000803e3d6000fd5b50505050600082476147a591906157b2565b601b549091506147cb9073ffffffffffffffffffffffffffffffffffffffff168261426f565b5060408051858152602081018390527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e629999101612f2b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff168061485b575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b1561486d57614868614d22565b6148de565b60245473ffffffffffffffffffffffffffffffffffffffff9081169083160361489857614868614d56565b60245473ffffffffffffffffffffffffffffffffffffffff908116908416036148c357614868614db0565b60225460ff16156148d657614868614d22565b6148de614d56565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614939575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b1561494e57614949838383614e05565b505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff161580156149a9575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b156149b957614949838383614fa1565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614a15575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614a255761494983838361508f565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614a7f575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b15614a8f576149498383836150fc565b61494983838361508f565b600c54600a546000918291825b600654811015614c2057826001600060068481548110614ac957614ac9615800565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180614b4e5750816002600060068481548110614b1a57614b1a615800565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15614b6457600c54600a54945094505050509091565b6001600060068381548110614b7b57614b7b615800565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054614bb790846157b2565b92506002600060068381548110614bd057614bd0615800565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054614c0c90836157b2565b915080614c188161585e565b915050614aa7565b50600a54600c54614c3191906157c5565b821015614c4857600c54600a549350935050509091565b90939092509050565b6000806000806000614c62866151a6565b90506000614c6f876151c3565b90506000614c7c886151d6565b905060008183614c8c868c6157b2565b614c9691906157b2565b614ca091906157b2565b9993985091965094509092505050565b6000808080614cbf858a61590d565b90506000614ccd868a61590d565b90506000614cdb878a61590d565b90506000614ce9888a61590d565b905060008183614cf986886157b2565b614d0391906157b2565b614d0d91906157b2565b949d949c50929a509298505050505050505050565b601654158015614d325750601754155b8015614d3e5750601854155b15614d4557565b600060168190556018819055601755565b600f54601654148015614d795750601554601154614d749190615896565b601754145b8015614d885750601354601854145b15614d8f57565b600f54601655601354601855601554601154614dab9190615896565b601755565b600e54601654148015614dd35750601454601054614dce9190615896565b601754145b8015614de25750601254601854145b15614de957565b600e54601655601254601855601454601054614dab9190615896565b6000806000806000806000614e1988613da0565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614e7291906157b2565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614eaf9088906157b2565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526001602052604080822093909355908b1681522054614eec908790615896565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040902055614f1b816151e9565b614f2482615279565b614f2e85846154ce565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051614f8d91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000614fb588613da0565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461500e91906157b2565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260016020908152604080832094909455918c16815260029091522054615052908590615896565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260026020908152604080832093909355600190522054614eec908790615896565b60008060008060008060006150a388613da0565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614eaf91906157b2565b600080600080600080600061511088613da0565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461516991906157b2565b73ffffffffffffffffffffffffffffffffffffffff8b1660009081526002602090815260408083209390935560019052205461500e9088906157b2565b60006103e8601654836151b9919061590d565b610d8a91906157c5565b60006103e8601754836151b9919061590d565b60006103e8601854836151b9919061590d565b80156134d05760006151f9613d7d565b90506000615207828461590d565b30600090815260016020526040902054909150615225908290615896565b3060009081526001602090815260408083209390935560059052205460ff16156149495730600090815260026020526040902054615264908490615896565b30600090815260026020526040902055505050565b600080601054118061528d57506000601154115b8061529a57506000601454115b806152a757506000601554115b156152fd576015546014546011546010546152c29190615896565b6152cc9190615896565b6152d69190615896565b6011546010546152e69190615896565b6152f0908461590d565b6152fa91906157c5565b90505b600061530982846157b2565b9050811561539a57600061531b613d7d565b90506000615329828561590d565b30600090815260016020526040902054909150615347908290615896565b3060009081526001602090815260408083209390935560059052205460ff16156153975730600090815260026020526040902054615386908590615896565b306000908152600260205260409020555b50505b80156149495760006153aa613d7d565b905060006153b8828461590d565b61dead60005260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d549091506153f3908290615896565b61dead6000527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5560056020527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460ff16156154b05761dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc54615482908490615896565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc555b82600b60008282546154c291906157b2565b90915550505050505050565b81600c546154dc91906157b2565b600c55600d546154ed908290615896565b600d555050565b600060208083528351808285015260005b8181101561552157858101830151858201604001528201615505565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146134d057600080fd5b6000806040838503121561559557600080fd5b82356155a081615560565b946020939093013593505050565b80151581146134d057600080fd5b600080604083850312156155cf57600080fd5b82356155da81615560565b915060208301356155ea816155ae565b809150509250929050565b60006020828403121561560757600080fd5b813561134681615560565b60008060006060848603121561562757600080fd5b833561563281615560565b9250602084013561564281615560565b929592945050506040919091013590565b60006020828403121561566557600080fd5b5035919050565b60006020828403121561567e57600080fd5b8135611346816155ae565b6000806040838503121561569c57600080fd5b8235915060208301356155ea816155ae565b600080604083850312156156c157600080fd5b50508035926020909101359150565b600080604083850312156156e357600080fd5b82356156ee81615560565b915060208301356155ea81615560565b6000806000806080858703121561571457600080fd5b5050823594602084013594506040840135936060013592509050565b600181811c9082168061574457607f821691505b60208210810361577d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610d8a57610d8a615783565b6000826157fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361588f5761588f615783565b5060010190565b80820180821115610d8a57610d8a615783565b6000806000606084860312156158be57600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156158e957600080fd5b5051919050565b60006020828403121561590257600080fd5b8151611346816155ae565b8082028115828204841417610d8a57610d8a615783565b60006020828403121561593657600080fd5b815161134681615560565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561599e57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161596c565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea2646970667358221220b0b2d769d6d7e89bdede5a55b50c19d71a6f1dfeaa9ff3df1d87b40813f34ea364736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103fd5760003560e01c8063715018a61161020d578063b6f7f68111610128578063dd62ed3e116100bb578063e3b467911161008a578063edb469981161006f578063edb4699814610c91578063f2fde38b14610ca7578063f9d0831a14610cc757600080fd5b8063e3b4679114610c51578063e982f35114610c7157600080fd5b8063dd62ed3e14610b9b578063e01af92c14610bee578063e1f1487414610c0e578063e2f4560514610c3b57600080fd5b8063cbef3ce9116100f7578063cbef3ce914610b3e578063ce3fdca914610b52578063d06d04cc14610b68578063d2fcc00114610b7b57600080fd5b8063b6f7f68114610ac8578063bb85c6d114610ae8578063c024666814610b08578063c531096c14610b2857600080fd5b8063989a124f116101a0578063a938d1c91161016f578063a938d1c914610a67578063aa4bde2814610a7d578063afa4f3b214610a93578063b577554a14610ab357600080fd5b8063989a124f146109cb578063a457c2d7146109e1578063a8a69b9d14610a01578063a9059cbb14610a4757600080fd5b80638a8c523c116101dc5780638a8c523c146109605780638abdf5aa146109755780638da5cb5b1461098b57806395d89b41146109b657600080fd5b8063715018a6146108b857806375f0a874146108cd5780638187f516146108fa57806388f820201461091a57600080fd5b80633685d4191161031857806352390c02116102ab57806359136fa51161027a57806365a8ee4f1161025f57806365a8ee4f1461084f5780636ddd17131461086557806370a082311461089857600080fd5b806359136fa5146108235780635a04e0351461083957600080fd5b806352390c021461077d5780635342acb41461079d5780635654d0b3146107e357806356a6cabf1461080357600080fd5b80634549b039116102e75780634549b039146106e657806349bd5a5e146107065780634ada218b146107335780634b93d0591461076757600080fd5b80633685d4191461065957806339509351146106795780633bd5d17314610699578063452ed4f1146106b957600080fd5b806318d9ceae116103905780632a6c7dba1161035f5780632a6c7dba146105dd5780632ba86bf2146105fd5780632d83811914610617578063313ce5671461063757600080fd5b806318d9ceae1461053d57806321a9d82a1461058357806323b872dd1461059d57806327a14fc2146105bd57600080fd5b8063150c880c116103cc578063150c880c1461049a5780631529fbbf146104bc5780631694505e146104d657806318160ddd1461052857600080fd5b80630105d0fd1461040957806306fdde0314610432578063095ea7b314610454578063142725fc1461048457600080fd5b3661040457005b600080fd5b34801561041557600080fd5b5061041f601f5481565b6040519081526020015b60405180910390f35b34801561043e57600080fd5b50610447610ce7565b60405161042991906154f4565b34801561046057600080fd5b5061047461046f366004615582565b610d79565b6040519015158152602001610429565b34801561049057600080fd5b5061041f60115481565b3480156104a657600080fd5b506104ba6104b53660046155bc565b610d90565b005b3480156104c857600080fd5b506022546104749060ff1681565b3480156104e257600080fd5b506023546105039073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610429565b34801561053457600080fd5b50600b5461041f565b34801561054957600080fd5b506104746105583660046155f5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526027602052604090205460ff1690565b34801561058f57600080fd5b50602a546104749060ff1681565b3480156105a957600080fd5b506104746105b8366004615612565b610f5d565b3480156105c957600080fd5b506104ba6105d8366004615653565b610fbc565b3480156105e957600080fd5b506104ba6105f836600461566c565b61111e565b34801561060957600080fd5b506028546104749060ff1681565b34801561062357600080fd5b5061041f610632366004615653565b61129c565b34801561064357600080fd5b5060095460405160ff9091168152602001610429565b34801561066557600080fd5b506104ba6106743660046155f5565b61134d565b34801561068557600080fd5b50610474610694366004615582565b611621565b3480156106a557600080fd5b506104ba6106b4366004615653565b611665565b3480156106c557600080fd5b506026546105039073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106f257600080fd5b5061041f610701366004615689565b611798565b34801561071257600080fd5b506024546105039073ffffffffffffffffffffffffffffffffffffffff1681565b34801561073f57600080fd5b5060245461047490760100000000000000000000000000000000000000000000900460ff1681565b34801561077357600080fd5b5061041f60105481565b34801561078957600080fd5b506104ba6107983660046155f5565b611841565b3480156107a957600080fd5b506104746107b83660046155f5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b3480156107ef57600080fd5b506104ba6107fe36600461566c565b611a7c565b34801561080f57600080fd5b506104ba61081e36600461566c565b611c1c565b34801561082f57600080fd5b5061041f60205481565b34801561084557600080fd5b5061041f60125481565b34801561085b57600080fd5b5061041f60135481565b34801561087157600080fd5b50602454610474907501000000000000000000000000000000000000000000900460ff1681565b3480156108a457600080fd5b5061041f6108b33660046155f5565b611d9a565b3480156108c457600080fd5b506104ba611e20565b3480156108d957600080fd5b50601b546105039073ffffffffffffffffffffffffffffffffffffffff1681565b34801561090657600080fd5b506104ba6109153660046155f5565b611f10565b34801561092657600080fd5b506104746109353660046155f5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460ff1690565b34801561096c57600080fd5b506104ba61201b565b34801561098157600080fd5b5061041f601d5481565b34801561099757600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610503565b3480156109c257600080fd5b50610447612166565b3480156109d757600080fd5b5061041f60155481565b3480156109ed57600080fd5b506104746109fc366004615582565b612175565b348015610a0d57600080fd5b50610474610a1c3660046155f5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526029602052604090205460ff1690565b348015610a5357600080fd5b50610474610a62366004615582565b6121b9565b348015610a7357600080fd5b5061041f60145481565b348015610a8957600080fd5b5061041f60215481565b348015610a9f57600080fd5b506104ba610aae366004615653565b6121c6565b348015610abf57600080fd5b50600d5461041f565b348015610ad457600080fd5b506104ba610ae33660046156ae565b612321565b348015610af457600080fd5b506104ba610b033660046155f5565b6124ae565b348015610b1457600080fd5b506104ba610b233660046155bc565b6126ef565b348015610b3457600080fd5b5061041f600e5481565b348015610b4a57600080fd5b50600261041f565b348015610b5e57600080fd5b5061041f601e5481565b610474610b76366004615653565b6128b0565b348015610b8757600080fd5b506104ba610b963660046155bc565b612a64565b348015610ba757600080fd5b5061041f610bb63660046156d0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b348015610bfa57600080fd5b506104ba610c0936600461566c565b612ca3565b348015610c1a57600080fd5b50601c546105039073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c4757600080fd5b5061041f60255481565b348015610c5d57600080fd5b506104ba610c6c3660046156fe565b612d9e565b348015610c7d57600080fd5b506104ba610c8c3660046156fe565b612f39565b348015610c9d57600080fd5b5061041f600f5481565b348015610cb357600080fd5b506104ba610cc23660046155f5565b6130c9565b348015610cd357600080fd5b506104ba610ce23660046155f5565b61327a565b606060078054610cf690615730565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2290615730565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905090565b6000610d863384846134d3565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205481151560ff909116151503610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660008181526027602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c1091015b60405180910390a25050565b6000610f6a848484613686565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033808552925290912054610fb2918691610fad9086906157b2565b6134d3565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6103e8611049600b5490565b61105391906157c5565b8110156110e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4d61782077616c6c65742070657263656e746167652063616e6e6f742062652060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610e0d565b60218190556040518181527f21bc0ea3406acb92d4449ab33befb4ae82f873a22f3b6cf0e466b2710beb5942906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff16331461119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b602a5460ff16151581151503611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201527f746f2074686174207374617465000000000000000000000000000000000000006064820152608401610e0d565b602a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f190602001611113565b6000600c54821115611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610e0d565b600061133a613d7d565b905061134681846157c5565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1661145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610e0d565b60005b60065481101561161d578173ffffffffffffffffffffffffffffffffffffffff166006828154811061149457611494615800565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361160b57600680546114cb906001906157b2565b815481106114db576114db615800565b6000918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff909216918390811061151457611514615800565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560068054806115af576115af61582f565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b806116158161585e565b915050611460565b5050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d86918590610fad908690615896565b3360008181526005602052604090205460ff1615611705576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610e0d565b600061171083613da0565b5050505073ffffffffffffffffffffffffffffffffffffffff851660009081526001602052604090205492935061174b9284925090506157b2565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600c5461177f9082906157b2565b600c55600d54611790908490615896565b600d55505050565b6000600a54831115611806576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610e0d565b8161182657600061181684613da0565b50949650610d8a95505050505050565b600061183184613da0565b50939650610d8a95505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1615611952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260016020526040902054156119d35773ffffffffffffffffffffffffffffffffffffffff81166000908152600160205260409020546119ac9061129c565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611afd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b60225481151560ff909116151503611bbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560448201527f742066656520697320616c72656164792073657420746f20746861742076616c60648201527f7565000000000000000000000000000000000000000000000000000000000000608482015260a401610e0d565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f77c1f4015c54df9478a364bf8fc1b76b03f0eda36c594de58b4023771cebb9e790602001611113565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b60285460ff16151581151503611d35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960448201527f2073657420746f207468617420737461746500000000000000000000000000006064820152608401610e0d565b602880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf90602001611113565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205460ff1615611df1575073ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610d8a9061129c565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ea1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6024805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b602454760100000000000000000000000000000000000000000000900460ff1615612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610e0d565b602480547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055565b606060088054610cf690615730565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d86918590610fad9086906157b2565b6000610d86338484613686565b60005473ffffffffffffffffffffffffffffffffffffffff163314612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b620186a0612254600b5490565b61225e91906157c5565b81116122ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e30303125206f6620746f74616c20737570706c7900006064820152608401610e0d565b60258190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b14590602001611113565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b6103e86123ae600b5490565b6123b891906157c5565b82101580156123dc57506103e86123ce600b5490565b6123d891906157c5565b8110155b612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d6178205472616e73616374696f6e206c696d69732063616e6e6f742062652060448201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c79006064820152608401610e0d565b601f8290556020818155604080518481529182018390527f8c8cbc911b80df94332ececb8eb0945274d76fa965600a0f01f42af3f8afb131910160405180910390a15050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461252f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b601b5473ffffffffffffffffffffffffffffffffffffffff908116908216036125da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff811661267c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e672077616c6c657420697320746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b601b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b90602001611113565b60005473ffffffffffffffffffffffffffffffffffffffff163314612770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205481151560ff90911615150361282d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610f51565b602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905560006128e2613dfb565b6128ed333084613686565b60235461293290309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6134d3565b60235473ffffffffffffffffffffffffffffffffffffffff1663f305d71934308560008033612962426032615896565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af11580156129f4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a1991906158a9565b5050602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905550600192915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ae5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660009081526029602052604090205481151560ff909116151503612ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b3073ffffffffffffffffffffffffffffffffffffffff831603612c20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff821660008181526029602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c9101610f51565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b602480548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f436b6cf978c7b6998fcce43dfe4d37e3a0dc2bb780144a2eb55d7138201e8a129061111390831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612e1f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b600e8490556010839055601282905560148190558082612e3f8587615896565b612e499190615896565b612e539190615896565b601981905561012c1015612ee9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42757920666565732063616e6e6f742062652067726561746572207468616e2060448201527f33302500000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b600e54601054601254604080519384526020840192909252908201527ff12a090a464a491e1614a62b7d86a6f8d3fae25361d5af0911f39bd4fd7ea64d906060015b60405180910390a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612fba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b600f8490556011839055601382905560158190558082612fda8587615896565b612fe49190615896565b612fee9190615896565b601a81905561012c1015613083576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c20666565732063616e6e6f742062652067726561746572207468616e60448201527f20333025000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b600f54601154601354604080519384526020840192909252908201527f969e8ecd326f5fe41e2a3cd9798553fbecef5705da23954426a09c9360c7aa5790606001612f2b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461314a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff81166131ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e0d565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146132fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0d565b3073ffffffffffffffffffffffffffffffffffffffff82160361337a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610e0d565b73ffffffffffffffffffffffffffffffffffffffff811661339f5761161d334761426f565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa15801561340e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343291906158d7565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156134a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134cc91906158f0565b5050505b50565b73ffffffffffffffffffffffffffffffffffffffff8316613575576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff8216613618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316613729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610e0d565b600081116137b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610e0d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613815575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b156138a057602454760100000000000000000000000000000000000000000000900460ff166138a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610e0d565b60285460ff1615613aa35760245473ffffffffffffffffffffffffffffffffffffffff848116911614806138ee575060245473ffffffffffffffffffffffffffffffffffffffff8381169116145b8015613920575073ffffffffffffffffffffffffffffffffffffffff831660009081526027602052604090205460ff16155b8015613952575073ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff16155b15613aa35760245473ffffffffffffffffffffffffffffffffffffffff90811690841603613a1157601f54811115613a0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610e0d565b613aa3565b602054811115613aa3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610e0d565b6000613aae30611d9a565b60255490915081108015908190613ae0575060245474010000000000000000000000000000000000000000900460ff16155b8015613b06575060245473ffffffffffffffffffffffffffffffffffffffff8581169116145b8015613b2d57506024547501000000000000000000000000000000000000000000900460ff165b15613c2d57602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055601354601254600091613b8391615896565b90506000601154601054613b979190615896565b90506000613ba58284615896565b90508015613c01578115613bd757600081613bc0848861590d565b613bca91906157c5565b9050613bd581614345565b505b8215613c0157600081613bea858861590d565b613bf491906157c5565b9050613bff8161460a565b505b5050602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b613c38858585614802565b602a5460ff1615613d765773ffffffffffffffffffffffffffffffffffffffff851660009081526029602052604090205460ff16158015613c9f575073ffffffffffffffffffffffffffffffffffffffff841660009081526029602052604090205460ff16155b8015613cc6575060245473ffffffffffffffffffffffffffffffffffffffff858116911614155b15613d76576000613cd685611d9a565b602154909150613ce68583615896565b1115613d74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201527f206d617857616c6c6574416d6f756e74000000000000000000000000000000006064820152608401610e0d565b505b5050505050565b6000806000613d8a614a9a565b9092509050613d9981836157c5565b9250505090565b6000806000806000806000806000806000613dba8c614c51565b93509350935093506000806000613ddb8f878787613dd6613d7d565b614cb0565b919f509d509b509599509397509195509350505050919395979092949650565b602354604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa158015613e6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e8f9190615924565b905060008173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f419190615924565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa158015613fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fd59190615924565b905073ffffffffffffffffffffffffffffffffffffffff81166141c3578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561407c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140a09190615924565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015614112573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141369190615924565b6024805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b60245473ffffffffffffffffffffffffffffffffffffffff82811691161461161d576024805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000091821681179092556026805490911682179055600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b6000814710156142db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e0d565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d8060008114614335576040519150601f19603f3d011682016040523d82523d6000602084013e61433a565b606091505b509095945050505050565b60006143526002836157c5565b9050600061436082846157b2565b6040805160028082526060820183529293504792600092602083019080368337019050509050308160008151811061439a5761439a615800565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614419573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061443d9190615924565b8160018151811061445057614450615800565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906144bc908790600090869030904290600401615941565b600060405180830381600087803b1580156144d657600080fd5b505af11580156144ea573d6000803e3d6000fd5b50505050600082476144fc91906157b2565b6023546022546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101889052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff610100909204821660848201524260a4820152929350169063f305d71990839060c40160606040518083038185885af1158015614599573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145be91906158a9565b505060408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561915060600160405180910390a1505050505050565b60408051600280825260608201835247926000929190602083019080368337019050509050308160008151811061464357614643615800565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156146c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146e69190615924565b816001815181106146f9576146f9615800565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790614765908690600090869030904290600401615941565b600060405180830381600087803b15801561477f57600080fd5b505af1158015614793573d6000803e3d6000fd5b50505050600082476147a591906157b2565b601b549091506147cb9073ffffffffffffffffffffffffffffffffffffffff168261426f565b5060408051858152602081018390527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e629999101612f2b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff168061485b575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b1561486d57614868614d22565b6148de565b60245473ffffffffffffffffffffffffffffffffffffffff9081169083160361489857614868614d56565b60245473ffffffffffffffffffffffffffffffffffffffff908116908416036148c357614868614db0565b60225460ff16156148d657614868614d22565b6148de614d56565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614939575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b1561494e57614949838383614e05565b505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff161580156149a9575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b156149b957614949838383614fa1565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614a15575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614a255761494983838361508f565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614a7f575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b15614a8f576149498383836150fc565b61494983838361508f565b600c54600a546000918291825b600654811015614c2057826001600060068481548110614ac957614ac9615800565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180614b4e5750816002600060068481548110614b1a57614b1a615800565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15614b6457600c54600a54945094505050509091565b6001600060068381548110614b7b57614b7b615800565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054614bb790846157b2565b92506002600060068381548110614bd057614bd0615800565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054614c0c90836157b2565b915080614c188161585e565b915050614aa7565b50600a54600c54614c3191906157c5565b821015614c4857600c54600a549350935050509091565b90939092509050565b6000806000806000614c62866151a6565b90506000614c6f876151c3565b90506000614c7c886151d6565b905060008183614c8c868c6157b2565b614c9691906157b2565b614ca091906157b2565b9993985091965094509092505050565b6000808080614cbf858a61590d565b90506000614ccd868a61590d565b90506000614cdb878a61590d565b90506000614ce9888a61590d565b905060008183614cf986886157b2565b614d0391906157b2565b614d0d91906157b2565b949d949c50929a509298505050505050505050565b601654158015614d325750601754155b8015614d3e5750601854155b15614d4557565b600060168190556018819055601755565b600f54601654148015614d795750601554601154614d749190615896565b601754145b8015614d885750601354601854145b15614d8f57565b600f54601655601354601855601554601154614dab9190615896565b601755565b600e54601654148015614dd35750601454601054614dce9190615896565b601754145b8015614de25750601254601854145b15614de957565b600e54601655601254601855601454601054614dab9190615896565b6000806000806000806000614e1988613da0565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614e7291906157b2565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614eaf9088906157b2565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526001602052604080822093909355908b1681522054614eec908790615896565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040902055614f1b816151e9565b614f2482615279565b614f2e85846154ce565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051614f8d91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000614fb588613da0565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461500e91906157b2565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260016020908152604080832094909455918c16815260029091522054615052908590615896565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260026020908152604080832093909355600190522054614eec908790615896565b60008060008060008060006150a388613da0565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614eaf91906157b2565b600080600080600080600061511088613da0565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461516991906157b2565b73ffffffffffffffffffffffffffffffffffffffff8b1660009081526002602090815260408083209390935560019052205461500e9088906157b2565b60006103e8601654836151b9919061590d565b610d8a91906157c5565b60006103e8601754836151b9919061590d565b60006103e8601854836151b9919061590d565b80156134d05760006151f9613d7d565b90506000615207828461590d565b30600090815260016020526040902054909150615225908290615896565b3060009081526001602090815260408083209390935560059052205460ff16156149495730600090815260026020526040902054615264908490615896565b30600090815260026020526040902055505050565b600080601054118061528d57506000601154115b8061529a57506000601454115b806152a757506000601554115b156152fd576015546014546011546010546152c29190615896565b6152cc9190615896565b6152d69190615896565b6011546010546152e69190615896565b6152f0908461590d565b6152fa91906157c5565b90505b600061530982846157b2565b9050811561539a57600061531b613d7d565b90506000615329828561590d565b30600090815260016020526040902054909150615347908290615896565b3060009081526001602090815260408083209390935560059052205460ff16156153975730600090815260026020526040902054615386908590615896565b306000908152600260205260409020555b50505b80156149495760006153aa613d7d565b905060006153b8828461590d565b61dead60005260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d549091506153f3908290615896565b61dead6000527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5560056020527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460ff16156154b05761dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc54615482908490615896565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc555b82600b60008282546154c291906157b2565b90915550505050505050565b81600c546154dc91906157b2565b600c55600d546154ed908290615896565b600d555050565b600060208083528351808285015260005b8181101561552157858101830151858201604001528201615505565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146134d057600080fd5b6000806040838503121561559557600080fd5b82356155a081615560565b946020939093013593505050565b80151581146134d057600080fd5b600080604083850312156155cf57600080fd5b82356155da81615560565b915060208301356155ea816155ae565b809150509250929050565b60006020828403121561560757600080fd5b813561134681615560565b60008060006060848603121561562757600080fd5b833561563281615560565b9250602084013561564281615560565b929592945050506040919091013590565b60006020828403121561566557600080fd5b5035919050565b60006020828403121561567e57600080fd5b8135611346816155ae565b6000806040838503121561569c57600080fd5b8235915060208301356155ea816155ae565b600080604083850312156156c157600080fd5b50508035926020909101359150565b600080604083850312156156e357600080fd5b82356156ee81615560565b915060208301356155ea81615560565b6000806000806080858703121561571457600080fd5b5050823594602084013594506040840135936060013592509050565b600181811c9082168061574457607f821691505b60208210810361577d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610d8a57610d8a615783565b6000826157fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361588f5761588f615783565b5060010190565b80820180821115610d8a57610d8a615783565b6000806000606084860312156158be57600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156158e957600080fd5b5051919050565b60006020828403121561590257600080fd5b8151611346816155ae565b8082028115828204841417610d8a57610d8a615783565b60006020828403121561593657600080fd5b815161134681615560565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561599e57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161596c565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea2646970667358221220b0b2d769d6d7e89bdede5a55b50c19d71a6f1dfeaa9ff3df1d87b40813f34ea364736f6c63430008110033
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.