ERC-20
Overview
Max Total Supply
31,679.882246871538310834 COPIA
Holders
391
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
34.863603715020030645 COPIAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
COPIA
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 2024-09-30 */ /* Website: https://copia.gold/ Telegram: https://t.me/CopiaEth Twitter: https://x.com/copiaeth/ */ // 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( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); } contract COPIA is IERC20, Ownable { IUniswapV2Router02 public immutable UNISWAP_ROUTERV2 = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); string public name = "Copia Defi"; string public symbol = "COPIA"; bool public isBurning; mapping(address => uint256) public balanceOf; mapping(address => uint256) public lastTXtime; mapping(address => uint256) private lastLT_TXtime; mapping(address => uint256) private lastST_TXtime; mapping(address => mapping(address => uint256)) private allowances; address public airdropAddress; address[200] private airdropEligibleAddresses; address public UniswapV2pair; address public airdrop_address_toList; address private treasuryAddress; 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; uint256 public airdropAddressCount; uint256 public minimum_for_airdrop; uint256 public onepct; uint256 public airdropLimit; uint256 public inactive_burn; uint256 public airdrop_threshold; uint256 public decimals = 18; uint256 public max_supply; uint256 public min_supply; uint256 private last_turnTime; uint256 private init_ceiling; uint256 private initFloor; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool private limitsEnabled; bool public firstrun; bool private swapping; bool private macro_contraction; constructor() Ownable(msg.sender) { uint256 init_supply = 33333 * 10**decimals; min_supply = (122 * 10**decimals) / 10; max_supply = 66666 * 10**decimals; airdropAddress = msg.sender; treasuryAddress = 0x10be2872986f69551c3c6e371876D58E6687f43C; balanceOf[msg.sender] = init_supply; lastTXtime[msg.sender] = block.timestamp; lastST_TXtime[msg.sender] = block.timestamp; lastLT_TXtime[msg.sender] = block.timestamp; _totalSupply = init_supply; 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; // 0.5% burning, minting mint_pct = (50 * deciCalc) / 10000; burn_pct = (50 * deciCalc) / 10000; airdrop_pct = (100 * deciCalc) / 10000; // 1% for airdrops treasury_pct = (250 * deciCalc) / 10000; // 2.5% fee airdropLimit = (500 * deciCalc) / 10000; inactive_burn = (5000 * deciCalc) / 10000; airdrop_threshold = (25 * deciCalc) / 10000; onepct = (100 * deciCalc) / 10000; swapTokensAtAmount = (_totalSupply * 9) / 10000; maxWallet = (_totalSupply * 2) / 100; airdropAddressCount = 1; minimum_for_airdrop = 0; firstrun = true; airdropEligibleAddresses[0] = airdropAddress; airdrop_address_toList = airdropAddress; address _pair = IUniswapV2Factory(UNISWAP_ROUTERV2.factory()).createPair( address(this), UNISWAP_ROUTERV2.WETH() ); UniswapV2pair = _pair; emit Transfer(address(0), msg.sender, init_supply); } function updateFees(uint256 _treasuryFee) external onlyOwner { treasury_pct = (_treasuryFee * 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 airdropEligibleAddresses; } 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 = (250 * 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[airdropEligibleAddresses[airdropAddressCount]] += split; lastTXtime[airdropAddress] = block.timestamp; lastLT_TXtime[airdropAddress] = block.timestamp; lastST_TXtime[airdropAddress] = block.timestamp; emit Transfer( airdropAddress, airdropEligibleAddresses[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 = (250 * 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) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function burnInactiveAddress(address _address) external returns (bool) { require(_address != address(0), "Invalid address"); require( !isContract(_address), "Cannot burn contract tokens" ); 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 3 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] + 259200) { _burn(_address, balanceOf[_address]); } } return true; } function burnInactiveContract(address _address) external returns (bool) { require(_address != address(0), "Invalid address"); require(isContract(_address), "Not a contract address."); require(_address != address(UniswapV2pair), "Cannot burn pair tokens"); 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] + 259200) { _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 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 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) { airdropEligibleAddresses[ airdropAddressCount ] = airdrop_address_toList; airdropAddressCount += 1; } else if (airdropAddressCount == 199) { firstrun = false; airdropEligibleAddresses[ airdropAddressCount ] = airdrop_address_toList; airdropAddressCount = 0; _airdrop(); airdropAddressCount += 1; } } else { if (airdropAddressCount < 199) { _airdrop(); airdropEligibleAddresses[ airdropAddressCount ] = airdrop_address_toList; airdropAddressCount += 1; } else if (airdropAddressCount == 199) { _airdrop(); airdropEligibleAddresses[ 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 && !swapping && _from == UniswapV2pair) { require( _value + balanceOf[_to] <= maxWallet, "max 2% buy allowed" ); } } if (swapping) { return _normalTransfer(_from, _to, _value); } uint256 contractTokenBalance = balanceOf[address(this)]; bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && _to == UniswapV2pair && _from != address(this) && _to != address(this) && msg.sender != UniswapV2pair ) { swapping = true; swapBack(); swapping = false; } 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); 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); 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 swapBack() private { uint256 contractBalance = balanceOf[address(this)]; bool success; if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForEth(contractBalance); (success, ) = address(treasuryAddress).call{value: address(this).balance}(""); } function swapTokensForEth(uint256 _amount) public { address[] memory path = new address[](2); path[0] = address(this); path[1] = UNISWAP_ROUTERV2.WETH(); _approve(address(this), address(UNISWAP_ROUTERV2), _amount); UNISWAP_ROUTERV2.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":[],"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":"UNISWAP_ROUTERV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniswapV2pair","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"burnInactiveAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burnInactiveContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"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":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
737a250d5630b4cf539739df2c5dacb4c659f2488d60805260e0604052600a60a090815269436f706961204465666960b01b60c0526001906200004390826200061c565b50604080518082019091526005815264434f50494160d81b60208201526002906200006f90826200061c565b50601260e2553480156200008257600080fd5b503380620000aa57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000b58162000527565b50600060e254600a620000c99190620007fd565b620000d79061823562000812565b9050600a60e254600a620000ec9190620007fd565b620000f990607a62000812565b6200010591906200082c565b60e45560e2546200011890600a620007fd565b62000127906201046a62000812565b60e390815560098054336001600160a01b0319918216811790925560d480547310be2872986f69551c3c6e371876d58e6687f43c92169190911790556000908152600460209081526040808320859055600582528083204290819055600783528184208190556006909252822081905560d5849055915460e65560e45460e75560ea805460d683905560e5939093556003805460ff1916600117905563ff0000ff1990921663010000011790915560d781905560e254620001ea90600a620007fd565b9050612710620001fc82603262000812565b6200020891906200082c565b60d8556127106200021b82603262000812565b6200022791906200082c565b60d9556127106200023a82606462000812565b6200024691906200082c565b60da55612710620002598260fa62000812565b6200026591906200082c565b60db5561271062000279826101f462000812565b6200028591906200082c565b60df55612710620002998261138862000812565b620002a591906200082c565b60e055612710620002b882601962000812565b620002c491906200082c565b60e155612710620002d782606462000812565b620002e391906200082c565b60de5560d55461271090620002fa90600962000812565b6200030691906200082c565b60e85560d5546064906200031c90600262000812565b6200032891906200082c565b60e955600160dc55600060dd81905560ea805461ff001916610100179055600954600a80546001600160a01b039283166001600160a01b0319918216811790925560d3805490911690911790556080516040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa158015620003b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003de91906200084f565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200042e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045491906200084f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620004a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c891906200084f565b60d280546001600160a01b0319166001600160a01b03831617905560405184815290915033906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050506200087a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005a257607f821691505b602082108103620005c357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200061757600081815260208120601f850160051c81016020861015620005f25750805b601f850160051c820191505b818110156200061357828155600101620005fe565b5050505b505050565b81516001600160401b0381111562000638576200063862000577565b62000650816200064984546200058d565b84620005c9565b602080601f8311600181146200068857600084156200066f5750858301515b600019600386901b1c1916600185901b17855562000613565b600085815260208120601f198616915b82811015620006b95788860151825594840194600190910190840162000698565b5085821015620006d85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200073f578160001904821115620007235762000723620006e8565b808516156200073157918102915b93841c939080029062000703565b509250929050565b6000826200075857506001620007f7565b816200076757506000620007f7565b81600181146200078057600281146200078b57620007ab565b6001915050620007f7565b60ff8411156200079f576200079f620006e8565b50506001821b620007f7565b5060208310610133831016604e8410600b8410161715620007d0575081810a620007f7565b620007dc8383620006fe565b8060001904821115620007f357620007f3620006e8565b0290505b92915050565b60006200080b838362000747565b9392505050565b8082028115828204841417620007f757620007f7620006e8565b6000826200084a57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200086257600080fd5b81516001600160a01b03811681146200080b57600080fd5b608051612d28620008ab600039600081816103f401528181610e6901528181610f220152610f620152612d286000f3fe6080604052600436106102cd5760003560e01c80638a333b5011610175578063b7c355df116100dc578063dd62ed3e11610095578063f1145f741161006f578063f1145f7414610870578063f2fde38b146108a6578063f38cb164146108c6578063f8b45b05146108e657600080fd5b8063dd62ed3e146107f4578063e25b5e8a1461083a578063e2f456051461085a57600080fd5b8063b7c355df14610728578063bd9e0c4c14610748578063bed998501461077e578063ca0dcf1614610793578063d5d9e45e146107a8578063d91ed42c146107be57600080fd5b8063a683c6c41161012e578063a683c6c41461067c578063a9059cbb14610692578063aa6b05e3146106b2578063ab0eda9e146106c8578063afa4f3b2146106e8578063b28805f41461070857600080fd5b80638a333b50146105f15780638b299903146106075780638da5cb5b1461061d57806395d89b411461063b57806397ddd1ed14610650578063a2d53f111461066657600080fd5b80635b7c82101161023457806370a08231116101ed57806378dacee1116101c757806378dacee11461057c5780637a1d52321461059c57806381b3fa07146105b257806384413b65146105d157600080fd5b806370a0823114610523578063715018a614610550578063751039fc1461056757600080fd5b80635b7c82101461046f578063627a91d914610489578063644d5373146104b6578063680df789146104cb578063695d3a92146104e15780636f36258b1461050357600080fd5b8063313ce56711610286578063313ce567146103ad57806333308281146103c35780633b8186ef146103e25780633bbfe0151461042e5780633c775b08146104445780635668af1a1461045a57600080fd5b806306fdde03146102d9578063095ea7b31461030457806316eee3ff1461033457806318160ddd1461035857806322cd5cbd1461036d57806323b872dd1461038d57600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108fc565b6040516102fb91906127de565b60405180910390f35b34801561031057600080fd5b5061032461031f366004612841565b61098a565b60405190151581526020016102fb565b34801561034057600080fd5b5061034a60d75481565b6040519081526020016102fb565b34801561036457600080fd5b5060d55461034a565b34801561037957600080fd5b5061032461038836600461286d565b6109a2565b34801561039957600080fd5b506103246103a836600461288a565b610c14565b3480156103b957600080fd5b5061034a60e25481565b3480156103cf57600080fd5b5060ea546301000000900460ff16610324565b3480156103ee57600080fd5b506104167f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102fb565b34801561043a57600080fd5b5061034a60de5481565b34801561045057600080fd5b5061034a60df5481565b34801561046657600080fd5b5060e15461034a565b34801561047b57600080fd5b506003546103249060ff1681565b34801561049557600080fd5b5061034a6104a436600461286d565b60056020526000908152604090205481565b3480156104c257600080fd5b5060e55461034a565b3480156104d757600080fd5b5061034a60e05481565b3480156104ed57600080fd5b506104f6610c67565b6040516102fb91906128cb565b34801561050f57600080fd5b5060d354610416906001600160a01b031681565b34801561052f57600080fd5b5061034a61053e36600461286d565b60046020526000908152604090205481565b34801561055c57600080fd5b50610565610cad565b005b34801561057357600080fd5b50610565610cc1565b34801561058857600080fd5b50610565610597366004612906565b610cd5565b3480156105a857600080fd5b5061034a60db5481565b3480156105be57600080fd5b5060ea5461032490610100900460ff1681565b3480156105dd57600080fd5b50600954610416906001600160a01b031681565b3480156105fd57600080fd5b5061034a60e35481565b34801561061357600080fd5b5061034a60d65481565b34801561062957600080fd5b506000546001600160a01b0316610416565b34801561064757600080fd5b506102ee610d09565b34801561065c57600080fd5b5061034a60e45481565b34801561067257600080fd5b5061034a60dd5481565b34801561068857600080fd5b5061034a60da5481565b34801561069e57600080fd5b506103246106ad366004612841565b610d16565b3480156106be57600080fd5b5061034a60e15481565b3480156106d457600080fd5b506103246106e336600461286d565b610d2f565b3480156106f457600080fd5b50610565610703366004612906565b610dec565b34801561071457600080fd5b50610565610723366004612906565b610e12565b34801561073457600080fd5b5060d254610416906001600160a01b031681565b34801561075457600080fd5b5061034a61076336600461286d565b6001600160a01b031660009081526005602052604090205490565b34801561078a57600080fd5b5060d95461034a565b34801561079f57600080fd5b5060d85461034a565b3480156107b457600080fd5b5061034a60dc5481565b3480156107ca57600080fd5b5061034a6107d936600461286d565b6001600160a01b031660009081526007602052604090205490565b34801561080057600080fd5b5061034a61080f36600461291f565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b34801561084657600080fd5b5061032461085536600461286d565b610fda565b34801561086657600080fd5b5061034a60e85481565b34801561087c57600080fd5b5061034a61088b36600461286d565b6001600160a01b031660009081526006602052604090205490565b3480156108b257600080fd5b506105656108c136600461286d565b611174565b3480156108d257600080fd5b506103246108e1366004612990565b6111b2565b3480156108f257600080fd5b5061034a60e95481565b6001805461090990612a4b565b80601f016020809104026020016040519081016040528092919081815260200182805461093590612a4b565b80156109825780601f1061095757610100808354040283529160200191610982565b820191906000526020600020905b81548152906001019060200180831161096557829003601f168201915b505050505081565b600033610998818585611409565b9150505b92915050565b60006001600160a01b0382166109d35760405162461bcd60e51b81526004016109ca90612a85565b60405180910390fd5b813b15610a225760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206275726e20636f6e747261637420746f6b656e73000000000060448201526064016109ca565b6009546000906001600160a01b0390811690841603610b38576001600160a01b038316600090815260056020526040902054610a61906203f480612ac4565b4211610ae55760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662033206461797360c81b608482015260a4016109ca565b6001600160a01b03831660009081526004602052604090205460e054610b0b9190611472565b9050610b178382611497565b506001600160a01b0383166000908152600560205260409020429055610c0b565b6001600160a01b038316600090815260076020526040902054610b5e906203f480612ac4565b421115610bb8576001600160a01b03831660009081526004602052604090205460e054610b8b9190611472565b9050610b978382611497565b506001600160a01b0383166000908152600760205260409020429055610c0b565b6001600160a01b038316600090815260066020526040902054610bde906203f480612ac4565b421115610c0b576001600160a01b038316600090815260046020526040902054610c09908490611497565b505b50600192915050565b6001600160a01b0383166000908152600860209081526040808320338452909152812080548391908390610c49908490612ad7565b90915550610c5a905084848461153c565b50600190505b9392505050565b610c6f6127bf565b6040805161190081019182905290600a9060c89082845b81546001600160a01b03168152600190910190602001808311610c86575050505050905090565b610cb5611c2f565b610cbf6000611c5c565b565b610cc9611c2f565b60ea805460ff19169055565b610cdd611c2f565b61271060e254600a610cef9190612bd0565b610cf99083612bdc565b610d039190612bf3565b60db5550565b6002805461090990612a4b565b600033610d2481858561153c565b506001949350505050565b6000610d39611c2f565b33610d565760405162461bcd60e51b81526004016109ca90612a85565b6001600160a01b038216610d7c5760405162461bcd60e51b81526004016109ca90612a85565b6009546001600160a01b03163314610dc75760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016109ca565b50600980546001600160a01b0383166001600160a01b03199091161790556001919050565b610df4611c2f565b60e254610e0290600a612bd0565b610e0c9082612bdc565b60e85550565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610e4757610e47612c15565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ec5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee99190612c2b565b81600181518110610efc57610efc612c15565b60200260200101906001600160a01b031690816001600160a01b031681525050610f47307f000000000000000000000000000000000000000000000000000000000000000084611409565b5060d45460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792610fa4928792600092889291909116904290600401612c48565b600060405180830381600087803b158015610fbe57600080fd5b505af1158015610fd2573d6000803e3d6000fd5b505050505050565b60006001600160a01b0382166110025760405162461bcd60e51b81526004016109ca90612a85565b813b6110505760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e00000000000000000060448201526064016109ca565b60d2546001600160a01b03908116908316036110ae5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206275726e207061697220746f6b656e7300000000000000000060448201526064016109ca565b6001600160a01b0382166000908152600760205260408120546110d4906203f480612ac4565b421115611101576001600160a01b03831660009081526004602052604090205460e054610b8b9190611472565b6001600160a01b038316600090815260066020526040902054611127906203f480612ac4565b421115610c0b576001600160a01b038316600090815260046020526040902054611152908490611497565b5050506001600160a01b03166000908152600660205260409020429055600190565b61117c611c2f565b6001600160a01b0381166111a657604051631e4fbdf760e01b8152600060048201526024016109ca565b6111af81611c5c565b50565b60006111bc611c2f565b336111d95760405162461bcd60e51b81526004016109ca90612a85565b60005b6101038110156113ff576000848261010381106111fb576111fb612c15565b60200201516001600160a01b0316146113ed578281610103811061122157611221612c15565b602002015160046000336001600160a01b03166001600160a01b03168152602001908152602001600020600082825461125a9190612ad7565b9091555083905081610103811061127357611273612c15565b6020020151600460008684610103811061128f5761128f612c15565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546112c39190612ac4565b9091555042905060056000868461010381106112e1576112e1612c15565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600760008684610103811061132257611322612c15565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600660008684610103811061136357611363612c15565b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055508381610103811061139f5761139f612c15565b60200201516001600160a01b031633600080516020612cd3833981519152858461010381106113d0576113d0612c15565b60200201516040516113e491815260200190565b60405180910390a35b806113f781612cb9565b9150506111dc565b5060019392505050565b6001600160a01b03838116600081815260086020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b600060e254600a6114839190612bd0565b61148d8385612bdc565b610c609190612bf3565b60006001600160a01b0383166114bf5760405162461bcd60e51b81526004016109ca90612a85565b8160d560008282546114d19190612ad7565b90915550506001600160a01b038316600090815260046020526040812080548492906114fe908490612ad7565b90915550506040518281526000906001600160a01b03851690600080516020612cd3833981519152906020015b60405180910390a350600192915050565b60008160000361158e5760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f776564000060448201526064016109ca565b6001600160a01b0383166115d65760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016109ca565b60ea5460ff16156116a9576009546001600160a01b0385811691161480159061160d57506009546001600160a01b03848116911614155b8015611622575060ea5462010000900460ff16155b801561163b575060d2546001600160a01b038581169116145b156116a95760e9546001600160a01b0384166000908152600460205260409020546116669084612ac4565b11156116a95760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b60448201526064016109ca565b60ea5462010000900460ff16156116cc576116c5848484611cac565b9050610c60565b3060009081526004602052604090205460e854811080159081906116f9575060ea5462010000900460ff16155b8015611712575060d2546001600160a01b038681169116145b801561172757506001600160a01b0386163014155b801561173c57506001600160a01b0385163014155b8015611753575060d2546001600160a01b03163314155b1561177e5760ea805462ff0000191662010000179055611771611d3d565b60ea805462ff0000191690555b60e55461178c90603c612ac4565b42111561188e5760e35460d55410611838576003805460ff191660011790556117b3611de1565b5060ea54610100900460ff1661183357600060e35460d5546117d59190612ad7565b905060006117e4826002612bdc565b6009546001600160a01b03166000908152600460205260409020546118099190612ad7565b11156118315760095461182f906001600160a01b031661182a836002612bdc565b611497565b505b505b61188e565b60e45460d5541161188e576003805460ff19169055611855611de1565b50600060d55460e4546118689190612ad7565b60095490915061188b906001600160a01b0316611886836002612bdc565b611f26565b50505b60dc546000036118a2576118a0611fbe565b505b60035460ff1615611b165760006118bb8560d954611472565b905060006118cb8660da54611472565b905060006118db8760db54611472565b9050600081836118eb868b612ad7565b6118f59190612ad7565b6118ff9190612ad7565b905061190b8a85611497565b506001600160a01b038a1660009081526004602052604081208054839290611934908490612ad7565b90915550506001600160a01b03891660009081526004602052604081208054839290611961908490612ac4565b92505081905550886001600160a01b03168a6001600160a01b0316600080516020612cd38339815191528360405161199b91815260200190565b60405180910390a36001600160a01b038a16600090815260046020526040812080548492906119cb908490612ad7565b909155505030600090815260046020526040812080548492906119ef908490612ac4565b909155505060405182815230906001600160a01b038c1690600080516020612cd38339815191529060200160405180910390a36000611a3260d55460df54611472565b6009546001600160a01b03166000908152600460205260409020549091508110611ae6576001600160a01b038b1660009081526004602052604081208054869290611a7e908490612ad7565b90915550506009546001600160a01b031660009081526004602052604081208054869290611aad908490612ac4565b90915550506009546040518581526001600160a01b03918216918d1690600080516020612cd38339815191529060200160405180910390a35b600160d76000828254611af99190612ac4565b90915550611b0b905089328d8d612290565b505050505050611baf565b60035460ff16611b73576000611b2e8560d854611472565b90506000611b3e8660da54611472565b90506000611b4e8760db54611472565b9050600081611b5d848a612ad7565b611b679190612ad7565b905061190b3285611f26565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b60448201526064016109ca565b505032600081815260056020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600685528386208390558186528386208390558086528386208390559585526007909352818420819055918352808320829055928252919020555060019392505050565b6000546001600160a01b03163314610cbf5760405163118cdaa760e01b81523360048201526024016109ca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260046020526040812080548391908390611cd6908490612ad7565b90915550506001600160a01b03831660009081526004602052604081208054849290611d03908490612ac4565b92505081905550826001600160a01b0316846001600160a01b0316600080516020612cd38339815191528460405161146091815260200190565b3060009081526004602052604081205490818103611d59575050565b60e854611d67906014612bdc565b821115611d7f5760e854611d7c906014612bdc565b91505b611d8882610e12565b60d4546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611dd5576040519150601f19603f3d011682016040523d82523d6000602084013e611dda565b606091505b5050505050565b6000600160d66000828254611df69190612ac4565b909155505060d6546001148015611e15575060ea54610100900460ff16155b15611eae57600060e254600a611e2b9190612bd0565b9050612710611e3b826032612bdc565b611e459190612bf3565b60d855612710611e56826032612bdc565b611e609190612bf3565b60d855612710611e71826064612bdc565b611e7b9190612bf3565b60da55612710611e8c8260fa612bdc565b611e969190612bf3565b60db555060ea805463ff000000191663010000001790555b600260d65410158015611ec45750601c60d65411155b15611eea57611ed16124e4565b5060ea805463ff00000019166301000000179055611f1c565b601d60d65410158015611f005750603860d65411155b15611f1c57611f0d612521565b5060ea805463ff000000191690555b504260e555600190565b60006001600160a01b038316611f4e5760405162461bcd60e51b81526004016109ca90612a85565b8160d56000828254611f609190612ac4565b90915550506001600160a01b03831660009081526004602052604081208054849290611f8d908490612ac4565b90915550506040518281526001600160a01b03841690600090600080516020612cd38339815191529060200161152b565b60035460009060ff161561206657600a60d954611fdb9190612bf3565b60d96000828254611fec9190612ac4565b909155505060d85461200090600a90612bf3565b60d860008282546120119190612ac4565b909155505060da5461202590600a90612bf3565b60da60008282546120369190612ac4565b909155505060db5461204a90600a90612bf3565b60db600082825461205b9190612ac4565b909155506120fb9050565b600a60d9546120759190612bf3565b60d960008282546120869190612ad7565b909155505060d85461209a90600a90612bf3565b60d860008282546120ab9190612ac4565b909155505060da546120bf90600a90612bf3565b60da60008282546120d09190612ad7565b909155505060db546120e490600a90612bf3565b60db60008282546120f59190612ad7565b90915550505b60de54612109906006612bdc565b60d95411156121375760de54612120906002612bdc565b60d960008282546121319190612ad7565b90915550505b60de54612145906006612bdc565b60d85411156121735760de5461215c906002612bdc565b60d8600082825461216d9190612ad7565b90915550505b60de54612181906003612bdc565b60da5411156121a45760de5460da600082825461219e9190612ad7565b90915550505b60de546121b2906003612bdc565b60db5411156121d55760de5460db60008282546121cf9190612ad7565b90915550505b60de5460d95410806121ea575060de5460d854105b806122045750600260de546121ff9190612bf3565b60da54105b1561228a57600060e254600a61221a9190612bd0565b905061271061222a826032612bdc565b6122349190612bf3565b60d855612710612245826032612bdc565b61224f9190612bf3565b60d955612710612260826064612bdc565b61226a9190612bf3565b60da5561271061227b8260fa612bdc565b6122859190612bf3565b60db55505b50600190565b6009546001600160a01b031660009081526004602052604081205460e1546122b89190611472565b60dd81905585108015906122d457506001600160a01b03841615155b15610d2457833b6122ff5760d380546001600160a01b0319166001600160a01b038616179055612342565b823b156123265760d380546001600160a01b0319166001600160a01b038416179055612342565b60d380546001600160a01b0319166001600160a01b0385161790555b60ea54610100900460ff16156124445760c760dc5410156123c55760d35460dc546001600160a01b0390911690600a9060c8811061238257612382612c15565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160dc60008282546123ba9190612ac4565b90915550610d249050565b60dc5460c70361243f5760ea805461ff001916905560d35460dc546001600160a01b0390911690600a9060c881106123ff576123ff612c15565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc5561242b612585565b50600160dc60008282546123ba9190612ac4565b610d24565b60c760dc54101561247d57612457612585565b5060d35460dc546001600160a01b0390911690600a9060c8811061238257612382612c15565b60dc5460c703610d245761248f612585565b5060d35460dc546001600160a01b0390911690600a9060c881106124b5576124b5612c15565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc55506001949350505050565b60035460009060ff161561250957600260e4546125019190612bf3565b60e45561228a565b600260e3546125189190612bf3565b60e35550600190565b60035460009060ff16156125455760e45461253d906002612bdc565b60e455612557565b60e354612553906002612bdc565b60e3555b60d65460380361228a5760e65460e35560e75460e455600060d65560ea805463ff0000001916905550600190565b6009546001600160a01b031660009081526004602052604081205460de5482916125ae91611472565b6009546001600160a01b0316600090815260046020526040812054919250908210612601576009546001600160a01b03166000908152600460205260409020546125fa9060fa90612bf3565b905061267e565b61260c826002612bdc565b6009546001600160a01b03166000908152600460205260409020541115612654576009546001600160a01b03166000908152600460205260409020546125fa9060b490612bf3565b6009546001600160a01b031660009081526004602052604090205461267b9060dc90612bf3565b90505b6009546001600160a01b03166000908152600460205260408120546126a4908390612ad7565b11156127b6576009546001600160a01b0316600090815260046020526040812080548392906126d4908490612ad7565b925050819055508060046000600a60dc5460c881106126f5576126f5612c15565b01546001600160a01b03168152602081019190915260400160009081208054909190612722908490612ac4565b9091555050600980546001600160a01b0390811660009081526005602090815260408083204290819055855485168452600683528184208190559454909316825260079052205560dc54600a9060c8811061277f5761277f612c15565b01546009546040518381526001600160a01b039283169290911690600080516020612cd38339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b8181101561280b578581018301518582016040015282016127ef565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111af57600080fd5b6000806040838503121561285457600080fd5b823561285f8161282c565b946020939093013593505050565b60006020828403121561287f57600080fd5b8135610c608161282c565b60008060006060848603121561289f57600080fd5b83356128aa8161282c565b925060208401356128ba8161282c565b929592945050506040919091013590565b6119008101818360005b60c88110156128fd5781516001600160a01b03168352602092830192909101906001016128d5565b50505092915050565b60006020828403121561291857600080fd5b5035919050565b6000806040838503121561293257600080fd5b823561293d8161282c565b9150602083013561294d8161282c565b809150509250929050565b604051612060810167ffffffffffffffff8111828210171561298a57634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c08084860312156129a557600080fd5b84601f8501126129b457600080fd5b6129bc612958565b806120608601878111156129cf57600080fd5b865b818110156129f25780356129e48161282c565b8452602093840193016129d1565b508195508761207f880112612a0657600080fd5b612a0e612958565b93870193925082915087841115612a2457600080fd5b5b83811015612a3d578035835260209283019201612a25565b508093505050509250929050565b600181811c90821680612a5f57607f821691505b602082108103612a7f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561099c5761099c612aae565b8181038181111561099c5761099c612aae565b600181600019825b80861115612b2657828204831115612b0c57612b0c612aae565b80861615612b1957928202925b94851c9491800291612af2565b50509250929050565b600082612b3e5750600161099c565b81612b4b5750600061099c565b8160018114612b615760028114612b6b57612b87565b600191505061099c565b60ff841115612b7c57612b7c612aae565b50506001821b61099c565b5060208310610133831016604e8410600b8410161715612baa575081810a61099c565b612bb48383612aea565b8060001904821115612bc857612bc8612aae565b029392505050565b6000610c608383612b2f565b808202811582820484141761099c5761099c612aae565b600082612c1057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c3d57600080fd5b8151610c608161282c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c985784516001600160a01b031683529383019391830191600101612c73565b50506001600160a01b03969096166060850152505050608001529392505050565b600060018201612ccb57612ccb612aae565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208a9d75165398afafc235277127374feafdce1cdc9a67f9e59d278291ed4856e964736f6c63430008140033
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c80638a333b5011610175578063b7c355df116100dc578063dd62ed3e11610095578063f1145f741161006f578063f1145f7414610870578063f2fde38b146108a6578063f38cb164146108c6578063f8b45b05146108e657600080fd5b8063dd62ed3e146107f4578063e25b5e8a1461083a578063e2f456051461085a57600080fd5b8063b7c355df14610728578063bd9e0c4c14610748578063bed998501461077e578063ca0dcf1614610793578063d5d9e45e146107a8578063d91ed42c146107be57600080fd5b8063a683c6c41161012e578063a683c6c41461067c578063a9059cbb14610692578063aa6b05e3146106b2578063ab0eda9e146106c8578063afa4f3b2146106e8578063b28805f41461070857600080fd5b80638a333b50146105f15780638b299903146106075780638da5cb5b1461061d57806395d89b411461063b57806397ddd1ed14610650578063a2d53f111461066657600080fd5b80635b7c82101161023457806370a08231116101ed57806378dacee1116101c757806378dacee11461057c5780637a1d52321461059c57806381b3fa07146105b257806384413b65146105d157600080fd5b806370a0823114610523578063715018a614610550578063751039fc1461056757600080fd5b80635b7c82101461046f578063627a91d914610489578063644d5373146104b6578063680df789146104cb578063695d3a92146104e15780636f36258b1461050357600080fd5b8063313ce56711610286578063313ce567146103ad57806333308281146103c35780633b8186ef146103e25780633bbfe0151461042e5780633c775b08146104445780635668af1a1461045a57600080fd5b806306fdde03146102d9578063095ea7b31461030457806316eee3ff1461033457806318160ddd1461035857806322cd5cbd1461036d57806323b872dd1461038d57600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108fc565b6040516102fb91906127de565b60405180910390f35b34801561031057600080fd5b5061032461031f366004612841565b61098a565b60405190151581526020016102fb565b34801561034057600080fd5b5061034a60d75481565b6040519081526020016102fb565b34801561036457600080fd5b5060d55461034a565b34801561037957600080fd5b5061032461038836600461286d565b6109a2565b34801561039957600080fd5b506103246103a836600461288a565b610c14565b3480156103b957600080fd5b5061034a60e25481565b3480156103cf57600080fd5b5060ea546301000000900460ff16610324565b3480156103ee57600080fd5b506104167f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102fb565b34801561043a57600080fd5b5061034a60de5481565b34801561045057600080fd5b5061034a60df5481565b34801561046657600080fd5b5060e15461034a565b34801561047b57600080fd5b506003546103249060ff1681565b34801561049557600080fd5b5061034a6104a436600461286d565b60056020526000908152604090205481565b3480156104c257600080fd5b5060e55461034a565b3480156104d757600080fd5b5061034a60e05481565b3480156104ed57600080fd5b506104f6610c67565b6040516102fb91906128cb565b34801561050f57600080fd5b5060d354610416906001600160a01b031681565b34801561052f57600080fd5b5061034a61053e36600461286d565b60046020526000908152604090205481565b34801561055c57600080fd5b50610565610cad565b005b34801561057357600080fd5b50610565610cc1565b34801561058857600080fd5b50610565610597366004612906565b610cd5565b3480156105a857600080fd5b5061034a60db5481565b3480156105be57600080fd5b5060ea5461032490610100900460ff1681565b3480156105dd57600080fd5b50600954610416906001600160a01b031681565b3480156105fd57600080fd5b5061034a60e35481565b34801561061357600080fd5b5061034a60d65481565b34801561062957600080fd5b506000546001600160a01b0316610416565b34801561064757600080fd5b506102ee610d09565b34801561065c57600080fd5b5061034a60e45481565b34801561067257600080fd5b5061034a60dd5481565b34801561068857600080fd5b5061034a60da5481565b34801561069e57600080fd5b506103246106ad366004612841565b610d16565b3480156106be57600080fd5b5061034a60e15481565b3480156106d457600080fd5b506103246106e336600461286d565b610d2f565b3480156106f457600080fd5b50610565610703366004612906565b610dec565b34801561071457600080fd5b50610565610723366004612906565b610e12565b34801561073457600080fd5b5060d254610416906001600160a01b031681565b34801561075457600080fd5b5061034a61076336600461286d565b6001600160a01b031660009081526005602052604090205490565b34801561078a57600080fd5b5060d95461034a565b34801561079f57600080fd5b5060d85461034a565b3480156107b457600080fd5b5061034a60dc5481565b3480156107ca57600080fd5b5061034a6107d936600461286d565b6001600160a01b031660009081526007602052604090205490565b34801561080057600080fd5b5061034a61080f36600461291f565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b34801561084657600080fd5b5061032461085536600461286d565b610fda565b34801561086657600080fd5b5061034a60e85481565b34801561087c57600080fd5b5061034a61088b36600461286d565b6001600160a01b031660009081526006602052604090205490565b3480156108b257600080fd5b506105656108c136600461286d565b611174565b3480156108d257600080fd5b506103246108e1366004612990565b6111b2565b3480156108f257600080fd5b5061034a60e95481565b6001805461090990612a4b565b80601f016020809104026020016040519081016040528092919081815260200182805461093590612a4b565b80156109825780601f1061095757610100808354040283529160200191610982565b820191906000526020600020905b81548152906001019060200180831161096557829003601f168201915b505050505081565b600033610998818585611409565b9150505b92915050565b60006001600160a01b0382166109d35760405162461bcd60e51b81526004016109ca90612a85565b60405180910390fd5b813b15610a225760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206275726e20636f6e747261637420746f6b656e73000000000060448201526064016109ca565b6009546000906001600160a01b0390811690841603610b38576001600160a01b038316600090815260056020526040902054610a61906203f480612ac4565b4211610ae55760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662033206461797360c81b608482015260a4016109ca565b6001600160a01b03831660009081526004602052604090205460e054610b0b9190611472565b9050610b178382611497565b506001600160a01b0383166000908152600560205260409020429055610c0b565b6001600160a01b038316600090815260076020526040902054610b5e906203f480612ac4565b421115610bb8576001600160a01b03831660009081526004602052604090205460e054610b8b9190611472565b9050610b978382611497565b506001600160a01b0383166000908152600760205260409020429055610c0b565b6001600160a01b038316600090815260066020526040902054610bde906203f480612ac4565b421115610c0b576001600160a01b038316600090815260046020526040902054610c09908490611497565b505b50600192915050565b6001600160a01b0383166000908152600860209081526040808320338452909152812080548391908390610c49908490612ad7565b90915550610c5a905084848461153c565b50600190505b9392505050565b610c6f6127bf565b6040805161190081019182905290600a9060c89082845b81546001600160a01b03168152600190910190602001808311610c86575050505050905090565b610cb5611c2f565b610cbf6000611c5c565b565b610cc9611c2f565b60ea805460ff19169055565b610cdd611c2f565b61271060e254600a610cef9190612bd0565b610cf99083612bdc565b610d039190612bf3565b60db5550565b6002805461090990612a4b565b600033610d2481858561153c565b506001949350505050565b6000610d39611c2f565b33610d565760405162461bcd60e51b81526004016109ca90612a85565b6001600160a01b038216610d7c5760405162461bcd60e51b81526004016109ca90612a85565b6009546001600160a01b03163314610dc75760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016109ca565b50600980546001600160a01b0383166001600160a01b03199091161790556001919050565b610df4611c2f565b60e254610e0290600a612bd0565b610e0c9082612bdc565b60e85550565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610e4757610e47612c15565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ec5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee99190612c2b565b81600181518110610efc57610efc612c15565b60200260200101906001600160a01b031690816001600160a01b031681525050610f47307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611409565b5060d45460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792610fa4928792600092889291909116904290600401612c48565b600060405180830381600087803b158015610fbe57600080fd5b505af1158015610fd2573d6000803e3d6000fd5b505050505050565b60006001600160a01b0382166110025760405162461bcd60e51b81526004016109ca90612a85565b813b6110505760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e00000000000000000060448201526064016109ca565b60d2546001600160a01b03908116908316036110ae5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206275726e207061697220746f6b656e7300000000000000000060448201526064016109ca565b6001600160a01b0382166000908152600760205260408120546110d4906203f480612ac4565b421115611101576001600160a01b03831660009081526004602052604090205460e054610b8b9190611472565b6001600160a01b038316600090815260066020526040902054611127906203f480612ac4565b421115610c0b576001600160a01b038316600090815260046020526040902054611152908490611497565b5050506001600160a01b03166000908152600660205260409020429055600190565b61117c611c2f565b6001600160a01b0381166111a657604051631e4fbdf760e01b8152600060048201526024016109ca565b6111af81611c5c565b50565b60006111bc611c2f565b336111d95760405162461bcd60e51b81526004016109ca90612a85565b60005b6101038110156113ff576000848261010381106111fb576111fb612c15565b60200201516001600160a01b0316146113ed578281610103811061122157611221612c15565b602002015160046000336001600160a01b03166001600160a01b03168152602001908152602001600020600082825461125a9190612ad7565b9091555083905081610103811061127357611273612c15565b6020020151600460008684610103811061128f5761128f612c15565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546112c39190612ac4565b9091555042905060056000868461010381106112e1576112e1612c15565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600760008684610103811061132257611322612c15565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600660008684610103811061136357611363612c15565b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055508381610103811061139f5761139f612c15565b60200201516001600160a01b031633600080516020612cd3833981519152858461010381106113d0576113d0612c15565b60200201516040516113e491815260200190565b60405180910390a35b806113f781612cb9565b9150506111dc565b5060019392505050565b6001600160a01b03838116600081815260086020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b600060e254600a6114839190612bd0565b61148d8385612bdc565b610c609190612bf3565b60006001600160a01b0383166114bf5760405162461bcd60e51b81526004016109ca90612a85565b8160d560008282546114d19190612ad7565b90915550506001600160a01b038316600090815260046020526040812080548492906114fe908490612ad7565b90915550506040518281526000906001600160a01b03851690600080516020612cd3833981519152906020015b60405180910390a350600192915050565b60008160000361158e5760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f776564000060448201526064016109ca565b6001600160a01b0383166115d65760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016109ca565b60ea5460ff16156116a9576009546001600160a01b0385811691161480159061160d57506009546001600160a01b03848116911614155b8015611622575060ea5462010000900460ff16155b801561163b575060d2546001600160a01b038581169116145b156116a95760e9546001600160a01b0384166000908152600460205260409020546116669084612ac4565b11156116a95760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b60448201526064016109ca565b60ea5462010000900460ff16156116cc576116c5848484611cac565b9050610c60565b3060009081526004602052604090205460e854811080159081906116f9575060ea5462010000900460ff16155b8015611712575060d2546001600160a01b038681169116145b801561172757506001600160a01b0386163014155b801561173c57506001600160a01b0385163014155b8015611753575060d2546001600160a01b03163314155b1561177e5760ea805462ff0000191662010000179055611771611d3d565b60ea805462ff0000191690555b60e55461178c90603c612ac4565b42111561188e5760e35460d55410611838576003805460ff191660011790556117b3611de1565b5060ea54610100900460ff1661183357600060e35460d5546117d59190612ad7565b905060006117e4826002612bdc565b6009546001600160a01b03166000908152600460205260409020546118099190612ad7565b11156118315760095461182f906001600160a01b031661182a836002612bdc565b611497565b505b505b61188e565b60e45460d5541161188e576003805460ff19169055611855611de1565b50600060d55460e4546118689190612ad7565b60095490915061188b906001600160a01b0316611886836002612bdc565b611f26565b50505b60dc546000036118a2576118a0611fbe565b505b60035460ff1615611b165760006118bb8560d954611472565b905060006118cb8660da54611472565b905060006118db8760db54611472565b9050600081836118eb868b612ad7565b6118f59190612ad7565b6118ff9190612ad7565b905061190b8a85611497565b506001600160a01b038a1660009081526004602052604081208054839290611934908490612ad7565b90915550506001600160a01b03891660009081526004602052604081208054839290611961908490612ac4565b92505081905550886001600160a01b03168a6001600160a01b0316600080516020612cd38339815191528360405161199b91815260200190565b60405180910390a36001600160a01b038a16600090815260046020526040812080548492906119cb908490612ad7565b909155505030600090815260046020526040812080548492906119ef908490612ac4565b909155505060405182815230906001600160a01b038c1690600080516020612cd38339815191529060200160405180910390a36000611a3260d55460df54611472565b6009546001600160a01b03166000908152600460205260409020549091508110611ae6576001600160a01b038b1660009081526004602052604081208054869290611a7e908490612ad7565b90915550506009546001600160a01b031660009081526004602052604081208054869290611aad908490612ac4565b90915550506009546040518581526001600160a01b03918216918d1690600080516020612cd38339815191529060200160405180910390a35b600160d76000828254611af99190612ac4565b90915550611b0b905089328d8d612290565b505050505050611baf565b60035460ff16611b73576000611b2e8560d854611472565b90506000611b3e8660da54611472565b90506000611b4e8760db54611472565b9050600081611b5d848a612ad7565b611b679190612ad7565b905061190b3285611f26565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b60448201526064016109ca565b505032600081815260056020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600685528386208390558186528386208390558086528386208390559585526007909352818420819055918352808320829055928252919020555060019392505050565b6000546001600160a01b03163314610cbf5760405163118cdaa760e01b81523360048201526024016109ca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260046020526040812080548391908390611cd6908490612ad7565b90915550506001600160a01b03831660009081526004602052604081208054849290611d03908490612ac4565b92505081905550826001600160a01b0316846001600160a01b0316600080516020612cd38339815191528460405161146091815260200190565b3060009081526004602052604081205490818103611d59575050565b60e854611d67906014612bdc565b821115611d7f5760e854611d7c906014612bdc565b91505b611d8882610e12565b60d4546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611dd5576040519150601f19603f3d011682016040523d82523d6000602084013e611dda565b606091505b5050505050565b6000600160d66000828254611df69190612ac4565b909155505060d6546001148015611e15575060ea54610100900460ff16155b15611eae57600060e254600a611e2b9190612bd0565b9050612710611e3b826032612bdc565b611e459190612bf3565b60d855612710611e56826032612bdc565b611e609190612bf3565b60d855612710611e71826064612bdc565b611e7b9190612bf3565b60da55612710611e8c8260fa612bdc565b611e969190612bf3565b60db555060ea805463ff000000191663010000001790555b600260d65410158015611ec45750601c60d65411155b15611eea57611ed16124e4565b5060ea805463ff00000019166301000000179055611f1c565b601d60d65410158015611f005750603860d65411155b15611f1c57611f0d612521565b5060ea805463ff000000191690555b504260e555600190565b60006001600160a01b038316611f4e5760405162461bcd60e51b81526004016109ca90612a85565b8160d56000828254611f609190612ac4565b90915550506001600160a01b03831660009081526004602052604081208054849290611f8d908490612ac4565b90915550506040518281526001600160a01b03841690600090600080516020612cd38339815191529060200161152b565b60035460009060ff161561206657600a60d954611fdb9190612bf3565b60d96000828254611fec9190612ac4565b909155505060d85461200090600a90612bf3565b60d860008282546120119190612ac4565b909155505060da5461202590600a90612bf3565b60da60008282546120369190612ac4565b909155505060db5461204a90600a90612bf3565b60db600082825461205b9190612ac4565b909155506120fb9050565b600a60d9546120759190612bf3565b60d960008282546120869190612ad7565b909155505060d85461209a90600a90612bf3565b60d860008282546120ab9190612ac4565b909155505060da546120bf90600a90612bf3565b60da60008282546120d09190612ad7565b909155505060db546120e490600a90612bf3565b60db60008282546120f59190612ad7565b90915550505b60de54612109906006612bdc565b60d95411156121375760de54612120906002612bdc565b60d960008282546121319190612ad7565b90915550505b60de54612145906006612bdc565b60d85411156121735760de5461215c906002612bdc565b60d8600082825461216d9190612ad7565b90915550505b60de54612181906003612bdc565b60da5411156121a45760de5460da600082825461219e9190612ad7565b90915550505b60de546121b2906003612bdc565b60db5411156121d55760de5460db60008282546121cf9190612ad7565b90915550505b60de5460d95410806121ea575060de5460d854105b806122045750600260de546121ff9190612bf3565b60da54105b1561228a57600060e254600a61221a9190612bd0565b905061271061222a826032612bdc565b6122349190612bf3565b60d855612710612245826032612bdc565b61224f9190612bf3565b60d955612710612260826064612bdc565b61226a9190612bf3565b60da5561271061227b8260fa612bdc565b6122859190612bf3565b60db55505b50600190565b6009546001600160a01b031660009081526004602052604081205460e1546122b89190611472565b60dd81905585108015906122d457506001600160a01b03841615155b15610d2457833b6122ff5760d380546001600160a01b0319166001600160a01b038616179055612342565b823b156123265760d380546001600160a01b0319166001600160a01b038416179055612342565b60d380546001600160a01b0319166001600160a01b0385161790555b60ea54610100900460ff16156124445760c760dc5410156123c55760d35460dc546001600160a01b0390911690600a9060c8811061238257612382612c15565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160dc60008282546123ba9190612ac4565b90915550610d249050565b60dc5460c70361243f5760ea805461ff001916905560d35460dc546001600160a01b0390911690600a9060c881106123ff576123ff612c15565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc5561242b612585565b50600160dc60008282546123ba9190612ac4565b610d24565b60c760dc54101561247d57612457612585565b5060d35460dc546001600160a01b0390911690600a9060c8811061238257612382612c15565b60dc5460c703610d245761248f612585565b5060d35460dc546001600160a01b0390911690600a9060c881106124b5576124b5612c15565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc55506001949350505050565b60035460009060ff161561250957600260e4546125019190612bf3565b60e45561228a565b600260e3546125189190612bf3565b60e35550600190565b60035460009060ff16156125455760e45461253d906002612bdc565b60e455612557565b60e354612553906002612bdc565b60e3555b60d65460380361228a5760e65460e35560e75460e455600060d65560ea805463ff0000001916905550600190565b6009546001600160a01b031660009081526004602052604081205460de5482916125ae91611472565b6009546001600160a01b0316600090815260046020526040812054919250908210612601576009546001600160a01b03166000908152600460205260409020546125fa9060fa90612bf3565b905061267e565b61260c826002612bdc565b6009546001600160a01b03166000908152600460205260409020541115612654576009546001600160a01b03166000908152600460205260409020546125fa9060b490612bf3565b6009546001600160a01b031660009081526004602052604090205461267b9060dc90612bf3565b90505b6009546001600160a01b03166000908152600460205260408120546126a4908390612ad7565b11156127b6576009546001600160a01b0316600090815260046020526040812080548392906126d4908490612ad7565b925050819055508060046000600a60dc5460c881106126f5576126f5612c15565b01546001600160a01b03168152602081019190915260400160009081208054909190612722908490612ac4565b9091555050600980546001600160a01b0390811660009081526005602090815260408083204290819055855485168452600683528184208190559454909316825260079052205560dc54600a9060c8811061277f5761277f612c15565b01546009546040518381526001600160a01b039283169290911690600080516020612cd38339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b8181101561280b578581018301518582016040015282016127ef565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111af57600080fd5b6000806040838503121561285457600080fd5b823561285f8161282c565b946020939093013593505050565b60006020828403121561287f57600080fd5b8135610c608161282c565b60008060006060848603121561289f57600080fd5b83356128aa8161282c565b925060208401356128ba8161282c565b929592945050506040919091013590565b6119008101818360005b60c88110156128fd5781516001600160a01b03168352602092830192909101906001016128d5565b50505092915050565b60006020828403121561291857600080fd5b5035919050565b6000806040838503121561293257600080fd5b823561293d8161282c565b9150602083013561294d8161282c565b809150509250929050565b604051612060810167ffffffffffffffff8111828210171561298a57634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c08084860312156129a557600080fd5b84601f8501126129b457600080fd5b6129bc612958565b806120608601878111156129cf57600080fd5b865b818110156129f25780356129e48161282c565b8452602093840193016129d1565b508195508761207f880112612a0657600080fd5b612a0e612958565b93870193925082915087841115612a2457600080fd5b5b83811015612a3d578035835260209283019201612a25565b508093505050509250929050565b600181811c90821680612a5f57607f821691505b602082108103612a7f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561099c5761099c612aae565b8181038181111561099c5761099c612aae565b600181600019825b80861115612b2657828204831115612b0c57612b0c612aae565b80861615612b1957928202925b94851c9491800291612af2565b50509250929050565b600082612b3e5750600161099c565b81612b4b5750600061099c565b8160018114612b615760028114612b6b57612b87565b600191505061099c565b60ff841115612b7c57612b7c612aae565b50506001821b61099c565b5060208310610133831016604e8410600b8410161715612baa575081810a61099c565b612bb48383612aea565b8060001904821115612bc857612bc8612aae565b029392505050565b6000610c608383612b2f565b808202811582820484141761099c5761099c612aae565b600082612c1057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c3d57600080fd5b8151610c608161282c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c985784516001600160a01b031683529383019391830191600101612c73565b50506001600160a01b03969096166060850152505050608001529392505050565b600060018201612ccb57612ccb612aae565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208a9d75165398afafc235277127374feafdce1cdc9a67f9e59d278291ed4856e964736f6c63430008140033
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.