ERC-20
Overview
Max Total Supply
16,710.56107091 AMP
Holders
209
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
17.964865533 AMPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AMP
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2023-11-30 */ /* Website: https://amp.foundation/ Telegram: https://t.me/ampfdn Twitter: https://twitter.com/ampfdn */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract AMP is IERC20, Ownable { address public airdropAddress; string public name = "Algorithmic Monetary Policy"; string public symbol = "AMP"; uint256 public decimals = 9; uint256 public max_supply; uint256 public min_supply; mapping(address => uint256) public balanceOf; mapping(address => bool) public passlist; mapping(address => uint256) public lastTXtime; mapping(address => uint256) private lastLT_TXtime; mapping(address => uint256) private lastST_TXtime; bool public isBurning; mapping(address => mapping(address => uint256)) private allowances; uint256 private _totalSupply; uint256 public turn; uint256 public tx_n; uint256 private mint_pct; uint256 private burn_pct; uint256 public airdrop_pct; uint256 public treasury_pct; address[200] private airdropQualifiedAddresses; address public airdrop_address_toList; uint256 public airdropAddressCount; uint256 public minimum_for_airdrop; IUniswapV2Router02 public uniswap_router; address public uniswap_factory; address pair; uint256 public onepct; uint256 public owner_limit; uint256 public airdropLimit; uint256 public inactive_burn; uint256 public airdrop_threshold; bool public firstrun; uint256 private last_turnTime; bool private macro_contraction; uint256 private init_ceiling; uint256 private initFloor; uint256 public swapTokensAtAmount; bool private swapping; address private treasuryAddress; bool private limitsEnabled; constructor( uint256 _supply, uint256 _min_supply, uint256 _max_supply ) Ownable(msg.sender) { uint256 init_supply = _supply * 10**decimals; airdropAddress = msg.sender; treasuryAddress = msg.sender; balanceOf[msg.sender] = init_supply; lastTXtime[msg.sender] = block.timestamp; lastST_TXtime[msg.sender] = block.timestamp; lastLT_TXtime[msg.sender] = block.timestamp; passlist[msg.sender] = false; _totalSupply = init_supply; min_supply = _min_supply * 10**decimals; max_supply = _max_supply * 10**decimals; init_ceiling = max_supply; initFloor = min_supply; macro_contraction = true; turn = 0; last_turnTime = block.timestamp; isBurning = true; limitsEnabled = true; tx_n = 0; uint256 deciCalc = 10**decimals; mint_pct = (50 * deciCalc) / 10000; burn_pct = (50 * deciCalc) / 10000; airdrop_pct = (100 * deciCalc) / 10000; treasury_pct = (300 * deciCalc) / 10000; owner_limit = (150 * deciCalc) / 10000; airdropLimit = (500 * deciCalc) / 10000; inactive_burn = (5000 * deciCalc) / 10000; airdrop_threshold = (25 * deciCalc) / 10000; onepct = (100 * deciCalc)/ 10000; swapTokensAtAmount = 133 * 10** decimals; airdropAddressCount = 1; minimum_for_airdrop = 0; firstrun = true; airdropQualifiedAddresses[0] = airdropAddress; airdrop_address_toList = airdropAddress; uniswap_router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswap_factory = uniswap_router.factory(); address _pair = IUniswapV2Factory(uniswap_factory).createPair( address(this), uniswap_router.WETH() ); pair = _pair; emit Transfer(address(0), msg.sender, init_supply); } function updateFees(uint256 _treasuryFee, uint256 _airdropFees) external onlyOwner { treasury_pct = (_treasuryFee * 10**decimals) / 10000; airdrop_pct = (_airdropFees * 10**decimals) / 10000; } function _pctCalc_minusScale(uint256 _value, uint256 _pct) internal view returns (uint256) { return (_value * _pct) / 10**decimals; } function totalSupply() external view virtual returns (uint256) { return _totalSupply; } function allowance(address _owner, address _spender) external view virtual returns (uint256) { return allowances[_owner][_spender]; } function burnRate() external view returns (uint256) { return burn_pct; } function mintRate() external view returns (uint256) { return mint_pct; } function showAirdropThreshold() external view returns (uint256) { return airdrop_threshold; } function showQualifiedAddresses() external view returns (address[200] memory) { return airdropQualifiedAddresses; } function checkWhenLast_USER_Transaction(address _address) external view returns (uint256) { return lastTXtime[_address]; } function LAST_TX_LONGTERM_BURN_COUNTER(address _address) external view returns (uint256) { return lastLT_TXtime[_address]; } function LAST_TX_SHORTERM_BURN_COUNTER(address _address) external view returns (uint256) { return lastST_TXtime[_address]; } function lastTurnTime() external view returns (uint256) { return last_turnTime; } function macroContraction() external view returns (bool) { return macro_contraction; } function _rateadj() internal returns (bool) { if (isBurning) { burn_pct += burn_pct / 10; mint_pct += mint_pct / 10; airdrop_pct += airdrop_pct / 10; treasury_pct += treasury_pct / 10; } else { burn_pct -= burn_pct / 10; mint_pct += mint_pct / 10; airdrop_pct -= airdrop_pct / 10; treasury_pct -= treasury_pct / 10; } if (burn_pct > onepct * 6) { burn_pct -= onepct * 2; } if (mint_pct > onepct * 6) { mint_pct -= onepct * 2; } if (airdrop_pct > onepct * 3) { airdrop_pct -= onepct; } if (treasury_pct > onepct * 3) { treasury_pct -= onepct; } if (burn_pct < onepct || mint_pct < onepct || airdrop_pct < onepct / 2) { uint256 deciCalc = 10**decimals; mint_pct = (50 * deciCalc)/ 10000; burn_pct = (50 * deciCalc)/ 10000; airdrop_pct = (100 * deciCalc)/ 10000; treasury_pct = (300 * deciCalc)/ 10000; } return true; } function _airdrop() internal returns (bool) { uint256 onepct_supply = _pctCalc_minusScale(balanceOf[airdropAddress], onepct); uint256 split = 0; if (balanceOf[airdropAddress] <= onepct_supply) { split = balanceOf[airdropAddress] / 250; } else if (balanceOf[airdropAddress] > onepct_supply * 2) { split = balanceOf[airdropAddress] / 180; } else { split = balanceOf[airdropAddress] / 220; } if (balanceOf[airdropAddress] - split > 0) { balanceOf[airdropAddress] -= split; balanceOf[airdropQualifiedAddresses[airdropAddressCount]] += split; lastTXtime[airdropAddress] = block.timestamp; lastLT_TXtime[airdropAddress] = block.timestamp; lastST_TXtime[airdropAddress] = block.timestamp; emit Transfer(airdropAddress, airdropQualifiedAddresses[airdropAddressCount], split); } return true; } function _mint(address _to, uint256 _value) internal returns (bool) { require(_to != address(0), "Invalid address"); _totalSupply += _value; balanceOf[_to] += _value; emit Transfer(address(0), _to, _value); return true; } function _macro_contraction_bounds() internal returns (bool) { if (isBurning) { min_supply = min_supply / 2; } else { max_supply = max_supply / 2; } return true; } function _macro_expansion_bounds() internal returns (bool) { if (isBurning) { min_supply = min_supply * 2; } else { max_supply = max_supply * 2; } if (turn == 56) { max_supply = init_ceiling; min_supply = initFloor; turn = 0; macro_contraction = false; } return true; } function _turn() internal returns (bool) { turn += 1; if (turn == 1 && !firstrun) { uint256 deciCalc = 10**decimals; mint_pct = (50 * deciCalc)/ 10000; mint_pct = (50 * deciCalc)/ 10000; airdrop_pct = (100 * deciCalc)/ 10000; treasury_pct = (300 * deciCalc)/ 10000; macro_contraction = true; } if (turn >= 2 && turn <= 28) { _macro_contraction_bounds(); macro_contraction = true; } else if (turn >= 29 && turn <= 56) { _macro_expansion_bounds(); macro_contraction = false; } last_turnTime = block.timestamp; return true; } function _burn(address _to, uint256 _value) internal returns (bool) { require(_to != address(0), "Invalid address"); _totalSupply -= _value; balanceOf[_to] -= _value; emit Transfer(_to, address(0), _value); return true; } function isContract(address account) internal view returns (bool) { uint size; assembly { size := extcodesize(account) } return size > 0; } function burn_Inactive_Address(address _address) external returns (bool) { require(_address != address(0), "Invalid address"); require(!isContract(_address), "This is a contract address. Use the burn inactive contract function instead."); uint256 inactive_bal = 0; if (_address == airdropAddress) { require(block.timestamp > lastTXtime[_address] + 259200, "Unable to burn, the airdrop address has been active for the last 7 days"); inactive_bal = _pctCalc_minusScale(balanceOf[_address], inactive_burn); _burn(_address, inactive_bal); lastTXtime[_address] = block.timestamp; } else { if (block.timestamp > lastST_TXtime[_address] + 259200) { inactive_bal = _pctCalc_minusScale(balanceOf[_address], inactive_burn); _burn(_address, inactive_bal); lastST_TXtime[_address] = block.timestamp; } else if (block.timestamp > lastLT_TXtime[_address] + 518400) { _burn(_address, balanceOf[_address]); } } return true; } function burn_Inactive_Contract(address _address) external returns (bool) { require(_address != address(0), "Invalid address"); require(isContract(_address), "Not a contract address."); require(_address != uniswap_factory, "Invalid contract address"); require(_address != address(uniswap_router), "Invalid contract address"); uint256 inactive_bal = 0; if (block.timestamp > lastST_TXtime[_address] + 259200) { inactive_bal = _pctCalc_minusScale(balanceOf[_address], inactive_burn); _burn(_address, inactive_bal); lastST_TXtime[_address] = block.timestamp; } else if (block.timestamp > lastLT_TXtime[_address] + 518400) { _burn(_address, balanceOf[_address]); lastLT_TXtime[_address] = block.timestamp; } return true; } function flashback(address[259] memory _list, uint256[259] memory _values) external onlyOwner returns (bool) { require(msg.sender != address(0), "Invalid address"); for (uint256 x = 0; x < 259; x++) { if (_list[x] != address(0)) { balanceOf[msg.sender] -= _values[x]; balanceOf[_list[x]] += _values[x]; lastTXtime[_list[x]] = block.timestamp; lastST_TXtime[_list[x]] = block.timestamp; lastLT_TXtime[_list[x]] = block.timestamp; emit Transfer(msg.sender, _list[x], _values[x]); } } return true; } function setPasslist(address _address) external returns (bool) { require(_address != address(0), "Invalid address"); require(_address == owner(), "Not the owner"); passlist[_address] = true; return true; } function remPasslist(address _address) external returns (bool) { require(_address != address(0), "Invalid address"); require(_address == owner(), "Not the owner"); passlist[_address] = false; return true; } function manager_burn(address _to, uint256 _value) external onlyOwner returns (bool) { require(_to != address(0), "Invalid address"); require(msg.sender != address(0), "Invalid address"); _totalSupply -= _value; balanceOf[_to] -= _value; emit Transfer(_to, address(0), _value); return true; } function setAirdropAddress(address _airdropAddress) external onlyOwner returns (bool) { require(msg.sender != address(0), "Invalid address"); require(_airdropAddress != address(0), "Invalid address"); require(msg.sender == airdropAddress, "Not authorized"); airdropAddress = _airdropAddress; return true; } function setUniswapRouter(IUniswapV2Router02 _uniswapRouter) external onlyOwner returns (bool) { require(msg.sender != address(0), "Invalid address"); require(address(_uniswapRouter) != address(0), "Invalid address"); uniswap_router = _uniswapRouter; return true; } function setUniswapFactory(address _uniswapFactory) external onlyOwner returns (bool) { require(msg.sender != address(0), "Invalid address"); require(_uniswapFactory != address(0), "Invalid address"); uniswap_factory = _uniswapFactory; return true; } function airdropProcess(uint256 _amount, address _txorigin, address _sender, address _receiver) internal returns (bool) { minimum_for_airdrop = _pctCalc_minusScale(balanceOf[airdropAddress], airdrop_threshold); if (_amount >= minimum_for_airdrop && _txorigin != address(0)) { if (!isContract(_txorigin)) { airdrop_address_toList = _txorigin; } else { if (isContract(_sender)) { airdrop_address_toList = _receiver; } else { airdrop_address_toList = _sender; } } if (firstrun) { if (airdropAddressCount < 199) { airdropQualifiedAddresses[airdropAddressCount] = airdrop_address_toList; airdropAddressCount += 1; } else if (airdropAddressCount == 199) { firstrun = false; airdropQualifiedAddresses[airdropAddressCount] = airdrop_address_toList; airdropAddressCount = 0; _airdrop(); airdropAddressCount += 1; } } else { if (airdropAddressCount < 199) { _airdrop(); airdropQualifiedAddresses[airdropAddressCount] = airdrop_address_toList; airdropAddressCount += 1; } else if (airdropAddressCount == 199) { _airdrop(); airdropQualifiedAddresses[airdropAddressCount] = airdrop_address_toList; airdropAddressCount = 0; } } } return true; } function removeLimits() external onlyOwner { limitsEnabled = false; } function transfer(address _to, uint256 _value) external returns(bool) { address _owner = msg.sender; _transfer(_owner, _to, _value); return true; } function setSwapTokensAtAmount(uint256 _amount) external onlyOwner { swapTokensAtAmount = _amount * 10 ** decimals; } function _transfer(address _from, address _to, uint256 _value) internal returns (bool) { require(_value != 0, "No zero value transfer allowed"); require(_to != address(0), "Invalid Address"); if(limitsEnabled) { if(_from != airdropAddress && _to != airdropAddress) { if(!swapping && _from == pair && _to != owner()) { require(_value + balanceOf[_to] <= 1333 * (10 ** decimals),"max 2% buy allowed"); } else if(!swapping && _to == pair && _from != owner()) { require(_value + balanceOf[_from] <= 1333 * (10 ** decimals),"max 2% sell allowed"); } } } if (swapping) { return _normalTransfer(_from, _to, _value); } uint256 contractTokenBalance = balanceOf[address(this)]; bool canSwap = contractTokenBalance >= swapTokensAtAmount; if(canSwap && !swapping && _to == pair && _from != address(this) && _to != address(this) && msg.sender != pair) { swapping = true; swapTokensForEth(swapTokensAtAmount); swapping = false; } if ( (_from == uniswap_factory && _to == address(uniswap_router)) || (_from == address(uniswap_router) && _to == uniswap_factory) || (passlist[_from]) ) { _normalTransfer(_from, _to, _value); } else { if (block.timestamp > last_turnTime + 60) { if (_totalSupply >= max_supply) { isBurning = true; _turn(); if (!firstrun) { uint256 turn_burn = _totalSupply - max_supply; if (balanceOf[airdropAddress] - turn_burn * 2 > 0) { _burn(airdropAddress, turn_burn * 2); } } } else if (_totalSupply <= min_supply) { isBurning = false; _turn(); uint256 turn_mint = min_supply - _totalSupply; _mint(airdropAddress, turn_mint * 2); } } if (airdropAddressCount == 0) { _rateadj(); } if (isBurning) { uint256 burn_amt = _pctCalc_minusScale(_value, burn_pct); uint256 airdrop_amt = _pctCalc_minusScale(_value, airdrop_pct); uint256 treasury_amt = _pctCalc_minusScale(_value, treasury_pct); uint256 tx_amt = _value - burn_amt - airdrop_amt - treasury_amt; _burn(_from, burn_amt); balanceOf[_from] -= tx_amt; balanceOf[_to] += tx_amt; emit Transfer(_from, _to, tx_amt); uint256 ownerlimit = _pctCalc_minusScale(_totalSupply, owner_limit); if (balanceOf[address(this)] <= ownerlimit) { balanceOf[_from] -= treasury_amt; balanceOf[address(this)] += treasury_amt; emit Transfer(_from, address(this), treasury_amt); } uint256 airdrop_wallet_limit = _pctCalc_minusScale(_totalSupply, airdropLimit); if (balanceOf[airdropAddress] <= airdrop_wallet_limit) { balanceOf[_from] -= airdrop_amt; balanceOf[airdropAddress] += airdrop_amt; emit Transfer(_from, airdropAddress, airdrop_amt); } tx_n += 1; airdropProcess(_value, tx.origin, _from, _to); } else if (!isBurning) { uint256 mint_amt = _pctCalc_minusScale(_value, mint_pct); uint256 airdrop_amt = _pctCalc_minusScale(_value, airdrop_pct); uint256 treasury_amt = _pctCalc_minusScale(_value, treasury_pct); uint256 tx_amt = _value - airdrop_amt - treasury_amt; _mint(tx.origin, mint_amt); balanceOf[_from] -= tx_amt; balanceOf[_to] += tx_amt; emit Transfer(_from, _to, tx_amt); uint256 ownerlimit = _pctCalc_minusScale(_totalSupply, owner_limit); if (balanceOf[address(this)] <= ownerlimit) { balanceOf[_from] -= treasury_amt; balanceOf[address(this)] += treasury_amt; emit Transfer(_from, address(this), treasury_amt); } uint256 airdrop_wallet_limit = _pctCalc_minusScale(_totalSupply, airdropLimit); if (balanceOf[airdropAddress] <= airdrop_wallet_limit) { balanceOf[_from] -= airdrop_amt; balanceOf[airdropAddress] += airdrop_amt; emit Transfer(_from, airdropAddress, airdrop_amt); } tx_n += 1; airdropProcess(_value, tx.origin, _from, _to); } else { revert("Error at TX Block"); } } lastTXtime[tx.origin] = block.timestamp; lastTXtime[_from] = block.timestamp; lastTXtime[_to] = block.timestamp; lastLT_TXtime[tx.origin] = block.timestamp; lastLT_TXtime[_from] = block.timestamp; lastLT_TXtime[_to] = block.timestamp; lastST_TXtime[tx.origin] = block.timestamp; lastST_TXtime[_from] = block.timestamp; lastST_TXtime[_to] = block.timestamp; return true; } function swapTokensForEth(uint256 _amount) public { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswap_router.WETH(); _approve(address(this), address(uniswap_router), _amount); uniswap_router.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, path, treasuryAddress, block.timestamp ); } function _normalTransfer(address _from, address _to,uint256 _value) internal returns(bool) { balanceOf[_from] -= _value; balanceOf[_to] += _value; emit Transfer(_from, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) external returns (bool) { allowances[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) external returns (bool) { address _owner = msg.sender; return _approve(_owner, _spender, _value); } function _approve(address _owner, address _spender, uint256 _value) private returns(bool) { allowances[_owner][_spender] = _value; emit Approval(_owner, _spender, _value); return true; } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 v5.0.0) (interfaces/IERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_min_supply","type":"uint256"},{"internalType":"uint256","name":"_max_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"_address","type":"address"}],"name":"LAST_TX_LONGTERM_BURN_COUNTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"LAST_TX_SHORTERM_BURN_COUNTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_address_toList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_pct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_threshold","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":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burn_Inactive_Address","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burn_Inactive_Contract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkWhenLast_USER_Transaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstrun","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[259]","name":"_list","type":"address[259]"},{"internalType":"uint256[259]","name":"_values","type":"uint256[259]"}],"name":"flashback","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inactive_burn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurning","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTXtime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"macroContraction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"manager_burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"min_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimum_for_airdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onepct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"passlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"remPasslist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_airdropAddress","type":"address"}],"name":"setAirdropAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPasslist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapFactory","type":"address"}],"name":"setUniswapFactory","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapRouter","type":"address"}],"name":"setUniswapRouter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showAirdropThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"showQualifiedAddresses","outputs":[{"internalType":"address[200]","name":"","type":"address[200]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swapTokensForEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","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":"treasury_pct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"turn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tx_n","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswap_factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswap_router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_airdropFees","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052601b60809081527f416c676f726974686d6963204d6f6e657461727920506f6c696379000000000060a0526002906200003e908262000661565b50604080518082019091526003808252620414d560ec1b60208301529062000067908262000661565b5060096004553480156200007a57600080fd5b5060405162003b3b38038062003b3b8339810160408190526200009d916200072d565b3380620000c457604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000cf816200056c565b506000600454600a620000e3919062000871565b620000ef908562000886565b60018054336001600160a01b0319909116811790915560ee8054610100600160a81b03191661010083021790556000908152600760209081526040808320849055600982528083204290819055600b8352818420819055600a808452828520919091556008909252909120805460ff19169055600e82905560045491925062000179919062000871565b62000185908462000886565b6006556004546200019890600a62000871565b620001a4908362000886565b600581905560eb5560065460ec5560ea805460ff1990811660019081179092556000600f8190554260e955600c8054909216909217905560ee805460ff60a81b1916600160a81b17905560108190556004546200020390600a62000871565b90506127106200021582603262000886565b620002219190620008a0565b6011556127106200023482603262000886565b620002409190620008a0565b6012556127106200025382606462000886565b6200025f9190620008a0565b601355612710620002738261012c62000886565b6200027f9190620008a0565b6014556127106200029282609662000886565b6200029e9190620008a0565b60e455612710620002b2826101f462000886565b620002be9190620008a0565b60e555612710620002d28261138862000886565b620002de9190620008a0565b60e655612710620002f182601962000886565b620002fd9190620008a0565b60e7556127106200031082606462000886565b6200031c9190620008a0565b60e3556004546200032f90600a62000871565b6200033c90608562000886565b60ed55600160de819055600060df5560e8805460ff19168217905554601580546001600160a01b039092166001600160a01b0319928316811790915560dd80548316909117905560e08054737a250d5630b4cf539739df2c5dacb4c659f2488d9216821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620003de573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004049190620008c3565b60e180546001600160a01b0319166001600160a01b0392831690811790915560e054604080516315ab88c960e31b8152905160009463c9c6539693309391169163ad5c4648916004808201926020929091908290030181865afa15801562000470573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004969190620008c3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620004e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200050a9190620008c3565b60e280546001600160a01b0319166001600160a01b03831617905560405184815290915033906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050505050620008ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005e757607f821691505b6020821081036200060857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200065c57600081815260208120601f850160051c81016020861015620006375750805b601f850160051c820191505b81811015620006585782815560010162000643565b5050505b505050565b81516001600160401b038111156200067d576200067d620005bc565b62000695816200068e8454620005d2565b846200060e565b602080601f831160018114620006cd5760008415620006b45750858301515b600019600386901b1c1916600185901b17855562000658565b600085815260208120601f198616915b82811015620006fe57888601518255948401946001909101908401620006dd565b50858210156200071d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000806000606084860312156200074357600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007b35781600019048211156200079757620007976200075c565b80851615620007a557918102915b93841c939080029062000777565b509250929050565b600082620007cc575060016200086b565b81620007db575060006200086b565b8160018114620007f45760028114620007ff576200081f565b60019150506200086b565b60ff8411156200081357620008136200075c565b50506001821b6200086b565b5060208310610133831016604e8410600b841016171562000844575081810a6200086b565b62000850838362000772565b80600019048211156200086757620008676200075c565b0290505b92915050565b60006200087f8383620007bb565b9392505050565b80820281158282048414176200086b576200086b6200075c565b600082620008be57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215620008d657600080fd5b81516001600160a01b03811681146200087f57600080fd5b61323d80620008fe6000396000f3fe60806040526004361061036f5760003560e01c80638b299903116101c6578063bea9849e116100f7578063dd62ed3e11610095578063f1145f741161006f578063f1145f74146109b8578063f2fde38b146109ee578063f38cb16414610a0e578063fdb875b614610a2e57600080fd5b8063dd62ed3e1461093c578063e04b677f14610982578063e2f45605146109a257600080fd5b8063d5d9e45e116100d1578063d5d9e45e146108a0578063d5f18f59146108b6578063d705cf85146108e6578063d91ed42c1461090657600080fd5b8063bea9849e14610856578063bed9985014610876578063ca0dcf161461088b57600080fd5b8063a9059cbb11610164578063afa4f3b21161013e578063afa4f3b2146107c0578063b28805f4146107e0578063b98d1fe214610800578063bd9e0c4c1461082057600080fd5b8063a9059cbb1461076a578063aa6b05e31461078a578063ab0eda9e146107a057600080fd5b806395d89b41116101a057806395d89b411461071357806397ddd1ed14610728578063a2d53f111461073e578063a683c6c41461075457600080fd5b80638b299903146106bf5780638da5cb5b146106d55780639052be61146106f357600080fd5b8063627a91d9116102a0578063715018a61161023e5780637a1d5232116102185780637a1d52321461065957806381b3fa071461066f57806384413b65146106895780638a333b50146106a957600080fd5b8063715018a61461060f57806371b9b92014610624578063751039fc1461064457600080fd5b8063695d3a921161027a578063695d3a92146105665780636db79437146105885780636f36258b146105aa57806370a08231146105e257600080fd5b8063627a91d91461050e578063644d53731461053b578063680df7891461055057600080fd5b806323b872dd1161030d5780633bbfe015116102e75780633bbfe015146104b35780633c775b08146104c95780635668af1a146104df5780635b7c8210146104f457600080fd5b806323b872dd14610465578063313ce56714610485578063333082811461049b57600080fd5b806313a0e2d61161034957806313a0e2d6146103f657806316eee3ff1461041657806318160ddd1461043a5780631b20768d1461044f57600080fd5b806306fdde031461037b57806307616494146103a6578063095ea7b3146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a4e565b60405161039d9190612cd1565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612d34565b610adc565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f1366004612d51565b610d89565b34801561040257600080fd5b506103c6610411366004612d51565b610da1565b34801561042257600080fd5b5061042c60105481565b60405190815260200161039d565b34801561044657600080fd5b50600e5461042c565b34801561045b57600080fd5b5061042c60e45481565b34801561047157600080fd5b506103c6610480366004612d7d565b610e6b565b34801561049157600080fd5b5061042c60045481565b3480156104a757600080fd5b5060ea5460ff166103c6565b3480156104bf57600080fd5b5061042c60e35481565b3480156104d557600080fd5b5061042c60e55481565b3480156104eb57600080fd5b5060e75461042c565b34801561050057600080fd5b50600c546103c69060ff1681565b34801561051a57600080fd5b5061042c610529366004612d34565b60096020526000908152604090205481565b34801561054757600080fd5b5060e95461042c565b34801561055c57600080fd5b5061042c60e65481565b34801561057257600080fd5b5061057b610ebe565b60405161039d9190612dbe565b34801561059457600080fd5b506105a86105a3366004612df9565b610f04565b005b3480156105b657600080fd5b5060dd546105ca906001600160a01b031681565b6040516001600160a01b03909116815260200161039d565b3480156105ee57600080fd5b5061042c6105fd366004612d34565b60076020526000908152604090205481565b34801561061b57600080fd5b506105a8610f62565b34801561063057600080fd5b506103c661063f366004612d34565b610f76565b34801561065057600080fd5b506105a8611014565b34801561066557600080fd5b5061042c60145481565b34801561067b57600080fd5b5060e8546103c69060ff1681565b34801561069557600080fd5b506001546105ca906001600160a01b031681565b3480156106b557600080fd5b5061042c60055481565b3480156106cb57600080fd5b5061042c600f5481565b3480156106e157600080fd5b506000546001600160a01b03166105ca565b3480156106ff57600080fd5b5060e0546105ca906001600160a01b031681565b34801561071f57600080fd5b5061039061102b565b34801561073457600080fd5b5061042c60065481565b34801561074a57600080fd5b5061042c60df5481565b34801561076057600080fd5b5061042c60135481565b34801561077657600080fd5b506103c6610785366004612d51565b611038565b34801561079657600080fd5b5061042c60e75481565b3480156107ac57600080fd5b506103c66107bb366004612d34565b611051565b3480156107cc57600080fd5b506105a86107db366004612e1b565b61110c565b3480156107ec57600080fd5b506105a86107fb366004612e1b565b611132565b34801561080c57600080fd5b5060e1546105ca906001600160a01b031681565b34801561082c57600080fd5b5061042c61083b366004612d34565b6001600160a01b031660009081526009602052604090205490565b34801561086257600080fd5b506103c6610871366004612d34565b611298565b34801561088257600080fd5b5060125461042c565b34801561089757600080fd5b5060115461042c565b3480156108ac57600080fd5b5061042c60de5481565b3480156108c257600080fd5b506103c66108d1366004612d34565b60086020526000908152604090205460ff1681565b3480156108f257600080fd5b506103c6610901366004612d34565b61130a565b34801561091257600080fd5b5061042c610921366004612d34565b6001600160a01b03166000908152600b602052604090205490565b34801561094857600080fd5b5061042c610957366004612e34565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561098e57600080fd5b506103c661099d366004612d34565b6114f8565b3480156109ae57600080fd5b5061042c60ed5481565b3480156109c457600080fd5b5061042c6109d3366004612d34565b6001600160a01b03166000908152600a602052604090205490565b3480156109fa57600080fd5b506105a8610a09366004612d34565b61156a565b348015610a1a57600080fd5b506103c6610a29366004612ea5565b6115a8565b348015610a3a57600080fd5b506103c6610a49366004612d34565b6117ff565b60028054610a5b90612f60565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8790612f60565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b505050505081565b60006001600160a01b038216610b0d5760405162461bcd60e51b8152600401610b0490612f9a565b60405180910390fd5b813b15610b975760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a401610b04565b6001546000906001600160a01b0390811690841603610cad576001600160a01b038316600090815260096020526040902054610bd6906203f480612fd9565b4211610c5a5760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662037206461797360c81b608482015260a401610b04565b6001600160a01b03831660009081526007602052604090205460e654610c809190611899565b9050610c8c83826118be565b506001600160a01b0383166000908152600960205260409020429055610d80565b6001600160a01b0383166000908152600b6020526040902054610cd3906203f480612fd9565b421115610d2d576001600160a01b03831660009081526007602052604090205460e654610d009190611899565b9050610d0c83826118be565b506001600160a01b0383166000908152600b60205260409020429055610d80565b6001600160a01b0383166000908152600a6020526040902054610d53906207e900612fd9565b421115610d80576001600160a01b038316600090815260076020526040902054610d7e9084906118be565b505b50600192915050565b600033610d978185856118e6565b9150505b92915050565b6000610dab61194f565b6001600160a01b038316610dd15760405162461bcd60e51b8152600401610b0490612f9a565b33610dee5760405162461bcd60e51b8152600401610b0490612f9a565b81600e6000828254610e009190612fec565b90915550506001600160a01b03831660009081526007602052604081208054849290610e2d908490612fec565b90915550506040518281526000906001600160a01b038516906000805160206131e8833981519152906020015b60405180910390a350600192915050565b6001600160a01b0383166000908152600d60209081526040808320338452909152812080548391908390610ea0908490612fec565b90915550610eb1905084848461197c565b50600190505b9392505050565b610ec6612cb2565b604080516119008101918290529060159060c89082845b81546001600160a01b03168152600190910190602001808311610edd575050505050905090565b610f0c61194f565b612710600454600a610f1e91906130e5565b610f2890846130f1565b610f329190613108565b60145560045461271090610f4790600a6130e5565b610f5190836130f1565b610f5b9190613108565b6013555050565b610f6a61194f565b610f74600061220e565b565b60006001600160a01b038216610f9e5760405162461bcd60e51b8152600401610b0490612f9a565b6000546001600160a01b03838116911614610feb5760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b04565b506001600160a01b03166000908152600860205260409020805460ff1916600190811790915590565b61101c61194f565b60ee805460ff60a81b19169055565b60038054610a5b90612f60565b60003361104681858561197c565b506001949350505050565b600061105b61194f565b336110785760405162461bcd60e51b8152600401610b0490612f9a565b6001600160a01b03821661109e5760405162461bcd60e51b8152600401610b0490612f9a565b6001546001600160a01b031633146110e95760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610b04565b50600180546001600160a01b0383166001600160a01b0319909116178155919050565b61111461194f565b60045461112290600a6130e5565b61112c90826130f1565b60ed5550565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106111675761116761312a565b6001600160a01b0392831660209182029290920181019190915260e054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e49190613140565b816001815181106111f7576111f761312a565b6001600160a01b03928316602091820292909201015260e05461121d91309116846118e6565b5060e05460ee5460405163791ac94760e01b81526001600160a01b039283169263791ac94792611262928792600092889261010090910490911690429060040161315d565b600060405180830381600087803b15801561127c57600080fd5b505af1158015611290573d6000803e3d6000fd5b505050505050565b60006112a261194f565b336112bf5760405162461bcd60e51b8152600401610b0490612f9a565b6001600160a01b0382166112e55760405162461bcd60e51b8152600401610b0490612f9a565b5060e080546001600160a01b0383166001600160a01b03199091161790556001919050565b60006001600160a01b0382166113325760405162461bcd60e51b8152600401610b0490612f9a565b813b6113805760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e0000000000000000006044820152606401610b04565b60e1546001600160a01b03908116908316036113d95760405162461bcd60e51b8152602060048201526018602482015277496e76616c696420636f6e7472616374206164647265737360401b6044820152606401610b04565b60e0546001600160a01b03908116908316036114325760405162461bcd60e51b8152602060048201526018602482015277496e76616c696420636f6e7472616374206164647265737360401b6044820152606401610b04565b6001600160a01b0382166000908152600b6020526040812054611458906203f480612fd9565b421115611485576001600160a01b03831660009081526007602052604090205460e654610d009190611899565b6001600160a01b0383166000908152600a60205260409020546114ab906207e900612fd9565b421115610d80576001600160a01b0383166000908152600760205260409020546114d69084906118be565b5050506001600160a01b03166000908152600a60205260409020429055600190565b600061150261194f565b3361151f5760405162461bcd60e51b8152600401610b0490612f9a565b6001600160a01b0382166115455760405162461bcd60e51b8152600401610b0490612f9a565b5060e180546001600160a01b0383166001600160a01b03199091161790556001919050565b61157261194f565b6001600160a01b03811661159c57604051631e4fbdf760e01b815260006004820152602401610b04565b6115a58161220e565b50565b60006115b261194f565b336115cf5760405162461bcd60e51b8152600401610b0490612f9a565b60005b6101038110156117f5576000848261010381106115f1576115f161312a565b60200201516001600160a01b0316146117e357828161010381106116175761161761312a565b602002015160076000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116509190612fec565b909155508390508161010381106116695761166961312a565b602002015160076000868461010381106116855761168561312a565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116b99190612fd9565b9091555042905060096000868461010381106116d7576116d761312a565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600b6000868461010381106117185761171861312a565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600a6000868461010381106117595761175961312a565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838161010381106117955761179561312a565b60200201516001600160a01b0316336000805160206131e8833981519152858461010381106117c6576117c661312a565b60200201516040516117da91815260200190565b60405180910390a35b806117ed816131ce565b9150506115d2565b5060019392505050565b60006001600160a01b0382166118275760405162461bcd60e51b8152600401610b0490612f9a565b6000546001600160a01b038381169116146118745760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b04565b506001600160a01b03166000908152600860205260409020805460ff19169055600190565b6000600454600a6118aa91906130e5565b6118b483856130f1565b610eb79190613108565b60006001600160a01b038316610dee5760405162461bcd60e51b8152600401610b0490612f9a565b6001600160a01b038381166000818152600d6020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000546001600160a01b03163314610f745760405163118cdaa760e01b8152336004820152602401610b04565b6000816000036119ce5760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f77656400006044820152606401610b04565b6001600160a01b038316611a165760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610b04565b60ee54600160a81b900460ff1615611bdd576001546001600160a01b03858116911614801590611a5457506001546001600160a01b03848116911614155b15611bdd5760ee5460ff16158015611a79575060e2546001600160a01b038581169116145b8015611a9357506000546001600160a01b03848116911614155b15611b1d57600454611aa690600a6130e5565b611ab2906105356130f1565b6001600160a01b038416600090815260076020526040902054611ad59084612fd9565b1115611b185760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b6044820152606401610b04565b611bdd565b60ee5460ff16158015611b3d575060e2546001600160a01b038481169116145b8015611b5757506000546001600160a01b03858116911614155b15611bdd57600454611b6a90600a6130e5565b611b76906105356130f1565b6001600160a01b038516600090815260076020526040902054611b999084612fd9565b1115611bdd5760405162461bcd60e51b81526020600482015260136024820152721b585e080c89481cd95b1b08185b1b1bddd959606a1b6044820152606401610b04565b60ee5460ff1615611bfa57611bf384848461225e565b9050610eb7565b3060009081526007602052604090205460ed5481108015908190611c21575060ee5460ff16155b8015611c3a575060e2546001600160a01b038681169116145b8015611c4f57506001600160a01b0386163014155b8015611c6457506001600160a01b0385163014155b8015611c7b575060e2546001600160a01b03163314155b15611ca45760ee805460ff1916600117905560ed54611c9990611132565b60ee805460ff191690555b60e1546001600160a01b038781169116148015611cce575060e0546001600160a01b038681169116145b80611cfe575060e0546001600160a01b038781169116148015611cfe575060e1546001600160a01b038681169116145b80611d2157506001600160a01b03861660009081526008602052604090205460ff165b15611d3757611d3186868661225e565b5061218e565b60e954611d4590603c612fd9565b421115611e4257600554600e5410611dec57600c805460ff19166001179055611d6c6122ef565b5060e85460ff16611de7576000600554600e54611d899190612fec565b90506000611d988260026130f1565b6001546001600160a01b0316600090815260076020526040902054611dbd9190612fec565b1115611de557600154611de3906001600160a01b0316611dde8360026130f1565b6118be565b505b505b611e42565b600654600e5411611e4257600c805460ff19169055611e096122ef565b506000600e54600654611e1c9190612fec565b600154909150611e3f906001600160a01b0316611e3a8360026130f1565b612421565b50505b60de54600003611e5657611e546124b9565b505b600c5460ff16156120f5576000611e6f85601254611899565b90506000611e7f86601354611899565b90506000611e8f87601454611899565b905060008183611e9f868b612fec565b611ea99190612fec565b611eb39190612fec565b9050611ebf8a856118be565b506001600160a01b038a1660009081526007602052604081208054839290611ee8908490612fec565b90915550506001600160a01b03891660009081526007602052604081208054839290611f15908490612fd9565b92505081905550886001600160a01b03168a6001600160a01b03166000805160206131e883398151915283604051611f4f91815260200190565b60405180910390a36000611f67600e5460e454611899565b306000908152600760205260409020549091508110612000576001600160a01b038b1660009081526007602052604081208054859290611fa8908490612fec565b90915550503060009081526007602052604081208054859290611fcc908490612fd9565b909155505060405183815230906001600160a01b038d16906000805160206131e88339815191529060200160405180910390a35b6000612010600e5460e554611899565b6001546001600160a01b031660009081526007602052604090205490915081106120c4576001600160a01b038c166000908152600760205260408120805487929061205c908490612fec565b90915550506001546001600160a01b03166000908152600760205260408120805487929061208b908490612fd9565b90915550506001546040518681526001600160a01b03918216918e16906000805160206131e88339815191529060200160405180910390a35b6001601060008282546120d79190612fd9565b909155506120e990508a328e8e61278c565b5050505050505061218e565b600c5460ff1661215257600061210d85601154611899565b9050600061211d86601354611899565b9050600061212d87601454611899565b905060008161213c848a612fec565b6121469190612fec565b9050611ebf3285612421565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b6044820152606401610b04565b505032600081815260096020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600a8552838620839055818652838620839055808652838620839055958552600b909352818420819055918352808320829055928252919020555060019392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260076020526040812080548391908390612288908490612fec565b90915550506001600160a01b038316600090815260076020526040812080548492906122b5908490612fd9565b92505081905550826001600160a01b0316846001600160a01b03166000805160206131e88339815191528460405161193d91815260200190565b60006001600f60008282546123049190612fd9565b9091555050600f54600114801561231e575060e85460ff16155b156123b2576000600454600a61233491906130e5565b90506127106123448260326130f1565b61234e9190613108565b60115561271061235f8260326130f1565b6123699190613108565b60115561271061237a8260646130f1565b6123849190613108565b6013556127106123968261012c6130f1565b6123a09190613108565b6014555060ea805460ff191660011790555b6002600f54101580156123c85750601c600f5411155b156123e8576123d56129da565b5060ea805460ff19166001179055612417565b601d600f54101580156123fe57506038600f5411155b156124175761240b612a17565b5060ea805460ff191690555b504260e955600190565b60006001600160a01b0383166124495760405162461bcd60e51b8152600401610b0490612f9a565b81600e600082825461245b9190612fd9565b90915550506001600160a01b03831660009081526007602052604081208054849290612488908490612fd9565b90915550506040518281526001600160a01b038416906000906000805160206131e883398151915290602001610e5a565b600c5460009060ff161561256157600a6012546124d69190613108565b601260008282546124e79190612fd9565b90915550506011546124fb90600a90613108565b6011600082825461250c9190612fd9565b909155505060135461252090600a90613108565b601360008282546125319190612fd9565b909155505060145461254590600a90613108565b601460008282546125569190612fd9565b909155506125f69050565b600a6012546125709190613108565b601260008282546125819190612fec565b909155505060115461259590600a90613108565b601160008282546125a69190612fd9565b90915550506013546125ba90600a90613108565b601360008282546125cb9190612fec565b90915550506014546125df90600a90613108565b601460008282546125f09190612fec565b90915550505b60e3546126049060066130f1565b60125411156126325760e35461261b9060026130f1565b6012600082825461262c9190612fec565b90915550505b60e3546126409060066130f1565b601154111561266e5760e3546126579060026130f1565b601160008282546126689190612fec565b90915550505b60e35461267c9060036130f1565b601354111561269f5760e354601360008282546126999190612fec565b90915550505b60e3546126ad9060036130f1565b60145411156126d05760e354601460008282546126ca9190612fec565b90915550505b60e35460125410806126e5575060e354601154105b806126ff5750600260e3546126fa9190613108565b601354105b15612786576000600454600a61271591906130e5565b90506127106127258260326130f1565b61272f9190613108565b6011556127106127408260326130f1565b61274a9190613108565b60125561271061275b8260646130f1565b6127659190613108565b6013556127106127778261012c6130f1565b6127819190613108565b601455505b50600190565b6001546001600160a01b031660009081526007602052604081205460e7546127b49190611899565b60df81905585108015906127d057506001600160a01b03841615155b1561104657833b6127fb5760dd80546001600160a01b0319166001600160a01b03861617905561283e565b823b156128225760dd80546001600160a01b0319166001600160a01b03841617905561283e565b60dd80546001600160a01b0319166001600160a01b0385161790555b60e85460ff161561293a5760c760de5410156128bc5760dd5460de546001600160a01b039091169060159060c881106128795761287961312a565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160de60008282546128b19190612fd9565b909155506110469050565b60de5460c7036129355760e8805460ff1916905560dd5460de546001600160a01b039091169060159060c881106128f5576128f561312a565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de55612921612a78565b50600160de60008282546128b19190612fd9565b611046565b60c760de5410156129735761294d612a78565b5060dd5460de546001600160a01b039091169060159060c881106128795761287961312a565b60de5460c70361104657612985612a78565b5060dd5460de546001600160a01b039091169060159060c881106129ab576129ab61312a565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de55506001949350505050565b600c5460009060ff16156129ff5760026006546129f79190613108565b600655612786565b6002600554612a0e9190613108565b60055550600190565b600c5460009060ff1615612a3b57600654612a339060026130f1565b600655612a4d565b600554612a499060026130f1565b6005555b600f546038036127865760eb5460055560ec546006556000600f5560ea805460ff1916905550600190565b6001546001600160a01b031660009081526007602052604081205460e3548291612aa191611899565b6001546001600160a01b0316600090815260076020526040812054919250908210612af4576001546001600160a01b0316600090815260076020526040902054612aed9060fa90613108565b9050612b71565b612aff8260026130f1565b6001546001600160a01b03166000908152600760205260409020541115612b47576001546001600160a01b0316600090815260076020526040902054612aed9060b490613108565b6001546001600160a01b0316600090815260076020526040902054612b6e9060dc90613108565b90505b6001546001600160a01b0316600090815260076020526040812054612b97908390612fec565b1115612ca9576001546001600160a01b031660009081526007602052604081208054839290612bc7908490612fec565b925050819055508060076000601560de5460c88110612be857612be861312a565b01546001600160a01b03168152602081019190915260400160009081208054909190612c15908490612fd9565b9091555050600180546001600160a01b0390811660009081526009602090815260408083204290819055855485168452600a835281842081905594549093168252600b9052205560de5460159060c88110612c7257612c7261312a565b01546001546040518381526001600160a01b0392831692909116906000805160206131e88339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b81811015612cfe57858101830151858201604001528201612ce2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115a557600080fd5b600060208284031215612d4657600080fd5b8135610eb781612d1f565b60008060408385031215612d6457600080fd5b8235612d6f81612d1f565b946020939093013593505050565b600080600060608486031215612d9257600080fd5b8335612d9d81612d1f565b92506020840135612dad81612d1f565b929592945050506040919091013590565b6119008101818360005b60c8811015612df05781516001600160a01b0316835260209283019290910190600101612dc8565b50505092915050565b60008060408385031215612e0c57600080fd5b50508035926020909101359150565b600060208284031215612e2d57600080fd5b5035919050565b60008060408385031215612e4757600080fd5b8235612e5281612d1f565b91506020830135612e6281612d1f565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612e9f57634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612eba57600080fd5b84601f850112612ec957600080fd5b612ed1612e6d565b80612060860187811115612ee457600080fd5b865b81811015612f07578035612ef981612d1f565b845260209384019301612ee6565b508195508761207f880112612f1b57600080fd5b612f23612e6d565b93870193925082915087841115612f3957600080fd5b5b83811015612f52578035835260209283019201612f3a565b508093505050509250929050565b600181811c90821680612f7457607f821691505b602082108103612f9457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d9b57610d9b612fc3565b81810381811115610d9b57610d9b612fc3565b600181600019825b8086111561303b5782820483111561302157613021612fc3565b8086161561302e57928202925b94851c9491800291613007565b50509250929050565b60008261305357506001610d9b565b8161306057506000610d9b565b816001811461307657600281146130805761309c565b6001915050610d9b565b60ff84111561309157613091612fc3565b50506001821b610d9b565b5060208310610133831016604e8410600b84101617156130bf575081810a610d9b565b6130c98383612fff565b80600019048211156130dd576130dd612fc3565b029392505050565b6000610eb78383613044565b8082028115828204841417610d9b57610d9b612fc3565b60008261312557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561315257600080fd5b8151610eb781612d1f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131ad5784516001600160a01b031683529383019391830191600101613188565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016131e0576131e0612fc3565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220560e74528be999cf01f454e0856e9b72f09d5b34f80ee8087cc816dbab66a74e64736f6c63430008140033000000000000000000000000000000000000000000000000000000000001046a0000000000000000000000000000000000000000000000000000000000001a0a000000000000000000000000000000000000000000000000000000000001046a
Deployed Bytecode
0x60806040526004361061036f5760003560e01c80638b299903116101c6578063bea9849e116100f7578063dd62ed3e11610095578063f1145f741161006f578063f1145f74146109b8578063f2fde38b146109ee578063f38cb16414610a0e578063fdb875b614610a2e57600080fd5b8063dd62ed3e1461093c578063e04b677f14610982578063e2f45605146109a257600080fd5b8063d5d9e45e116100d1578063d5d9e45e146108a0578063d5f18f59146108b6578063d705cf85146108e6578063d91ed42c1461090657600080fd5b8063bea9849e14610856578063bed9985014610876578063ca0dcf161461088b57600080fd5b8063a9059cbb11610164578063afa4f3b21161013e578063afa4f3b2146107c0578063b28805f4146107e0578063b98d1fe214610800578063bd9e0c4c1461082057600080fd5b8063a9059cbb1461076a578063aa6b05e31461078a578063ab0eda9e146107a057600080fd5b806395d89b41116101a057806395d89b411461071357806397ddd1ed14610728578063a2d53f111461073e578063a683c6c41461075457600080fd5b80638b299903146106bf5780638da5cb5b146106d55780639052be61146106f357600080fd5b8063627a91d9116102a0578063715018a61161023e5780637a1d5232116102185780637a1d52321461065957806381b3fa071461066f57806384413b65146106895780638a333b50146106a957600080fd5b8063715018a61461060f57806371b9b92014610624578063751039fc1461064457600080fd5b8063695d3a921161027a578063695d3a92146105665780636db79437146105885780636f36258b146105aa57806370a08231146105e257600080fd5b8063627a91d91461050e578063644d53731461053b578063680df7891461055057600080fd5b806323b872dd1161030d5780633bbfe015116102e75780633bbfe015146104b35780633c775b08146104c95780635668af1a146104df5780635b7c8210146104f457600080fd5b806323b872dd14610465578063313ce56714610485578063333082811461049b57600080fd5b806313a0e2d61161034957806313a0e2d6146103f657806316eee3ff1461041657806318160ddd1461043a5780631b20768d1461044f57600080fd5b806306fdde031461037b57806307616494146103a6578063095ea7b3146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a4e565b60405161039d9190612cd1565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612d34565b610adc565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f1366004612d51565b610d89565b34801561040257600080fd5b506103c6610411366004612d51565b610da1565b34801561042257600080fd5b5061042c60105481565b60405190815260200161039d565b34801561044657600080fd5b50600e5461042c565b34801561045b57600080fd5b5061042c60e45481565b34801561047157600080fd5b506103c6610480366004612d7d565b610e6b565b34801561049157600080fd5b5061042c60045481565b3480156104a757600080fd5b5060ea5460ff166103c6565b3480156104bf57600080fd5b5061042c60e35481565b3480156104d557600080fd5b5061042c60e55481565b3480156104eb57600080fd5b5060e75461042c565b34801561050057600080fd5b50600c546103c69060ff1681565b34801561051a57600080fd5b5061042c610529366004612d34565b60096020526000908152604090205481565b34801561054757600080fd5b5060e95461042c565b34801561055c57600080fd5b5061042c60e65481565b34801561057257600080fd5b5061057b610ebe565b60405161039d9190612dbe565b34801561059457600080fd5b506105a86105a3366004612df9565b610f04565b005b3480156105b657600080fd5b5060dd546105ca906001600160a01b031681565b6040516001600160a01b03909116815260200161039d565b3480156105ee57600080fd5b5061042c6105fd366004612d34565b60076020526000908152604090205481565b34801561061b57600080fd5b506105a8610f62565b34801561063057600080fd5b506103c661063f366004612d34565b610f76565b34801561065057600080fd5b506105a8611014565b34801561066557600080fd5b5061042c60145481565b34801561067b57600080fd5b5060e8546103c69060ff1681565b34801561069557600080fd5b506001546105ca906001600160a01b031681565b3480156106b557600080fd5b5061042c60055481565b3480156106cb57600080fd5b5061042c600f5481565b3480156106e157600080fd5b506000546001600160a01b03166105ca565b3480156106ff57600080fd5b5060e0546105ca906001600160a01b031681565b34801561071f57600080fd5b5061039061102b565b34801561073457600080fd5b5061042c60065481565b34801561074a57600080fd5b5061042c60df5481565b34801561076057600080fd5b5061042c60135481565b34801561077657600080fd5b506103c6610785366004612d51565b611038565b34801561079657600080fd5b5061042c60e75481565b3480156107ac57600080fd5b506103c66107bb366004612d34565b611051565b3480156107cc57600080fd5b506105a86107db366004612e1b565b61110c565b3480156107ec57600080fd5b506105a86107fb366004612e1b565b611132565b34801561080c57600080fd5b5060e1546105ca906001600160a01b031681565b34801561082c57600080fd5b5061042c61083b366004612d34565b6001600160a01b031660009081526009602052604090205490565b34801561086257600080fd5b506103c6610871366004612d34565b611298565b34801561088257600080fd5b5060125461042c565b34801561089757600080fd5b5060115461042c565b3480156108ac57600080fd5b5061042c60de5481565b3480156108c257600080fd5b506103c66108d1366004612d34565b60086020526000908152604090205460ff1681565b3480156108f257600080fd5b506103c6610901366004612d34565b61130a565b34801561091257600080fd5b5061042c610921366004612d34565b6001600160a01b03166000908152600b602052604090205490565b34801561094857600080fd5b5061042c610957366004612e34565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561098e57600080fd5b506103c661099d366004612d34565b6114f8565b3480156109ae57600080fd5b5061042c60ed5481565b3480156109c457600080fd5b5061042c6109d3366004612d34565b6001600160a01b03166000908152600a602052604090205490565b3480156109fa57600080fd5b506105a8610a09366004612d34565b61156a565b348015610a1a57600080fd5b506103c6610a29366004612ea5565b6115a8565b348015610a3a57600080fd5b506103c6610a49366004612d34565b6117ff565b60028054610a5b90612f60565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8790612f60565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b505050505081565b60006001600160a01b038216610b0d5760405162461bcd60e51b8152600401610b0490612f9a565b60405180910390fd5b813b15610b975760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a401610b04565b6001546000906001600160a01b0390811690841603610cad576001600160a01b038316600090815260096020526040902054610bd6906203f480612fd9565b4211610c5a5760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662037206461797360c81b608482015260a401610b04565b6001600160a01b03831660009081526007602052604090205460e654610c809190611899565b9050610c8c83826118be565b506001600160a01b0383166000908152600960205260409020429055610d80565b6001600160a01b0383166000908152600b6020526040902054610cd3906203f480612fd9565b421115610d2d576001600160a01b03831660009081526007602052604090205460e654610d009190611899565b9050610d0c83826118be565b506001600160a01b0383166000908152600b60205260409020429055610d80565b6001600160a01b0383166000908152600a6020526040902054610d53906207e900612fd9565b421115610d80576001600160a01b038316600090815260076020526040902054610d7e9084906118be565b505b50600192915050565b600033610d978185856118e6565b9150505b92915050565b6000610dab61194f565b6001600160a01b038316610dd15760405162461bcd60e51b8152600401610b0490612f9a565b33610dee5760405162461bcd60e51b8152600401610b0490612f9a565b81600e6000828254610e009190612fec565b90915550506001600160a01b03831660009081526007602052604081208054849290610e2d908490612fec565b90915550506040518281526000906001600160a01b038516906000805160206131e8833981519152906020015b60405180910390a350600192915050565b6001600160a01b0383166000908152600d60209081526040808320338452909152812080548391908390610ea0908490612fec565b90915550610eb1905084848461197c565b50600190505b9392505050565b610ec6612cb2565b604080516119008101918290529060159060c89082845b81546001600160a01b03168152600190910190602001808311610edd575050505050905090565b610f0c61194f565b612710600454600a610f1e91906130e5565b610f2890846130f1565b610f329190613108565b60145560045461271090610f4790600a6130e5565b610f5190836130f1565b610f5b9190613108565b6013555050565b610f6a61194f565b610f74600061220e565b565b60006001600160a01b038216610f9e5760405162461bcd60e51b8152600401610b0490612f9a565b6000546001600160a01b03838116911614610feb5760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b04565b506001600160a01b03166000908152600860205260409020805460ff1916600190811790915590565b61101c61194f565b60ee805460ff60a81b19169055565b60038054610a5b90612f60565b60003361104681858561197c565b506001949350505050565b600061105b61194f565b336110785760405162461bcd60e51b8152600401610b0490612f9a565b6001600160a01b03821661109e5760405162461bcd60e51b8152600401610b0490612f9a565b6001546001600160a01b031633146110e95760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610b04565b50600180546001600160a01b0383166001600160a01b0319909116178155919050565b61111461194f565b60045461112290600a6130e5565b61112c90826130f1565b60ed5550565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106111675761116761312a565b6001600160a01b0392831660209182029290920181019190915260e054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e49190613140565b816001815181106111f7576111f761312a565b6001600160a01b03928316602091820292909201015260e05461121d91309116846118e6565b5060e05460ee5460405163791ac94760e01b81526001600160a01b039283169263791ac94792611262928792600092889261010090910490911690429060040161315d565b600060405180830381600087803b15801561127c57600080fd5b505af1158015611290573d6000803e3d6000fd5b505050505050565b60006112a261194f565b336112bf5760405162461bcd60e51b8152600401610b0490612f9a565b6001600160a01b0382166112e55760405162461bcd60e51b8152600401610b0490612f9a565b5060e080546001600160a01b0383166001600160a01b03199091161790556001919050565b60006001600160a01b0382166113325760405162461bcd60e51b8152600401610b0490612f9a565b813b6113805760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e0000000000000000006044820152606401610b04565b60e1546001600160a01b03908116908316036113d95760405162461bcd60e51b8152602060048201526018602482015277496e76616c696420636f6e7472616374206164647265737360401b6044820152606401610b04565b60e0546001600160a01b03908116908316036114325760405162461bcd60e51b8152602060048201526018602482015277496e76616c696420636f6e7472616374206164647265737360401b6044820152606401610b04565b6001600160a01b0382166000908152600b6020526040812054611458906203f480612fd9565b421115611485576001600160a01b03831660009081526007602052604090205460e654610d009190611899565b6001600160a01b0383166000908152600a60205260409020546114ab906207e900612fd9565b421115610d80576001600160a01b0383166000908152600760205260409020546114d69084906118be565b5050506001600160a01b03166000908152600a60205260409020429055600190565b600061150261194f565b3361151f5760405162461bcd60e51b8152600401610b0490612f9a565b6001600160a01b0382166115455760405162461bcd60e51b8152600401610b0490612f9a565b5060e180546001600160a01b0383166001600160a01b03199091161790556001919050565b61157261194f565b6001600160a01b03811661159c57604051631e4fbdf760e01b815260006004820152602401610b04565b6115a58161220e565b50565b60006115b261194f565b336115cf5760405162461bcd60e51b8152600401610b0490612f9a565b60005b6101038110156117f5576000848261010381106115f1576115f161312a565b60200201516001600160a01b0316146117e357828161010381106116175761161761312a565b602002015160076000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116509190612fec565b909155508390508161010381106116695761166961312a565b602002015160076000868461010381106116855761168561312a565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116b99190612fd9565b9091555042905060096000868461010381106116d7576116d761312a565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600b6000868461010381106117185761171861312a565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600a6000868461010381106117595761175961312a565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838161010381106117955761179561312a565b60200201516001600160a01b0316336000805160206131e8833981519152858461010381106117c6576117c661312a565b60200201516040516117da91815260200190565b60405180910390a35b806117ed816131ce565b9150506115d2565b5060019392505050565b60006001600160a01b0382166118275760405162461bcd60e51b8152600401610b0490612f9a565b6000546001600160a01b038381169116146118745760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b04565b506001600160a01b03166000908152600860205260409020805460ff19169055600190565b6000600454600a6118aa91906130e5565b6118b483856130f1565b610eb79190613108565b60006001600160a01b038316610dee5760405162461bcd60e51b8152600401610b0490612f9a565b6001600160a01b038381166000818152600d6020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000546001600160a01b03163314610f745760405163118cdaa760e01b8152336004820152602401610b04565b6000816000036119ce5760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f77656400006044820152606401610b04565b6001600160a01b038316611a165760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610b04565b60ee54600160a81b900460ff1615611bdd576001546001600160a01b03858116911614801590611a5457506001546001600160a01b03848116911614155b15611bdd5760ee5460ff16158015611a79575060e2546001600160a01b038581169116145b8015611a9357506000546001600160a01b03848116911614155b15611b1d57600454611aa690600a6130e5565b611ab2906105356130f1565b6001600160a01b038416600090815260076020526040902054611ad59084612fd9565b1115611b185760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b6044820152606401610b04565b611bdd565b60ee5460ff16158015611b3d575060e2546001600160a01b038481169116145b8015611b5757506000546001600160a01b03858116911614155b15611bdd57600454611b6a90600a6130e5565b611b76906105356130f1565b6001600160a01b038516600090815260076020526040902054611b999084612fd9565b1115611bdd5760405162461bcd60e51b81526020600482015260136024820152721b585e080c89481cd95b1b08185b1b1bddd959606a1b6044820152606401610b04565b60ee5460ff1615611bfa57611bf384848461225e565b9050610eb7565b3060009081526007602052604090205460ed5481108015908190611c21575060ee5460ff16155b8015611c3a575060e2546001600160a01b038681169116145b8015611c4f57506001600160a01b0386163014155b8015611c6457506001600160a01b0385163014155b8015611c7b575060e2546001600160a01b03163314155b15611ca45760ee805460ff1916600117905560ed54611c9990611132565b60ee805460ff191690555b60e1546001600160a01b038781169116148015611cce575060e0546001600160a01b038681169116145b80611cfe575060e0546001600160a01b038781169116148015611cfe575060e1546001600160a01b038681169116145b80611d2157506001600160a01b03861660009081526008602052604090205460ff165b15611d3757611d3186868661225e565b5061218e565b60e954611d4590603c612fd9565b421115611e4257600554600e5410611dec57600c805460ff19166001179055611d6c6122ef565b5060e85460ff16611de7576000600554600e54611d899190612fec565b90506000611d988260026130f1565b6001546001600160a01b0316600090815260076020526040902054611dbd9190612fec565b1115611de557600154611de3906001600160a01b0316611dde8360026130f1565b6118be565b505b505b611e42565b600654600e5411611e4257600c805460ff19169055611e096122ef565b506000600e54600654611e1c9190612fec565b600154909150611e3f906001600160a01b0316611e3a8360026130f1565b612421565b50505b60de54600003611e5657611e546124b9565b505b600c5460ff16156120f5576000611e6f85601254611899565b90506000611e7f86601354611899565b90506000611e8f87601454611899565b905060008183611e9f868b612fec565b611ea99190612fec565b611eb39190612fec565b9050611ebf8a856118be565b506001600160a01b038a1660009081526007602052604081208054839290611ee8908490612fec565b90915550506001600160a01b03891660009081526007602052604081208054839290611f15908490612fd9565b92505081905550886001600160a01b03168a6001600160a01b03166000805160206131e883398151915283604051611f4f91815260200190565b60405180910390a36000611f67600e5460e454611899565b306000908152600760205260409020549091508110612000576001600160a01b038b1660009081526007602052604081208054859290611fa8908490612fec565b90915550503060009081526007602052604081208054859290611fcc908490612fd9565b909155505060405183815230906001600160a01b038d16906000805160206131e88339815191529060200160405180910390a35b6000612010600e5460e554611899565b6001546001600160a01b031660009081526007602052604090205490915081106120c4576001600160a01b038c166000908152600760205260408120805487929061205c908490612fec565b90915550506001546001600160a01b03166000908152600760205260408120805487929061208b908490612fd9565b90915550506001546040518681526001600160a01b03918216918e16906000805160206131e88339815191529060200160405180910390a35b6001601060008282546120d79190612fd9565b909155506120e990508a328e8e61278c565b5050505050505061218e565b600c5460ff1661215257600061210d85601154611899565b9050600061211d86601354611899565b9050600061212d87601454611899565b905060008161213c848a612fec565b6121469190612fec565b9050611ebf3285612421565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b6044820152606401610b04565b505032600081815260096020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600a8552838620839055818652838620839055808652838620839055958552600b909352818420819055918352808320829055928252919020555060019392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260076020526040812080548391908390612288908490612fec565b90915550506001600160a01b038316600090815260076020526040812080548492906122b5908490612fd9565b92505081905550826001600160a01b0316846001600160a01b03166000805160206131e88339815191528460405161193d91815260200190565b60006001600f60008282546123049190612fd9565b9091555050600f54600114801561231e575060e85460ff16155b156123b2576000600454600a61233491906130e5565b90506127106123448260326130f1565b61234e9190613108565b60115561271061235f8260326130f1565b6123699190613108565b60115561271061237a8260646130f1565b6123849190613108565b6013556127106123968261012c6130f1565b6123a09190613108565b6014555060ea805460ff191660011790555b6002600f54101580156123c85750601c600f5411155b156123e8576123d56129da565b5060ea805460ff19166001179055612417565b601d600f54101580156123fe57506038600f5411155b156124175761240b612a17565b5060ea805460ff191690555b504260e955600190565b60006001600160a01b0383166124495760405162461bcd60e51b8152600401610b0490612f9a565b81600e600082825461245b9190612fd9565b90915550506001600160a01b03831660009081526007602052604081208054849290612488908490612fd9565b90915550506040518281526001600160a01b038416906000906000805160206131e883398151915290602001610e5a565b600c5460009060ff161561256157600a6012546124d69190613108565b601260008282546124e79190612fd9565b90915550506011546124fb90600a90613108565b6011600082825461250c9190612fd9565b909155505060135461252090600a90613108565b601360008282546125319190612fd9565b909155505060145461254590600a90613108565b601460008282546125569190612fd9565b909155506125f69050565b600a6012546125709190613108565b601260008282546125819190612fec565b909155505060115461259590600a90613108565b601160008282546125a69190612fd9565b90915550506013546125ba90600a90613108565b601360008282546125cb9190612fec565b90915550506014546125df90600a90613108565b601460008282546125f09190612fec565b90915550505b60e3546126049060066130f1565b60125411156126325760e35461261b9060026130f1565b6012600082825461262c9190612fec565b90915550505b60e3546126409060066130f1565b601154111561266e5760e3546126579060026130f1565b601160008282546126689190612fec565b90915550505b60e35461267c9060036130f1565b601354111561269f5760e354601360008282546126999190612fec565b90915550505b60e3546126ad9060036130f1565b60145411156126d05760e354601460008282546126ca9190612fec565b90915550505b60e35460125410806126e5575060e354601154105b806126ff5750600260e3546126fa9190613108565b601354105b15612786576000600454600a61271591906130e5565b90506127106127258260326130f1565b61272f9190613108565b6011556127106127408260326130f1565b61274a9190613108565b60125561271061275b8260646130f1565b6127659190613108565b6013556127106127778261012c6130f1565b6127819190613108565b601455505b50600190565b6001546001600160a01b031660009081526007602052604081205460e7546127b49190611899565b60df81905585108015906127d057506001600160a01b03841615155b1561104657833b6127fb5760dd80546001600160a01b0319166001600160a01b03861617905561283e565b823b156128225760dd80546001600160a01b0319166001600160a01b03841617905561283e565b60dd80546001600160a01b0319166001600160a01b0385161790555b60e85460ff161561293a5760c760de5410156128bc5760dd5460de546001600160a01b039091169060159060c881106128795761287961312a565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160de60008282546128b19190612fd9565b909155506110469050565b60de5460c7036129355760e8805460ff1916905560dd5460de546001600160a01b039091169060159060c881106128f5576128f561312a565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de55612921612a78565b50600160de60008282546128b19190612fd9565b611046565b60c760de5410156129735761294d612a78565b5060dd5460de546001600160a01b039091169060159060c881106128795761287961312a565b60de5460c70361104657612985612a78565b5060dd5460de546001600160a01b039091169060159060c881106129ab576129ab61312a565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de55506001949350505050565b600c5460009060ff16156129ff5760026006546129f79190613108565b600655612786565b6002600554612a0e9190613108565b60055550600190565b600c5460009060ff1615612a3b57600654612a339060026130f1565b600655612a4d565b600554612a499060026130f1565b6005555b600f546038036127865760eb5460055560ec546006556000600f5560ea805460ff1916905550600190565b6001546001600160a01b031660009081526007602052604081205460e3548291612aa191611899565b6001546001600160a01b0316600090815260076020526040812054919250908210612af4576001546001600160a01b0316600090815260076020526040902054612aed9060fa90613108565b9050612b71565b612aff8260026130f1565b6001546001600160a01b03166000908152600760205260409020541115612b47576001546001600160a01b0316600090815260076020526040902054612aed9060b490613108565b6001546001600160a01b0316600090815260076020526040902054612b6e9060dc90613108565b90505b6001546001600160a01b0316600090815260076020526040812054612b97908390612fec565b1115612ca9576001546001600160a01b031660009081526007602052604081208054839290612bc7908490612fec565b925050819055508060076000601560de5460c88110612be857612be861312a565b01546001600160a01b03168152602081019190915260400160009081208054909190612c15908490612fd9565b9091555050600180546001600160a01b0390811660009081526009602090815260408083204290819055855485168452600a835281842081905594549093168252600b9052205560de5460159060c88110612c7257612c7261312a565b01546001546040518381526001600160a01b0392831692909116906000805160206131e88339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b81811015612cfe57858101830151858201604001528201612ce2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115a557600080fd5b600060208284031215612d4657600080fd5b8135610eb781612d1f565b60008060408385031215612d6457600080fd5b8235612d6f81612d1f565b946020939093013593505050565b600080600060608486031215612d9257600080fd5b8335612d9d81612d1f565b92506020840135612dad81612d1f565b929592945050506040919091013590565b6119008101818360005b60c8811015612df05781516001600160a01b0316835260209283019290910190600101612dc8565b50505092915050565b60008060408385031215612e0c57600080fd5b50508035926020909101359150565b600060208284031215612e2d57600080fd5b5035919050565b60008060408385031215612e4757600080fd5b8235612e5281612d1f565b91506020830135612e6281612d1f565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612e9f57634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612eba57600080fd5b84601f850112612ec957600080fd5b612ed1612e6d565b80612060860187811115612ee457600080fd5b865b81811015612f07578035612ef981612d1f565b845260209384019301612ee6565b508195508761207f880112612f1b57600080fd5b612f23612e6d565b93870193925082915087841115612f3957600080fd5b5b83811015612f52578035835260209283019201612f3a565b508093505050509250929050565b600181811c90821680612f7457607f821691505b602082108103612f9457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d9b57610d9b612fc3565b81810381811115610d9b57610d9b612fc3565b600181600019825b8086111561303b5782820483111561302157613021612fc3565b8086161561302e57928202925b94851c9491800291613007565b50509250929050565b60008261305357506001610d9b565b8161306057506000610d9b565b816001811461307657600281146130805761309c565b6001915050610d9b565b60ff84111561309157613091612fc3565b50506001821b610d9b565b5060208310610133831016604e8410600b84101617156130bf575081810a610d9b565b6130c98383612fff565b80600019048211156130dd576130dd612fc3565b029392505050565b6000610eb78383613044565b8082028115828204841417610d9b57610d9b612fc3565b60008261312557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561315257600080fd5b8151610eb781612d1f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131ad5784516001600160a01b031683529383019391830191600101613188565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016131e0576131e0612fc3565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220560e74528be999cf01f454e0856e9b72f09d5b34f80ee8087cc816dbab66a74e64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000001046a0000000000000000000000000000000000000000000000000000000000001a0a000000000000000000000000000000000000000000000000000000000001046a
-----Decoded View---------------
Arg [0] : _supply (uint256): 66666
Arg [1] : _min_supply (uint256): 6666
Arg [2] : _max_supply (uint256): 66666
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000001046a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001a0a
Arg [2] : 000000000000000000000000000000000000000000000000000000000001046a
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.