ERC-20
Overview
Max Total Supply
51,000 ALIEN
Holders
107
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
1,988.75 ALIENValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Alien
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** Telegram: https://t.me/alien_eth Twitter: https://twitter.com/alien_erc Website: https://alientoken.xyz/ **/ pragma solidity ^0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract Alien is Context, IERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private bots; mapping(address => uint256) private _holderLastTransferTimestamp; mapping(address => bool) blacklist; bool public transferDelayEnabled = true; address payable private _taxWallet; string private constant _name = unicode"Alien"; string private constant _symbol = unicode"ALIEN"; uint8 private constant _decimals = 9; uint256 private constant _totalSupply = 51000 * 10 ** _decimals; uint256 public _maxTxAmount = 1020 * 10 ** _decimals; uint256 public _maxWalletSize = 1020 * 10 ** _decimals; uint256 public _taxSwapThreshold = 1020 * 10 ** _decimals; uint256 public _maxTaxSwap = 1020 * 10 ** _decimals; uint256 private _tax = 20; bool private _taxIsRandom = false; uint256 private constant _preventSwapBefore = 5; uint256 private _buyCount = 0; uint256 private initialBlock = 0; bool private blacklistDone = false; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen = false; bool private inSwap = false; bool private swapEnabled = false; event Tax(address from, address to, uint256 taxAmount, uint256 tax); event TaxInfo(uint256 tax); event MaxTxAmountUpdated(uint _maxTxAmount); event PairCreated(address pair); event LiquidityAdded(); event Blacklisted(address from); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() { _taxWallet = payable(_msgSender()); _balances[_msgSender()] = _totalSupply; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; emit Transfer(address(0), _msgSender(), _totalSupply); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer( address recipient, uint256 amount ) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function setTax(uint256 new_tax) public onlyOwner { _tax = new_tax; } function getTax() public view onlyOwner returns (uint256) { return _tax; } function randomTax() public onlyOwner { _taxIsRandom = true; } function getInitialBlock() public view onlyOwner returns (uint256) { return initialBlock; } function getCurrentBlock() public view returns (uint256) { return block.number; } function calculateCurrentTax() private view returns (uint256) { uint256 endswith = block.number % 10; uint256 tax = 0; if (endswith == 0) { tax = 5; } else if (endswith == 1) { tax = 0; } else if (endswith == 2) { tax = 1; } else if (endswith == 3) { tax = 2; } else if (endswith == 4) { tax = 3; } else if (endswith == 5) { tax = 4; } else if (endswith == 6) { tax = 4; } else if (endswith == 7) { tax = 3; } else if (endswith == 8) { tax = 2; } else if (endswith == 9) { tax = 1; } return tax; } function revertRandomTax() public onlyOwner { _taxIsRandom = false; _tax = 20; } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if ((initialBlock != 0) && (initialBlock + 1 < block.number)) { blacklistDone = true; } if (_taxIsRandom) { _tax = calculateCurrentTax(); } uint256 currentTax = _tax; uint256 taxAmount = 0; if (from != owner() && to != owner()) { if (!blacklistDone) { // if we are still blacklisting check if we have already blacklisted the from address // if we haven't, blacklist it if (!blacklist[from]) { blacklist[from] = true; emit Blacklisted(from); } } // buying tax taxAmount = amount.mul(currentTax).div(100); // buying if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] ) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require( balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize." ); _buyCount++; } // selling if (to == uniswapV2Pair && from != address(this)) { // Prevent selling for those that are blacklisted require(!blacklist[from], "Blacklisted."); // selling tax taxAmount = amount.mul(currentTax).div(100); } // this is a normal transfer, we don't want to allow blacklisted to do that if (from != uniswapV2Pair && to != uniswapV2Pair) { // prevent tx for blacklisted require(!blacklist[from], "Blacklisted."); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold && _buyCount > _preventSwapBefore ) { swapTokensForEth( min(amount, min(contractTokenBalance, _maxTaxSwap)) ); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 50000000000000000) { sendETHToFee(address(this).balance); } } } if (taxAmount > 0) { _balances[address(this)] = _balances[address(this)].add(taxAmount); emit Tax(from, address(this), taxAmount, currentTax); } _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function openTrading(address routerAddr) external onlyOwner { require(!tradingOpen, "trading is already open"); uniswapV2Router = IUniswapV2Router02(routerAddr); // https://github.com/Uniswap/universal-router/blob/main/deploy-addresses/mainnet.json _approve(address(this), address(uniswapV2Router), _totalSupply); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); emit PairCreated(uniswapV2Pair); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); emit LiquidityAdded(); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); IERC20(uniswapV2Pair).transfer( address(owner()), IERC20(uniswapV2Pair).balanceOf(address(this)) ); swapEnabled = true; initialBlock = block.number; tradingOpen = 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 _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 transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function setAMM(address newAMMPair) external onlyOwner { uniswapV2Pair = newAMMPair; } function removeLimits() external onlyOwner { _maxTxAmount = _totalSupply; _maxWalletSize = _totalSupply; transferDelayEnabled = false; emit MaxTxAmountUpdated(_totalSupply); } function removeTax() external onlyOwner { _tax = 0; } function sendETHToFee(uint256 amount) private { _taxWallet.transfer(amount); } receive() external payable {} function manualSwap() external { require(_msgSender() == _taxWallet); uint256 tokenBalance = balanceOf(address(this)); if (tokenBalance > 0) { swapTokensForEth(tokenBalance); } uint256 ethBalance = address(this).balance; if (ethBalance > 0) { sendETHToFee(ethBalance); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"}],"name":"PairCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"Tax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"TaxInfo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getCurrentBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInitialBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddr","type":"address"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revertRandomTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAMMPair","type":"address"}],"name":"setAMM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_tax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001600760006101000a81548160ff0219169083151502179055506009600a6200002f91906200068f565b6103fc6200003e9190620006e0565b6008556009600a6200005191906200068f565b6103fc620000609190620006e0565b6009556009600a6200007391906200068f565b6103fc620000829190620006e0565b600a556009600a6200009591906200068f565b6103fc620000a49190620006e0565b600b556014600c556000600d60006101000a81548160ff0219169083151502179055506000600e556000600f556000601060006101000a81548160ff0219169083151502179055506000601160146101000a81548160ff0219169083151502179055506000601160156101000a81548160ff0219169083151502179055506000601160166101000a81548160ff0219169083151502179055503480156200014a57600080fd5b506200016b6200015f6200040060201b60201c565b6200040860201b60201c565b6200017b6200040060201b60201c565b600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506009600a620001cb91906200068f565b61c738620001da9190620006e0565b60016000620001ee6200040060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016003600062000242620004cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160036000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003756200040060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009600a620003d491906200068f565b61c738620003e39190620006e0565b604051620003f291906200073c565b60405180910390a362000759565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000583578086048111156200055b576200055a620004f5565b5b60018516156200056b5780820291505b80810290506200057b8562000524565b94506200053b565b94509492505050565b6000826200059e576001905062000671565b81620005ae576000905062000671565b8160018114620005c75760028114620005d25762000608565b600191505062000671565b60ff841115620005e757620005e6620004f5565b5b8360020a915084821115620006015762000600620004f5565b5b5062000671565b5060208310610133831016604e8410600b8410161715620006425782820a9050838111156200063c576200063b620004f5565b5b62000671565b62000651848484600162000531565b925090508184048111156200066b576200066a620004f5565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200069c8262000678565b9150620006a98362000682565b9250620006d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200058c565b905092915050565b6000620006ed8262000678565b9150620006fa8362000678565b92508282026200070a8162000678565b91508282048414831517620007245762000723620004f5565b5b5092915050565b620007368162000678565b82525050565b60006020820190506200075360008301846200072b565b92915050565b61351780620007696000396000f3fe6080604052600436106101bb5760003560e01c806370a08231116100ec578063a9059cbb1161008a578063c876d0b911610064578063c876d0b91461059b578063ca72a4e7146105c6578063dd62ed3e146105ef578063f2fde38b1461062c576101c2565b8063a9059cbb1461050a578063aa8ea3a014610547578063bf474bed14610570576101c2565b80637d1db4a5116100c65780637d1db4a51461045e5780638da5cb5b146104895780638f9a55c0146104b457806395d89b41146104df576101c2565b806370a08231146103f3578063715018a614610430578063751039fc14610447576101c2565b80632f5f2572116101595780634b1878bc116101335780634b1878bc1461036f57806351bc3c851461038657806354b762a61461039d578063672d5d3b146103c8576101c2565b80632f5f257214610302578063313ce567146103195780634304aa4c14610344576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd146102855780632cf741ee146102c25780632e5bb6ff146102d9576101c2565b806306fdde03146101c7578063095ea7b3146101f25780630faee56f1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610655565b6040516101e99190612575565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190612630565b610692565b604051610226919061268b565b60405180910390f35b34801561023b57600080fd5b506102446106b0565b60405161025191906126b5565b60405180910390f35b34801561026657600080fd5b5061026f6106b6565b60405161027c91906126b5565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a791906126d0565b6106d8565b6040516102b9919061268b565b60405180910390f35b3480156102ce57600080fd5b506102d76107b1565b005b3480156102e557600080fd5b5061030060048036038101906102fb9190612723565b6107de565b005b34801561030e57600080fd5b506103176107f0565b005b34801561032557600080fd5b5061032e610802565b60405161033b919061276c565b60405180910390f35b34801561035057600080fd5b5061035961080b565b60405161036691906126b5565b60405180910390f35b34801561037b57600080fd5b5061038461081d565b005b34801561039257600080fd5b5061039b610842565b005b3480156103a957600080fd5b506103b26108df565b6040516103bf91906126b5565b60405180910390f35b3480156103d457600080fd5b506103dd6108f1565b6040516103ea91906126b5565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190612787565b6108f9565b60405161042791906126b5565b60405180910390f35b34801561043c57600080fd5b50610445610942565b005b34801561045357600080fd5b5061045c610956565b005b34801561046a57600080fd5b50610473610a0e565b60405161048091906126b5565b60405180910390f35b34801561049557600080fd5b5061049e610a14565b6040516104ab91906127c3565b60405180910390f35b3480156104c057600080fd5b506104c9610a3d565b6040516104d691906126b5565b60405180910390f35b3480156104eb57600080fd5b506104f4610a43565b6040516105019190612575565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190612630565b610a80565b60405161053e919061268b565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612787565b610a9e565b005b34801561057c57600080fd5b50610585610aea565b60405161059291906126b5565b60405180910390f35b3480156105a757600080fd5b506105b0610af0565b6040516105bd919061268b565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190612787565b610b03565b005b3480156105fb57600080fd5b50610616600480360381019061061191906127de565b611168565b60405161062391906126b5565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190612787565b6111ef565b005b60606040518060400160405280600581526020017f416c69656e000000000000000000000000000000000000000000000000000000815250905090565b60006106a661069f611272565b848461127a565b6001905092915050565b600b5481565b60006009600a6106c69190612980565b61c7386106d391906129cb565b905090565b60006106e5848484611443565b6107a6846106f1611272565b6107a1856040518060600160405280602881526020016134ba60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610757611272565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f2e9092919063ffffffff16565b61127a565b600190509392505050565b6107b9611f83565b6000600d60006101000a81548160ff0219169083151502179055506014600c81905550565b6107e6611f83565b80600c8190555050565b6107f8611f83565b6000600c81905550565b60006009905090565b6000610815611f83565b600f54905090565b610825611f83565b6001600d60006101000a81548160ff021916908315150217905550565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610883611272565b73ffffffffffffffffffffffffffffffffffffffff16146108a357600080fd5b60006108ae306108f9565b905060008111156108c3576108c281612001565b5b600047905060008111156108db576108da8161227a565b5b5050565b60006108e9611f83565b600c54905090565b600043905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094a611f83565b61095460006122e6565b565b61095e611f83565b6009600a61096c9190612980565b61c73861097991906129cb565b6008819055506009600a61098d9190612980565b61c73861099a91906129cb565b6009819055506000600760006101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6009600a6109ea9190612980565b61c7386109f791906129cb565b604051610a0491906126b5565b60405180910390a1565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b60606040518060400160405280600581526020017f414c49454e000000000000000000000000000000000000000000000000000000815250905090565b6000610a94610a8d611272565b8484611443565b6001905092915050565b610aa6611f83565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b600760009054906101000a900460ff1681565b610b0b611f83565b601160149054906101000a900460ff1615610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290612a59565b60405180910390fd5b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610be330601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009600a610bd19190612980565b61c738610bde91906129cb565b61127a565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c749190612a8e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d219190612a8e565b6040518363ffffffff1660e01b8152600401610d3e929190612abb565b6020604051808303816000875af1158015610d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d819190612a8e565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb14a725aeeb25d591b81b16b4c5b25403dd8867bdd1876fa787867f566206be1601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610e1291906127c3565b60405180910390a1601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e63306108f9565b600080610e6e610a14565b426040518863ffffffff1660e01b8152600401610e9096959493929190612b29565b60606040518083038185885af1158015610eae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed39190612b9f565b5050507f1b38753a7cb2059150e7f6c9a38ce0edf89d440483b270c832c08f8c6142b7ca60405160405180910390a1601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610fa1929190612bf2565b6020604051808303816000875af1158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190612c47565b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61102b610a14565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161108691906127c3565b602060405180830381865afa1580156110a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c79190612c74565b6040518363ffffffff1660e01b81526004016110e4929190612bf2565b6020604051808303816000875af1158015611103573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111279190612c47565b506001601160166101000a81548160ff02191690831515021790555043600f819055506001601160146101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111f7611f83565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612d13565b60405180910390fd5b61126f816122e6565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612da5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90612e37565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161143691906126b5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990612ec9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890612f5b565b60405180910390fd5b60008111611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90612fed565b60405180910390fd5b6000600f54141580156115845750436001600f54611582919061300d565b105b156115a5576001601060006101000a81548160ff0219169083151502179055505b600d60009054906101000a900460ff16156115c9576115c26123aa565b600c819055505b6000600c54905060006115da610a14565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156116485750611618610a14565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611c9857601060009054906101000a900460ff1661174357600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611742576001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8558560405161173991906127c3565b60405180910390a15b5b611769606461175b848661247490919063ffffffff16565b61248a90919063ffffffff16565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156118165750601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561186c5750600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611927576008548311156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061308d565b60405180910390fd5b600954836118c3866108f9565b6118cd919061300d565b111561190e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611905906130f9565b60405180910390fd5b600e600081548092919061192190613119565b91905055505b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119b057503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611a6b57600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a39906131ad565b60405180910390fd5b611a686064611a5a848661247490919063ffffffff16565b61248a90919063ffffffff16565b90505b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015611b175750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611baa57600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba0906131ad565b60405180910390fd5b5b6000611bb5306108f9565b9050601160159054906101000a900460ff16158015611c215750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8015611c395750601160169054906101000a900460ff165b8015611c465750600a5481115b8015611c5457506005600e54115b15611c9657611c76611c7185611c6c84600b546124a0565b6124a0565b612001565b600047905066b1a2bc2ec50000811115611c9457611c934761227a565b5b505b505b6000811115611d7457611cf381600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b990919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fdd7f714739a0fd75b8d905058550480b224233cc23bedcc4226c3c5f90c7b31085308385604051611d6b94939291906131cd565b60405180910390a15b611dc683600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124cf90919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e6d611e1f82856124cf90919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611f1284876124cf90919063ffffffff16565b604051611f1f91906126b5565b60405180910390a35050505050565b6000838311158290611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d9190612575565b60405180910390fd5b5082840390509392505050565b611f8b611272565b73ffffffffffffffffffffffffffffffffffffffff16611fa9610a14565b73ffffffffffffffffffffffffffffffffffffffff1614611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff69061325e565b60405180910390fd5b565b6001601160156101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156120395761203861327e565b5b6040519080825280602002602001820160405280156120675781602001602082028036833780820191505090505b509050308160008151811061207f5761207e6132ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612126573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214a9190612a8e565b8160018151811061215e5761215d6132ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506121c530601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461127a565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161222995949392919061339a565b600060405180830381600087803b15801561224357600080fd5b505af1158015612257573d6000803e3d6000fd5b50505050506000601160156101000a81548160ff02191690831515021790555050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156122e2573d6000803e3d6000fd5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600a436123ba9190613423565b905060008082036123ce576005905061246c565b600182036123df576000905061246b565b600282036123f0576001905061246a565b600382036124015760029050612469565b600482036124125760039050612468565b600582036124235760049050612467565b600682036124345760049050612466565b600782036124455760039050612465565b600882036124565760029050612464565b6009820361246357600190505b5b5b5b5b5b5b5b5b5b809250505090565b6000818361248291906129cb565b905092915050565b600081836124989190613454565b905092915050565b60008183116124af57826124b1565b815b905092915050565b600081836124c7919061300d565b905092915050565b600081836124dd9190613485565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561251f578082015181840152602081019050612504565b60008484015250505050565b6000601f19601f8301169050919050565b6000612547826124e5565b61255181856124f0565b9350612561818560208601612501565b61256a8161252b565b840191505092915050565b6000602082019050818103600083015261258f818461253c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125c78261259c565b9050919050565b6125d7816125bc565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b6000819050919050565b61260d816125fa565b811461261857600080fd5b50565b60008135905061262a81612604565b92915050565b6000806040838503121561264757612646612597565b5b6000612655858286016125e5565b92505060206126668582860161261b565b9150509250929050565b60008115159050919050565b61268581612670565b82525050565b60006020820190506126a0600083018461267c565b92915050565b6126af816125fa565b82525050565b60006020820190506126ca60008301846126a6565b92915050565b6000806000606084860312156126e9576126e8612597565b5b60006126f7868287016125e5565b9350506020612708868287016125e5565b92505060406127198682870161261b565b9150509250925092565b60006020828403121561273957612738612597565b5b60006127478482850161261b565b91505092915050565b600060ff82169050919050565b61276681612750565b82525050565b6000602082019050612781600083018461275d565b92915050565b60006020828403121561279d5761279c612597565b5b60006127ab848285016125e5565b91505092915050565b6127bd816125bc565b82525050565b60006020820190506127d860008301846127b4565b92915050565b600080604083850312156127f5576127f4612597565b5b6000612803858286016125e5565b9250506020612814858286016125e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156128a4578086048111156128805761287f61281e565b5b600185161561288f5780820291505b808102905061289d8561284d565b9450612864565b94509492505050565b6000826128bd5760019050612979565b816128cb5760009050612979565b81600181146128e157600281146128eb5761291a565b6001915050612979565b60ff8411156128fd576128fc61281e565b5b8360020a9150848211156129145761291361281e565b5b50612979565b5060208310610133831016604e8410600b841016171561294f5782820a90508381111561294a5761294961281e565b5b612979565b61295c848484600161285a565b925090508184048111156129735761297261281e565b5b81810290505b9392505050565b600061298b826125fa565b915061299683612750565b92506129c37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846128ad565b905092915050565b60006129d6826125fa565b91506129e1836125fa565b92508282026129ef816125fa565b91508282048414831517612a0657612a0561281e565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b6000612a436017836124f0565b9150612a4e82612a0d565b602082019050919050565b60006020820190508181036000830152612a7281612a36565b9050919050565b600081519050612a88816125ce565b92915050565b600060208284031215612aa457612aa3612597565b5b6000612ab284828501612a79565b91505092915050565b6000604082019050612ad060008301856127b4565b612add60208301846127b4565b9392505050565b6000819050919050565b6000819050919050565b6000612b13612b0e612b0984612ae4565b612aee565b6125fa565b9050919050565b612b2381612af8565b82525050565b600060c082019050612b3e60008301896127b4565b612b4b60208301886126a6565b612b586040830187612b1a565b612b656060830186612b1a565b612b7260808301856127b4565b612b7f60a08301846126a6565b979650505050505050565b600081519050612b9981612604565b92915050565b600080600060608486031215612bb857612bb7612597565b5b6000612bc686828701612b8a565b9350506020612bd786828701612b8a565b9250506040612be886828701612b8a565b9150509250925092565b6000604082019050612c0760008301856127b4565b612c1460208301846126a6565b9392505050565b612c2481612670565b8114612c2f57600080fd5b50565b600081519050612c4181612c1b565b92915050565b600060208284031215612c5d57612c5c612597565b5b6000612c6b84828501612c32565b91505092915050565b600060208284031215612c8a57612c89612597565b5b6000612c9884828501612b8a565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cfd6026836124f0565b9150612d0882612ca1565b604082019050919050565b60006020820190508181036000830152612d2c81612cf0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d8f6024836124f0565b9150612d9a82612d33565b604082019050919050565b60006020820190508181036000830152612dbe81612d82565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e216022836124f0565b9150612e2c82612dc5565b604082019050919050565b60006020820190508181036000830152612e5081612e14565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612eb36025836124f0565b9150612ebe82612e57565b604082019050919050565b60006020820190508181036000830152612ee281612ea6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f456023836124f0565b9150612f5082612ee9565b604082019050919050565b60006020820190508181036000830152612f7481612f38565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612fd76029836124f0565b9150612fe282612f7b565b604082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b6000613018826125fa565b9150613023836125fa565b925082820190508082111561303b5761303a61281e565b5b92915050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006130776019836124f0565b915061308282613041565b602082019050919050565b600060208201905081810360008301526130a68161306a565b9050919050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b60006130e3601a836124f0565b91506130ee826130ad565b602082019050919050565b60006020820190508181036000830152613112816130d6565b9050919050565b6000613124826125fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131565761315561281e565b5b600182019050919050565b7f426c61636b6c69737465642e0000000000000000000000000000000000000000600082015250565b6000613197600c836124f0565b91506131a282613161565b602082019050919050565b600060208201905081810360008301526131c68161318a565b9050919050565b60006080820190506131e260008301876127b4565b6131ef60208301866127b4565b6131fc60408301856126a6565b61320960608301846126a6565b95945050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132486020836124f0565b915061325382613212565b602082019050919050565b600060208201905081810360008301526132778161323b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613311816125bc565b82525050565b60006133238383613308565b60208301905092915050565b6000602082019050919050565b6000613347826132dc565b61335181856132e7565b935061335c836132f8565b8060005b8381101561338d5781516133748882613317565b975061337f8361332f565b925050600181019050613360565b5085935050505092915050565b600060a0820190506133af60008301886126a6565b6133bc6020830187612b1a565b81810360408301526133ce818661333c565b90506133dd60608301856127b4565b6133ea60808301846126a6565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061342e826125fa565b9150613439836125fa565b925082613449576134486133f4565b5b828206905092915050565b600061345f826125fa565b915061346a836125fa565b92508261347a576134796133f4565b5b828204905092915050565b6000613490826125fa565b915061349b836125fa565b92508282039050818111156134b3576134b261281e565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c0f210b1dd2f4e840877fac0e7b816318446019ec323dfecc4e424d9b07f6bde64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c806370a08231116100ec578063a9059cbb1161008a578063c876d0b911610064578063c876d0b91461059b578063ca72a4e7146105c6578063dd62ed3e146105ef578063f2fde38b1461062c576101c2565b8063a9059cbb1461050a578063aa8ea3a014610547578063bf474bed14610570576101c2565b80637d1db4a5116100c65780637d1db4a51461045e5780638da5cb5b146104895780638f9a55c0146104b457806395d89b41146104df576101c2565b806370a08231146103f3578063715018a614610430578063751039fc14610447576101c2565b80632f5f2572116101595780634b1878bc116101335780634b1878bc1461036f57806351bc3c851461038657806354b762a61461039d578063672d5d3b146103c8576101c2565b80632f5f257214610302578063313ce567146103195780634304aa4c14610344576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd146102855780632cf741ee146102c25780632e5bb6ff146102d9576101c2565b806306fdde03146101c7578063095ea7b3146101f25780630faee56f1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610655565b6040516101e99190612575565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190612630565b610692565b604051610226919061268b565b60405180910390f35b34801561023b57600080fd5b506102446106b0565b60405161025191906126b5565b60405180910390f35b34801561026657600080fd5b5061026f6106b6565b60405161027c91906126b5565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a791906126d0565b6106d8565b6040516102b9919061268b565b60405180910390f35b3480156102ce57600080fd5b506102d76107b1565b005b3480156102e557600080fd5b5061030060048036038101906102fb9190612723565b6107de565b005b34801561030e57600080fd5b506103176107f0565b005b34801561032557600080fd5b5061032e610802565b60405161033b919061276c565b60405180910390f35b34801561035057600080fd5b5061035961080b565b60405161036691906126b5565b60405180910390f35b34801561037b57600080fd5b5061038461081d565b005b34801561039257600080fd5b5061039b610842565b005b3480156103a957600080fd5b506103b26108df565b6040516103bf91906126b5565b60405180910390f35b3480156103d457600080fd5b506103dd6108f1565b6040516103ea91906126b5565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190612787565b6108f9565b60405161042791906126b5565b60405180910390f35b34801561043c57600080fd5b50610445610942565b005b34801561045357600080fd5b5061045c610956565b005b34801561046a57600080fd5b50610473610a0e565b60405161048091906126b5565b60405180910390f35b34801561049557600080fd5b5061049e610a14565b6040516104ab91906127c3565b60405180910390f35b3480156104c057600080fd5b506104c9610a3d565b6040516104d691906126b5565b60405180910390f35b3480156104eb57600080fd5b506104f4610a43565b6040516105019190612575565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190612630565b610a80565b60405161053e919061268b565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612787565b610a9e565b005b34801561057c57600080fd5b50610585610aea565b60405161059291906126b5565b60405180910390f35b3480156105a757600080fd5b506105b0610af0565b6040516105bd919061268b565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190612787565b610b03565b005b3480156105fb57600080fd5b50610616600480360381019061061191906127de565b611168565b60405161062391906126b5565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190612787565b6111ef565b005b60606040518060400160405280600581526020017f416c69656e000000000000000000000000000000000000000000000000000000815250905090565b60006106a661069f611272565b848461127a565b6001905092915050565b600b5481565b60006009600a6106c69190612980565b61c7386106d391906129cb565b905090565b60006106e5848484611443565b6107a6846106f1611272565b6107a1856040518060600160405280602881526020016134ba60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610757611272565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f2e9092919063ffffffff16565b61127a565b600190509392505050565b6107b9611f83565b6000600d60006101000a81548160ff0219169083151502179055506014600c81905550565b6107e6611f83565b80600c8190555050565b6107f8611f83565b6000600c81905550565b60006009905090565b6000610815611f83565b600f54905090565b610825611f83565b6001600d60006101000a81548160ff021916908315150217905550565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610883611272565b73ffffffffffffffffffffffffffffffffffffffff16146108a357600080fd5b60006108ae306108f9565b905060008111156108c3576108c281612001565b5b600047905060008111156108db576108da8161227a565b5b5050565b60006108e9611f83565b600c54905090565b600043905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094a611f83565b61095460006122e6565b565b61095e611f83565b6009600a61096c9190612980565b61c73861097991906129cb565b6008819055506009600a61098d9190612980565b61c73861099a91906129cb565b6009819055506000600760006101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6009600a6109ea9190612980565b61c7386109f791906129cb565b604051610a0491906126b5565b60405180910390a1565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b60606040518060400160405280600581526020017f414c49454e000000000000000000000000000000000000000000000000000000815250905090565b6000610a94610a8d611272565b8484611443565b6001905092915050565b610aa6611f83565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b600760009054906101000a900460ff1681565b610b0b611f83565b601160149054906101000a900460ff1615610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290612a59565b60405180910390fd5b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610be330601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009600a610bd19190612980565b61c738610bde91906129cb565b61127a565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c749190612a8e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d219190612a8e565b6040518363ffffffff1660e01b8152600401610d3e929190612abb565b6020604051808303816000875af1158015610d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d819190612a8e565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb14a725aeeb25d591b81b16b4c5b25403dd8867bdd1876fa787867f566206be1601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610e1291906127c3565b60405180910390a1601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e63306108f9565b600080610e6e610a14565b426040518863ffffffff1660e01b8152600401610e9096959493929190612b29565b60606040518083038185885af1158015610eae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed39190612b9f565b5050507f1b38753a7cb2059150e7f6c9a38ce0edf89d440483b270c832c08f8c6142b7ca60405160405180910390a1601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610fa1929190612bf2565b6020604051808303816000875af1158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190612c47565b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61102b610a14565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161108691906127c3565b602060405180830381865afa1580156110a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c79190612c74565b6040518363ffffffff1660e01b81526004016110e4929190612bf2565b6020604051808303816000875af1158015611103573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111279190612c47565b506001601160166101000a81548160ff02191690831515021790555043600f819055506001601160146101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111f7611f83565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612d13565b60405180910390fd5b61126f816122e6565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612da5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90612e37565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161143691906126b5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990612ec9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890612f5b565b60405180910390fd5b60008111611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90612fed565b60405180910390fd5b6000600f54141580156115845750436001600f54611582919061300d565b105b156115a5576001601060006101000a81548160ff0219169083151502179055505b600d60009054906101000a900460ff16156115c9576115c26123aa565b600c819055505b6000600c54905060006115da610a14565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156116485750611618610a14565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611c9857601060009054906101000a900460ff1661174357600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611742576001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8558560405161173991906127c3565b60405180910390a15b5b611769606461175b848661247490919063ffffffff16565b61248a90919063ffffffff16565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156118165750601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561186c5750600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611927576008548311156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061308d565b60405180910390fd5b600954836118c3866108f9565b6118cd919061300d565b111561190e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611905906130f9565b60405180910390fd5b600e600081548092919061192190613119565b91905055505b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119b057503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611a6b57600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a39906131ad565b60405180910390fd5b611a686064611a5a848661247490919063ffffffff16565b61248a90919063ffffffff16565b90505b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015611b175750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611baa57600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba0906131ad565b60405180910390fd5b5b6000611bb5306108f9565b9050601160159054906101000a900460ff16158015611c215750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8015611c395750601160169054906101000a900460ff165b8015611c465750600a5481115b8015611c5457506005600e54115b15611c9657611c76611c7185611c6c84600b546124a0565b6124a0565b612001565b600047905066b1a2bc2ec50000811115611c9457611c934761227a565b5b505b505b6000811115611d7457611cf381600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b990919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fdd7f714739a0fd75b8d905058550480b224233cc23bedcc4226c3c5f90c7b31085308385604051611d6b94939291906131cd565b60405180910390a15b611dc683600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124cf90919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e6d611e1f82856124cf90919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611f1284876124cf90919063ffffffff16565b604051611f1f91906126b5565b60405180910390a35050505050565b6000838311158290611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d9190612575565b60405180910390fd5b5082840390509392505050565b611f8b611272565b73ffffffffffffffffffffffffffffffffffffffff16611fa9610a14565b73ffffffffffffffffffffffffffffffffffffffff1614611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff69061325e565b60405180910390fd5b565b6001601160156101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156120395761203861327e565b5b6040519080825280602002602001820160405280156120675781602001602082028036833780820191505090505b509050308160008151811061207f5761207e6132ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612126573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214a9190612a8e565b8160018151811061215e5761215d6132ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506121c530601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461127a565b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161222995949392919061339a565b600060405180830381600087803b15801561224357600080fd5b505af1158015612257573d6000803e3d6000fd5b50505050506000601160156101000a81548160ff02191690831515021790555050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156122e2573d6000803e3d6000fd5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600a436123ba9190613423565b905060008082036123ce576005905061246c565b600182036123df576000905061246b565b600282036123f0576001905061246a565b600382036124015760029050612469565b600482036124125760039050612468565b600582036124235760049050612467565b600682036124345760049050612466565b600782036124455760039050612465565b600882036124565760029050612464565b6009820361246357600190505b5b5b5b5b5b5b5b5b5b809250505090565b6000818361248291906129cb565b905092915050565b600081836124989190613454565b905092915050565b60008183116124af57826124b1565b815b905092915050565b600081836124c7919061300d565b905092915050565b600081836124dd9190613485565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561251f578082015181840152602081019050612504565b60008484015250505050565b6000601f19601f8301169050919050565b6000612547826124e5565b61255181856124f0565b9350612561818560208601612501565b61256a8161252b565b840191505092915050565b6000602082019050818103600083015261258f818461253c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125c78261259c565b9050919050565b6125d7816125bc565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b6000819050919050565b61260d816125fa565b811461261857600080fd5b50565b60008135905061262a81612604565b92915050565b6000806040838503121561264757612646612597565b5b6000612655858286016125e5565b92505060206126668582860161261b565b9150509250929050565b60008115159050919050565b61268581612670565b82525050565b60006020820190506126a0600083018461267c565b92915050565b6126af816125fa565b82525050565b60006020820190506126ca60008301846126a6565b92915050565b6000806000606084860312156126e9576126e8612597565b5b60006126f7868287016125e5565b9350506020612708868287016125e5565b92505060406127198682870161261b565b9150509250925092565b60006020828403121561273957612738612597565b5b60006127478482850161261b565b91505092915050565b600060ff82169050919050565b61276681612750565b82525050565b6000602082019050612781600083018461275d565b92915050565b60006020828403121561279d5761279c612597565b5b60006127ab848285016125e5565b91505092915050565b6127bd816125bc565b82525050565b60006020820190506127d860008301846127b4565b92915050565b600080604083850312156127f5576127f4612597565b5b6000612803858286016125e5565b9250506020612814858286016125e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156128a4578086048111156128805761287f61281e565b5b600185161561288f5780820291505b808102905061289d8561284d565b9450612864565b94509492505050565b6000826128bd5760019050612979565b816128cb5760009050612979565b81600181146128e157600281146128eb5761291a565b6001915050612979565b60ff8411156128fd576128fc61281e565b5b8360020a9150848211156129145761291361281e565b5b50612979565b5060208310610133831016604e8410600b841016171561294f5782820a90508381111561294a5761294961281e565b5b612979565b61295c848484600161285a565b925090508184048111156129735761297261281e565b5b81810290505b9392505050565b600061298b826125fa565b915061299683612750565b92506129c37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846128ad565b905092915050565b60006129d6826125fa565b91506129e1836125fa565b92508282026129ef816125fa565b91508282048414831517612a0657612a0561281e565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b6000612a436017836124f0565b9150612a4e82612a0d565b602082019050919050565b60006020820190508181036000830152612a7281612a36565b9050919050565b600081519050612a88816125ce565b92915050565b600060208284031215612aa457612aa3612597565b5b6000612ab284828501612a79565b91505092915050565b6000604082019050612ad060008301856127b4565b612add60208301846127b4565b9392505050565b6000819050919050565b6000819050919050565b6000612b13612b0e612b0984612ae4565b612aee565b6125fa565b9050919050565b612b2381612af8565b82525050565b600060c082019050612b3e60008301896127b4565b612b4b60208301886126a6565b612b586040830187612b1a565b612b656060830186612b1a565b612b7260808301856127b4565b612b7f60a08301846126a6565b979650505050505050565b600081519050612b9981612604565b92915050565b600080600060608486031215612bb857612bb7612597565b5b6000612bc686828701612b8a565b9350506020612bd786828701612b8a565b9250506040612be886828701612b8a565b9150509250925092565b6000604082019050612c0760008301856127b4565b612c1460208301846126a6565b9392505050565b612c2481612670565b8114612c2f57600080fd5b50565b600081519050612c4181612c1b565b92915050565b600060208284031215612c5d57612c5c612597565b5b6000612c6b84828501612c32565b91505092915050565b600060208284031215612c8a57612c89612597565b5b6000612c9884828501612b8a565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cfd6026836124f0565b9150612d0882612ca1565b604082019050919050565b60006020820190508181036000830152612d2c81612cf0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d8f6024836124f0565b9150612d9a82612d33565b604082019050919050565b60006020820190508181036000830152612dbe81612d82565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e216022836124f0565b9150612e2c82612dc5565b604082019050919050565b60006020820190508181036000830152612e5081612e14565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612eb36025836124f0565b9150612ebe82612e57565b604082019050919050565b60006020820190508181036000830152612ee281612ea6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f456023836124f0565b9150612f5082612ee9565b604082019050919050565b60006020820190508181036000830152612f7481612f38565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612fd76029836124f0565b9150612fe282612f7b565b604082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b6000613018826125fa565b9150613023836125fa565b925082820190508082111561303b5761303a61281e565b5b92915050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006130776019836124f0565b915061308282613041565b602082019050919050565b600060208201905081810360008301526130a68161306a565b9050919050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b60006130e3601a836124f0565b91506130ee826130ad565b602082019050919050565b60006020820190508181036000830152613112816130d6565b9050919050565b6000613124826125fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131565761315561281e565b5b600182019050919050565b7f426c61636b6c69737465642e0000000000000000000000000000000000000000600082015250565b6000613197600c836124f0565b91506131a282613161565b602082019050919050565b600060208201905081810360008301526131c68161318a565b9050919050565b60006080820190506131e260008301876127b4565b6131ef60208301866127b4565b6131fc60408301856126a6565b61320960608301846126a6565b95945050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132486020836124f0565b915061325382613212565b602082019050919050565b600060208201905081810360008301526132778161323b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613311816125bc565b82525050565b60006133238383613308565b60208301905092915050565b6000602082019050919050565b6000613347826132dc565b61335181856132e7565b935061335c836132f8565b8060005b8381101561338d5781516133748882613317565b975061337f8361332f565b925050600181019050613360565b5085935050505092915050565b600060a0820190506133af60008301886126a6565b6133bc6020830187612b1a565b81810360408301526133ce818661333c565b90506133dd60608301856127b4565b6133ea60808301846126a6565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061342e826125fa565b9150613439836125fa565b925082613449576134486133f4565b5b828206905092915050565b600061345f826125fa565b915061346a836125fa565b92508261347a576134796133f4565b5b828204905092915050565b6000613490826125fa565b915061349b836125fa565b92508282039050818111156134b3576134b261281e565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c0f210b1dd2f4e840877fac0e7b816318446019ec323dfecc4e424d9b07f6bde64736f6c63430008130033
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.