ERC-20
Overview
Max Total Supply
1,000,000,000 NEIREI
Holders
370
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
26 NEIREIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NEIREI
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* * SPDX-License-Identifier: MIT * https://t.me/neireicoin * https://x.com/neireicoin * https://Neireicoin.com/ */ pragma solidity 0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the upd allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IDexFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract NEIREI is ERC20, Ownable { using SafeMath for uint256; IDexRouter private immutable dexRouter; address public immutable dexPair; // Swapback bool private swapping; bool private swapbackEnabled = false; uint256 private swapBackValueMin; uint256 private swapBackValueMax; //Anti-whale bool private limitsEnabled = true; uint256 private maxWallet; uint256 private maxTx; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public tradingEnabled = false; // Fee receivers address private marketingWallet; address private projectWallet; uint256 private buyTaxTotal; uint256 private buyMarketingTax; uint256 private buyProjectTax; uint256 private sellTaxTotal; uint256 private sellMarketingTax; uint256 private sellProjectTax; uint256 private tokensForMarketing; uint256 private tokensForProject; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private transferTaxExempt; mapping(address => bool) private transferLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromLimits(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event TradingEnabled(uint256 indexed timestamp); event LimitsRemoved(uint256 indexed timestamp); event DisabledTransferDelay(uint256 indexed timestamp); event SwapbackSettingsUpdated( bool enabled, uint256 swapBackValueMin, uint256 swapBackValueMax ); event MaxTxUpdated(uint256 maxTx); event MaxWalletUpdated(uint256 maxWallet); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event ProjectWalletUpdated( address indexed newWallet, address indexed oldWallet ); event BuyFeeUpdated( uint256 buyTaxTotal, uint256 buyMarketingTax, uint256 buyProjectTax ); event SellFeeUpdated( uint256 sellTaxTotal, uint256 sellMarketingTax, uint256 sellProjectTax ); constructor() ERC20("Neirei", "NEIREI") { IDexRouter _dexRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); stLimitExemptAddreess(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IDexFactory(_dexRouter.factory()).createPair( address(this), _dexRouter.WETH() ); stLimitExemptAddreess(address(dexPair), true); _setAutomatedMarketMakerPair(address(dexPair), true); uint256 _buyMarketingTax = 20; uint256 _buyProjectTax = 0; uint256 _sellMarketingTax = 30; uint256 _sellProjectTax = 0; uint256 _totalSupply = 1_000_000_000 * 10 ** decimals(); maxTx = (_totalSupply * 10) / 1000; maxWallet = (_totalSupply * 10) / 1000; swapBackValueMin = (_totalSupply * 1) / 1000; swapBackValueMax = (_totalSupply * 2) / 100; buyMarketingTax = _buyMarketingTax; buyProjectTax = _buyProjectTax; buyTaxTotal = buyMarketingTax + buyProjectTax; sellMarketingTax = _sellMarketingTax; sellProjectTax = _sellProjectTax; sellTaxTotal = sellMarketingTax + sellProjectTax; marketingWallet = address(0xF58B5E0F2A612a1e34C9aA30f810C7328909fB16); projectWallet = address(msg.sender); // exclude from paying fees or having max transaction amount stFeeExemptAddreess(msg.sender, true); stFeeExemptAddreess(address(this), true); stFeeExemptAddreess(address(0xdead), true); stFeeExemptAddreess(marketingWallet, true); stLimitExemptAddreess(msg.sender, true); stLimitExemptAddreess(address(this), true); stLimitExemptAddreess(address(0xdead), true); stLimitExemptAddreess(marketingWallet, true); transferOwnership(msg.sender); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, _totalSupply); } receive() external payable {} /** * @notice Opens public trading for the token * @dev onlyOwner. */ function openTrading() external onlyOwner { tradingEnabled = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function revomeLmits() external onlyOwner { limitsEnabled = false; emit LimitsRemoved(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param _enable If swapback is enabled * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function chengSwapbckVlue( bool _enable, uint256 _min, uint256 _max ) external onlyOwner { require( _min >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require(_max >= _min, "maximum amount cant be higher than minimum"); swapbackEnabled = _enable; swapBackValueMin = (totalSupply() * _min) / 10000; swapBackValueMax = (totalSupply() * _max) / 10000; emit SwapbackSettingsUpdated(_enable, _min, _max); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param newMaxTxLimit Base 1000, so 1% = 10 */ function chanegeMaxiT(uint256 newMaxTxLimit) external onlyOwner { require(newMaxTxLimit >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (newMaxTxLimit * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param newMaxWalletLimit Base 1000, so 1% = 10 */ function changMaximWa(uint256 newMaxWalletLimit) external onlyOwner { require(newMaxWalletLimit >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (newMaxWalletLimit * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param updAds The wallet to update * @param isEx If the wallet is excluded or not */ function stLimitExemptAddreess( address updAds, bool isEx ) public onlyOwner { transferLimitExempt[updAds] = isEx; emit ExcludeFromLimits(updAds, isEx); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setFeeBuyAmmt( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { buyMarketingTax = _marketingFee; buyProjectTax = _devFee; buyTaxTotal = buyMarketingTax + buyProjectTax; require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%"); emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setFeeeSellAmmt( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { sellMarketingTax = _marketingFee; sellProjectTax = _devFee; sellTaxTotal = sellMarketingTax + sellProjectTax; require( sellTaxTotal <= 100, "Total sell fee cannot be higher than 100%" ); emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax); } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param account The wallet to update * @param excluded If the wallet is excluded or not */ function stFeeExemptAddreess(address account, bool excluded) public onlyOwner { transferTaxExempt[account] = excluded; emit ExcludeFromFees(account, excluded); } /** * @notice Sets an address as a new liquidity pair. You probably dont want to do this. * @dev onlyOwner. * Emits a {SetAutomatedMarketMakerPair} event * @param pair the address of the pair * @param value If the pair is a automated market maker pair or not */ function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != dexPair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {MarketingWalletUpdated} event * @param newWallet The new marketing wallet */ function changeMarketingAddressReci(address newWallet) external onlyOwner { emit MarketingWalletUpdated(newWallet, marketingWallet); marketingWallet = newWallet; } /** * @notice Sets the project wallet * @dev onlyOwner. * Emits an {ProjectWalletUpdated} event * @param newWallet The new dev wallet */ function setDevWalletAddressReci(address newWallet) external onlyOwner { emit ProjectWalletUpdated(newWallet, projectWallet); projectWallet = newWallet; } /** * @notice Information about the swapback settings * @return _swapbackEnabled if swapback is enabled * @return _swapBackValueMin the minimum amount of tokens in the contract balance to trigger swapback * @return _swapBackValueMax the maximum amount of tokens in the contract balance to trigger swapback */ function swapback_view() external view returns ( bool _swapbackEnabled, uint256 _swapBackValueMin, uint256 _swapBackValueMax ) { _swapbackEnabled = swapbackEnabled; _swapBackValueMin = swapBackValueMin; _swapBackValueMax = swapBackValueMax; } /** * @notice Information about the anti whale parameters * @return _limitsEnabled if the wallet limits are in effect * @return _maxWallet The maximum amount of tokens that can be held by a wallet * @return _maxTx The maximum amount of tokens that can be bought or sold in a single transaction */ function maxlimits_view() external view returns ( bool _limitsEnabled, uint256 _maxWallet, uint256 _maxTx ) { _limitsEnabled = limitsEnabled; _maxWallet = maxWallet; _maxTx = maxTx; } /** * @notice The wallets that receive the collected fees * @return _marketingWallet The wallet that receives the marketing fees * @return _projectWallet The wallet that receives the dev fees */ function Feereceiver_view() external view returns (address _marketingWallet, address _projectWallet) { return (marketingWallet, projectWallet); } /** * @notice Fees for buys, sells, and transfers * @return _buyTaxTotal The total fee for buys * @return _buyMarketingTax The fee for buys that gets sent to marketing * @return _buyProjectTax The fee for buys that gets sent to dev * @return _sellTaxTotal The total fee for sells * @return _sellMarketingTax The fee for sells that gets sent to marketing * @return _sellProjectTax The fee for sells that gets sent to dev */ function taxes_view() external view returns ( uint256 _buyTaxTotal, uint256 _buyMarketingTax, uint256 _buyProjectTax, uint256 _sellTaxTotal, uint256 _sellMarketingTax, uint256 _sellProjectTax ) { _buyTaxTotal = buyTaxTotal; _buyMarketingTax = buyMarketingTax; _buyProjectTax = buyProjectTax; _sellTaxTotal = sellTaxTotal; _sellMarketingTax = sellMarketingTax; _sellProjectTax = sellProjectTax; } /** * @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair * @param _target The wallet to check * @return _transferTaxExempt If the wallet is excluded from fees * @return _transferLimitExempt If the wallet is excluded from max transaction amount * @return _automatedMarketMakerPairs If the wallet is a automated market maker pair */ function mappings_view( address _target ) external view returns ( bool _transferTaxExempt, bool _transferLimitExempt, bool _automatedMarketMakerPairs ) { _transferTaxExempt = transferTaxExempt[_target]; _transferLimitExempt = transferLimitExempt[_target]; _automatedMarketMakerPairs = automatedMarketMakerPairs[_target]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingEnabled) { require( transferTaxExempt[from] || transferTaxExempt[to], "_transfer:: Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !transferLimitExempt[to] ) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !transferLimitExempt[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!transferLimitExempt[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapBackValueMin; if ( canSwap && swapbackEnabled && !swapping && !automatedMarketMakerPairs[from] && !transferTaxExempt[from] && !transferTaxExempt[to] ) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (transferTaxExempt[from] || transferTaxExempt[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) { fees = amount.mul(sellTaxTotal).div(100); tokensForProject += (fees * sellProjectTax) / sellTaxTotal; tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal; } // on buy else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) { fees = amount.mul(buyTaxTotal).div(100); tokensForProject += (fees * buyProjectTax) / buyTaxTotal; tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } bool anti = true; function setAnti(bool _anti) external onlyOwner { anti = _anti; } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance; bool success; if (contractBalance == 0) { return; } if (contractBalance > swapBackValueMax) { contractBalance = swapBackValueMax; } if (anti && contractBalance > amount * 5) { contractBalance = amount * 5; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForProject).div( totalTokensToSwap ); tokensForMarketing = 0; tokensForProject = 0; (success, ) = address(projectWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"Feereceiver_view","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTxLimit","type":"uint256"}],"name":"chanegeMaxiT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletLimit","type":"uint256"}],"name":"changMaximWa","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingAddressReci","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"chengSwapbckVlue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"mappings_view","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxlimits_view","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revomeLmits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_anti","type":"bool"}],"name":"setAnti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWalletAddressReci","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeeBuyAmmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeeeSellAmmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"stFeeExemptAddreess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"stLimitExemptAddreess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapback_view","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes_view","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyProjectTax","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellProjectTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805460ff199081166001908117909255600c8054821690556019805490911690911790553480156200004457600080fd5b50604051806040016040528060068152602001654e656972656960d01b815250604051806040016040528060068152602001654e454952454960d01b815250816003908162000094919062000878565b506004620000a3828262000878565b505050620000c0620000ba6200042d60201b60201c565b62000431565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e281600162000483565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000153919062000944565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c7919062000944565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000215573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023b919062000944565b6001600160a01b031660a08190526200025690600162000483565b60a0516200026690600162000532565b60146000601e81806200027c6012600a62000a8b565b6200028c90633b9aca0062000a9c565b90506103e86200029e82600a62000a9c565b620002aa919062000ab6565b600a9081556103e890620002c090839062000a9c565b620002cc919062000ab6565b6009556103e8620002df82600162000a9c565b620002eb919062000ab6565b6006556064620002fd82600262000a9c565b62000309919062000ab6565b600755600f859055601084905562000322848662000ad9565b600e55601283905560138290556200033b828462000ad9565b601155600c8054610100600160a81b03191674f58b5e0f2a612a1e34c9aa30f810c7328909fb1600179055600d8054336001600160a01b031990911681179091556200038990600162000586565b6200039630600162000586565b620003a561dead600162000586565b600c54620003c39061010090046001600160a01b0316600162000586565b620003d033600162000483565b620003dd30600162000483565b620003ec61dead600162000483565b600c546200040a9061010090046001600160a01b0316600162000483565b62000415336200062a565b620004213382620006ea565b50505050505062000aef565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004d25760405162461bcd60e51b815260206004820181905260248201526000805160206200301483398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005d15760405162461bcd60e51b81526020600482018190526024820152600080516020620030148339815191526044820152606401620004c9565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910162000526565b6005546001600160a01b03163314620006755760405162461bcd60e51b81526020600482018190526024820152600080516020620030148339815191526044820152606401620004c9565b6001600160a01b038116620006dc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004c9565b620006e78162000431565b50565b6001600160a01b038216620007425760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004c9565b806002600082825462000756919062000ad9565b90915550506001600160a01b038216600090815260208190526040812080548392906200078590849062000ad9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007ff57607f821691505b6020821081036200082057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007cf57600081815260208120601f850160051c810160208610156200084f5750805b601f850160051c820191505b8181101562000870578281556001016200085b565b505050505050565b81516001600160401b03811115620008945762000894620007d4565b620008ac81620008a58454620007ea565b8462000826565b602080601f831160018114620008e45760008415620008cb5750858301515b600019600386901b1c1916600185901b17855562000870565b600085815260208120601f198616915b828110156200091557888601518255948401946001909101908401620008f4565b5085821015620009345787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200095757600080fd5b81516001600160a01b03811681146200096f57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009cd578160001904821115620009b157620009b162000976565b80851615620009bf57918102915b93841c939080029062000991565b509250929050565b600082620009e65750600162000a85565b81620009f55750600062000a85565b816001811462000a0e576002811462000a195762000a39565b600191505062000a85565b60ff84111562000a2d5762000a2d62000976565b50506001821b62000a85565b5060208310610133831016604e8410600b841016171562000a5e575081810a62000a85565b62000a6a83836200098c565b806000190482111562000a815762000a8162000976565b0290505b92915050565b60006200096f60ff841683620009d5565b808202811582820484141762000a855762000a8562000976565b60008262000ad457634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a855762000a8562000976565b60805160a0516124ea62000b2a600039600081816107070152610d03015260008181611f3601528181611fef015261202b01526124ea6000f3fe6080604052600436106101fd5760003560e01c806386725f911161010d578063c11a3057116100a0578063d57156a71161006f578063d57156a71461066e578063daa353d91461068f578063dd62ed3e146106af578063f242ab41146106f5578063f2fde38b1461072957600080fd5b8063c11a3057146105d9578063c40bd704146105f9578063c6a9d6ec14610619578063c9567bf91461065957600080fd5b80639cae305d116100dc5780639cae305d14610564578063a2ffdfc914610579578063a457c2d714610599578063a9059cbb146105b957600080fd5b806386725f91146104dd5780638da5cb5b146104fd57806395d89b411461052f5780639a7a23d61461054457600080fd5b80634ada218b1161019057806370a082311161015f57806370a0823114610432578063715018a6146104685780637ff6f7b91461047d578063800eeeb11461049d57806383df0104146104bd57600080fd5b80634ada218b1461034d57806362ea0f7b14610367578063676320e1146103da5780636c9a0a0b1461041257600080fd5b8063313ce567116101cc578063313ce567146102a3578063350fa6c8146102bf57806339509351146102e15780634ac02b321461030157600080fd5b806306fdde0314610209578063095ea7b31461023457806318160ddd1461026457806323b872dd1461028357600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610749565b60405161022b91906120ab565b60405180910390f35b34801561024057600080fd5b5061025461024f36600461210e565b6107db565b604051901515815260200161022b565b34801561027057600080fd5b506002545b60405190815260200161022b565b34801561028f57600080fd5b5061025461029e36600461213a565b6107f2565b3480156102af57600080fd5b506040516012815260200161022b565b3480156102cb57600080fd5b506102df6102da36600461217b565b6108a1565b005b3480156102ed57600080fd5b506102546102fc36600461210e565b610928565b34801561030d57600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c00161022b565b34801561035957600080fd5b50600c546102549060ff1681565b34801561037357600080fd5b506103bb61038236600461217b565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161022b565b3480156103e657600080fd5b50600c54600d54604080516101009093046001600160a01b03908116845290911660208301520161022b565b34801561041e57600080fd5b506102df61042d366004612198565b610964565b34801561043e57600080fd5b5061027561044d36600461217b565b6001600160a01b031660009081526020819052604090205490565b34801561047457600080fd5b506102df610a56565b34801561048957600080fd5b506102df6104983660046121cf565b610a8c565b3480156104a957600080fd5b506102df6104b83660046121ea565b610ac9565b3480156104c957600080fd5b506102df6104d8366004612203565b610bac565b3480156104e957600080fd5b506102df6104f836600461217b565b610c36565b34801561050957600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161022b565b34801561053b57600080fd5b5061021e610cc8565b34801561055057600080fd5b506102df61055f366004612203565b610cd7565b34801561057057600080fd5b506102df610db6565b34801561058557600080fd5b506102df6105943660046121ea565b610e17565b3480156105a557600080fd5b506102546105b436600461210e565b610ee7565b3480156105c557600080fd5b506102546105d436600461210e565b610f80565b3480156105e557600080fd5b506102df6105f4366004612203565b610f8d565b34801561060557600080fd5b506102df610614366004612238565b61100f565b34801561062557600080fd5b50600554600654600754600160a81b90920460ff16915b60408051931515845260208401929092529082015260600161022b565b34801561066557600080fd5b506102df6111ad565b34801561067a57600080fd5b50600854600954600a5460ff9092169161063c565b34801561069b57600080fd5b506102df6106aa366004612198565b611224565b3480156106bb57600080fd5b506102756106ca36600461226b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561070157600080fd5b506105177f000000000000000000000000000000000000000000000000000000000000000081565b34801561073557600080fd5b506102df61074436600461217b565b61130f565b606060038054610758906122a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610784906122a4565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b5050505050905090565b60006107e83384846113aa565b5060015b92915050565b60006107ff8484846114ce565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108895760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61089685338584036113aa565b506001949350505050565b6005546001600160a01b031633146108cb5760405162461bcd60e51b8152600401610880906122de565b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e891859061095f908690612329565b6113aa565b6005546001600160a01b0316331461098e5760405162461bcd60e51b8152600401610880906122de565b600f82905560108190556109a28183612329565b600e81905560641015610a085760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610880565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610a805760405162461bcd60e51b8152600401610880906122de565b610a8a6000611b6f565b565b6005546001600160a01b03163314610ab65760405162461bcd60e51b8152600401610880906122de565b6019805460ff1916911515919091179055565b6005546001600160a01b03163314610af35760405162461bcd60e51b8152600401610880906122de565b6005811015610b505760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610880565b6103e8610b5c60025490565b610b66908361233c565b610b709190612353565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610bd65760405162461bcd60e51b8152600401610880906122de565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b03163314610c605760405162461bcd60e51b8152600401610880906122de565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b606060048054610758906122a4565b6005546001600160a01b03163314610d015760405162461bcd60e51b8152600401610880906122de565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610da85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610880565b610db28282611bc1565b5050565b6005546001600160a01b03163314610de05760405162461bcd60e51b8152600401610880906122de565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610e415760405162461bcd60e51b8152600401610880906122de565b6002811015610e925760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610880565b6103e8610e9e60025490565b610ea8908361233c565b610eb29190612353565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610ba1565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f695760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610880565b610f7633858584036113aa565b5060019392505050565b60006107e83384846114ce565b6005546001600160a01b03163314610fb75760405162461bcd60e51b8152600401610880906122de565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610c2a565b6005546001600160a01b031633146110395760405162461bcd60e51b8152600401610880906122de565b60018210156110a75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610880565b8181101561110a5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610880565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390611134919061233c565b61113e9190612353565b6006556127108161114e60025490565b611158919061233c565b6111629190612353565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146111d75760405162461bcd60e51b8152600401610880906122de565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b0316331461124e5760405162461bcd60e51b8152600401610880906122de565b601282905560138190556112628183612329565b6011819055606410156112c95760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610880565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610a4a565b6005546001600160a01b031633146113395760405162461bcd60e51b8152600401610880906122de565b6001600160a01b03811661139e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610880565b6113a781611b6f565b50565b6001600160a01b03831661140c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610880565b6001600160a01b03821661146d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610880565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114f45760405162461bcd60e51b815260040161088090612375565b6001600160a01b03821661151a5760405162461bcd60e51b8152600401610880906123ba565b806000036115335761152e83836000611c15565b505050565b60085460ff1615611898576005546001600160a01b0384811691161480159061156a57506005546001600160a01b03838116911614155b801561157e57506001600160a01b03821615155b801561159557506001600160a01b03821661dead14155b80156115ab5750600554600160a01b900460ff16155b1561189857600c5460ff16611650576001600160a01b03831660009081526016602052604090205460ff16806115f957506001600160a01b03821660009081526016602052604090205460ff165b6116505760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610880565b6001600160a01b03831660009081526018602052604090205460ff16801561169157506001600160a01b03821660009081526017602052604090205460ff16155b1561176657600a548111156116f75760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610880565b6009546001600160a01b03831660009081526020819052604090205461171d9083612329565b11156117615760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610880565b611898565b6001600160a01b03821660009081526018602052604090205460ff1680156117a757506001600160a01b03831660009081526017602052604090205460ff16155b1561180e57600a548111156117615760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610880565b6001600160a01b03821660009081526017602052604090205460ff16611898576009546001600160a01b0383166000908152602081905260409020546118549083612329565b11156118985760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610880565b30600090815260208190526040902054600654811080159081906118c55750600554600160a81b900460ff165b80156118db5750600554600160a01b900460ff16155b801561190057506001600160a01b03851660009081526018602052604090205460ff16155b801561192557506001600160a01b03851660009081526016602052604090205460ff16155b801561194a57506001600160a01b03841660009081526016602052604090205460ff16155b15611979576005805460ff60a01b1916600160a01b17905561196b83611d6a565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806119c757506001600160a01b03851660009081526016602052604090205460ff165b156119d0575060005b60008115611b5b576001600160a01b03861660009081526018602052604090205460ff168015611a0257506000601154115b15611a9057611a276064611a2160115488611ec090919063ffffffff16565b90611ed3565b905060115460135482611a3a919061233c565b611a449190612353565b60156000828254611a559190612329565b9091555050601154601254611a6a908361233c565b611a749190612353565b60146000828254611a859190612329565b90915550611b3d9050565b6001600160a01b03871660009081526018602052604090205460ff168015611aba57506000600e54115b15611b3d57611ad96064611a21600e5488611ec090919063ffffffff16565b9050600e5460105482611aec919061233c565b611af69190612353565b60156000828254611b079190612329565b9091555050600e54600f54611b1c908361233c565b611b269190612353565b60146000828254611b379190612329565b90915550505b8015611b4e57611b4e873083611c15565b611b5881866123fd565b94505b611b66878787611c15565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c3b5760405162461bcd60e51b815260040161088090612375565b6001600160a01b038216611c615760405162461bcd60e51b8152600401610880906123ba565b6001600160a01b03831660009081526020819052604090205481811015611cd95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610880565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d10908490612329565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d5c91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611d8a5750505050565b600754831115611d9a5760075492505b60195460ff168015611db55750611db284600561233c565b83115b15611dc857611dc584600561233c565b92505b8247611dd382611edf565b6000611ddf478361209f565b90506000611dfc86611a2160155485611ec090919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e54576040519150601f19603f3d011682016040523d82523d6000602084013e611e59565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114611eae576040519150601f19603f3d011682016040523d82523d6000602084013e611eb3565b606091505b5050505050505050505050565b6000611ecc828461233c565b9392505050565b6000611ecc8284612353565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f1457611f14612410565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb69190612426565b81600181518110611fc957611fc9612410565b60200260200101906001600160a01b031690816001600160a01b031681525050612014307f0000000000000000000000000000000000000000000000000000000000000000846113aa565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612069908590600090869030904290600401612443565b600060405180830381600087803b15801561208357600080fd5b505af1158015612097573d6000803e3d6000fd5b505050505050565b6000611ecc82846123fd565b600060208083528351808285015260005b818110156120d8578581018301518582016040015282016120bc565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113a757600080fd5b6000806040838503121561212157600080fd5b823561212c816120f9565b946020939093013593505050565b60008060006060848603121561214f57600080fd5b833561215a816120f9565b9250602084013561216a816120f9565b929592945050506040919091013590565b60006020828403121561218d57600080fd5b8135611ecc816120f9565b600080604083850312156121ab57600080fd5b50508035926020909101359150565b803580151581146121ca57600080fd5b919050565b6000602082840312156121e157600080fd5b611ecc826121ba565b6000602082840312156121fc57600080fd5b5035919050565b6000806040838503121561221657600080fd5b8235612221816120f9565b915061222f602084016121ba565b90509250929050565b60008060006060848603121561224d57600080fd5b612256846121ba565b95602085013595506040909401359392505050565b6000806040838503121561227e57600080fd5b8235612289816120f9565b91506020830135612299816120f9565b809150509250929050565b600181811c908216806122b857607f821691505b6020821081036122d857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ec576107ec612313565b80820281158282048414176107ec576107ec612313565b60008261237057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107ec576107ec612313565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561243857600080fd5b8151611ecc816120f9565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124935784516001600160a01b03168352938301939183019160010161246e565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e1cc8aea0afa6e66750954d45bbdff92052a2e6535c1ffcaab4a4c3e53e6043664736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c806386725f911161010d578063c11a3057116100a0578063d57156a71161006f578063d57156a71461066e578063daa353d91461068f578063dd62ed3e146106af578063f242ab41146106f5578063f2fde38b1461072957600080fd5b8063c11a3057146105d9578063c40bd704146105f9578063c6a9d6ec14610619578063c9567bf91461065957600080fd5b80639cae305d116100dc5780639cae305d14610564578063a2ffdfc914610579578063a457c2d714610599578063a9059cbb146105b957600080fd5b806386725f91146104dd5780638da5cb5b146104fd57806395d89b411461052f5780639a7a23d61461054457600080fd5b80634ada218b1161019057806370a082311161015f57806370a0823114610432578063715018a6146104685780637ff6f7b91461047d578063800eeeb11461049d57806383df0104146104bd57600080fd5b80634ada218b1461034d57806362ea0f7b14610367578063676320e1146103da5780636c9a0a0b1461041257600080fd5b8063313ce567116101cc578063313ce567146102a3578063350fa6c8146102bf57806339509351146102e15780634ac02b321461030157600080fd5b806306fdde0314610209578063095ea7b31461023457806318160ddd1461026457806323b872dd1461028357600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610749565b60405161022b91906120ab565b60405180910390f35b34801561024057600080fd5b5061025461024f36600461210e565b6107db565b604051901515815260200161022b565b34801561027057600080fd5b506002545b60405190815260200161022b565b34801561028f57600080fd5b5061025461029e36600461213a565b6107f2565b3480156102af57600080fd5b506040516012815260200161022b565b3480156102cb57600080fd5b506102df6102da36600461217b565b6108a1565b005b3480156102ed57600080fd5b506102546102fc36600461210e565b610928565b34801561030d57600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c00161022b565b34801561035957600080fd5b50600c546102549060ff1681565b34801561037357600080fd5b506103bb61038236600461217b565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161022b565b3480156103e657600080fd5b50600c54600d54604080516101009093046001600160a01b03908116845290911660208301520161022b565b34801561041e57600080fd5b506102df61042d366004612198565b610964565b34801561043e57600080fd5b5061027561044d36600461217b565b6001600160a01b031660009081526020819052604090205490565b34801561047457600080fd5b506102df610a56565b34801561048957600080fd5b506102df6104983660046121cf565b610a8c565b3480156104a957600080fd5b506102df6104b83660046121ea565b610ac9565b3480156104c957600080fd5b506102df6104d8366004612203565b610bac565b3480156104e957600080fd5b506102df6104f836600461217b565b610c36565b34801561050957600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161022b565b34801561053b57600080fd5b5061021e610cc8565b34801561055057600080fd5b506102df61055f366004612203565b610cd7565b34801561057057600080fd5b506102df610db6565b34801561058557600080fd5b506102df6105943660046121ea565b610e17565b3480156105a557600080fd5b506102546105b436600461210e565b610ee7565b3480156105c557600080fd5b506102546105d436600461210e565b610f80565b3480156105e557600080fd5b506102df6105f4366004612203565b610f8d565b34801561060557600080fd5b506102df610614366004612238565b61100f565b34801561062557600080fd5b50600554600654600754600160a81b90920460ff16915b60408051931515845260208401929092529082015260600161022b565b34801561066557600080fd5b506102df6111ad565b34801561067a57600080fd5b50600854600954600a5460ff9092169161063c565b34801561069b57600080fd5b506102df6106aa366004612198565b611224565b3480156106bb57600080fd5b506102756106ca36600461226b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561070157600080fd5b506105177f00000000000000000000000091fc97f48fe828e03c4a658c6bd9ceaed40c34b781565b34801561073557600080fd5b506102df61074436600461217b565b61130f565b606060038054610758906122a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610784906122a4565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b5050505050905090565b60006107e83384846113aa565b5060015b92915050565b60006107ff8484846114ce565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108895760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61089685338584036113aa565b506001949350505050565b6005546001600160a01b031633146108cb5760405162461bcd60e51b8152600401610880906122de565b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e891859061095f908690612329565b6113aa565b6005546001600160a01b0316331461098e5760405162461bcd60e51b8152600401610880906122de565b600f82905560108190556109a28183612329565b600e81905560641015610a085760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610880565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610a805760405162461bcd60e51b8152600401610880906122de565b610a8a6000611b6f565b565b6005546001600160a01b03163314610ab65760405162461bcd60e51b8152600401610880906122de565b6019805460ff1916911515919091179055565b6005546001600160a01b03163314610af35760405162461bcd60e51b8152600401610880906122de565b6005811015610b505760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610880565b6103e8610b5c60025490565b610b66908361233c565b610b709190612353565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610bd65760405162461bcd60e51b8152600401610880906122de565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b03163314610c605760405162461bcd60e51b8152600401610880906122de565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b606060048054610758906122a4565b6005546001600160a01b03163314610d015760405162461bcd60e51b8152600401610880906122de565b7f00000000000000000000000091fc97f48fe828e03c4a658c6bd9ceaed40c34b76001600160a01b0316826001600160a01b031603610da85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610880565b610db28282611bc1565b5050565b6005546001600160a01b03163314610de05760405162461bcd60e51b8152600401610880906122de565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610e415760405162461bcd60e51b8152600401610880906122de565b6002811015610e925760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610880565b6103e8610e9e60025490565b610ea8908361233c565b610eb29190612353565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610ba1565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f695760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610880565b610f7633858584036113aa565b5060019392505050565b60006107e83384846114ce565b6005546001600160a01b03163314610fb75760405162461bcd60e51b8152600401610880906122de565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610c2a565b6005546001600160a01b031633146110395760405162461bcd60e51b8152600401610880906122de565b60018210156110a75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610880565b8181101561110a5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610880565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390611134919061233c565b61113e9190612353565b6006556127108161114e60025490565b611158919061233c565b6111629190612353565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146111d75760405162461bcd60e51b8152600401610880906122de565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b0316331461124e5760405162461bcd60e51b8152600401610880906122de565b601282905560138190556112628183612329565b6011819055606410156112c95760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610880565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610a4a565b6005546001600160a01b031633146113395760405162461bcd60e51b8152600401610880906122de565b6001600160a01b03811661139e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610880565b6113a781611b6f565b50565b6001600160a01b03831661140c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610880565b6001600160a01b03821661146d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610880565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114f45760405162461bcd60e51b815260040161088090612375565b6001600160a01b03821661151a5760405162461bcd60e51b8152600401610880906123ba565b806000036115335761152e83836000611c15565b505050565b60085460ff1615611898576005546001600160a01b0384811691161480159061156a57506005546001600160a01b03838116911614155b801561157e57506001600160a01b03821615155b801561159557506001600160a01b03821661dead14155b80156115ab5750600554600160a01b900460ff16155b1561189857600c5460ff16611650576001600160a01b03831660009081526016602052604090205460ff16806115f957506001600160a01b03821660009081526016602052604090205460ff165b6116505760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610880565b6001600160a01b03831660009081526018602052604090205460ff16801561169157506001600160a01b03821660009081526017602052604090205460ff16155b1561176657600a548111156116f75760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610880565b6009546001600160a01b03831660009081526020819052604090205461171d9083612329565b11156117615760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610880565b611898565b6001600160a01b03821660009081526018602052604090205460ff1680156117a757506001600160a01b03831660009081526017602052604090205460ff16155b1561180e57600a548111156117615760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610880565b6001600160a01b03821660009081526017602052604090205460ff16611898576009546001600160a01b0383166000908152602081905260409020546118549083612329565b11156118985760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610880565b30600090815260208190526040902054600654811080159081906118c55750600554600160a81b900460ff165b80156118db5750600554600160a01b900460ff16155b801561190057506001600160a01b03851660009081526018602052604090205460ff16155b801561192557506001600160a01b03851660009081526016602052604090205460ff16155b801561194a57506001600160a01b03841660009081526016602052604090205460ff16155b15611979576005805460ff60a01b1916600160a01b17905561196b83611d6a565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806119c757506001600160a01b03851660009081526016602052604090205460ff165b156119d0575060005b60008115611b5b576001600160a01b03861660009081526018602052604090205460ff168015611a0257506000601154115b15611a9057611a276064611a2160115488611ec090919063ffffffff16565b90611ed3565b905060115460135482611a3a919061233c565b611a449190612353565b60156000828254611a559190612329565b9091555050601154601254611a6a908361233c565b611a749190612353565b60146000828254611a859190612329565b90915550611b3d9050565b6001600160a01b03871660009081526018602052604090205460ff168015611aba57506000600e54115b15611b3d57611ad96064611a21600e5488611ec090919063ffffffff16565b9050600e5460105482611aec919061233c565b611af69190612353565b60156000828254611b079190612329565b9091555050600e54600f54611b1c908361233c565b611b269190612353565b60146000828254611b379190612329565b90915550505b8015611b4e57611b4e873083611c15565b611b5881866123fd565b94505b611b66878787611c15565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c3b5760405162461bcd60e51b815260040161088090612375565b6001600160a01b038216611c615760405162461bcd60e51b8152600401610880906123ba565b6001600160a01b03831660009081526020819052604090205481811015611cd95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610880565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d10908490612329565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d5c91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611d8a5750505050565b600754831115611d9a5760075492505b60195460ff168015611db55750611db284600561233c565b83115b15611dc857611dc584600561233c565b92505b8247611dd382611edf565b6000611ddf478361209f565b90506000611dfc86611a2160155485611ec090919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e54576040519150601f19603f3d011682016040523d82523d6000602084013e611e59565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114611eae576040519150601f19603f3d011682016040523d82523d6000602084013e611eb3565b606091505b5050505050505050505050565b6000611ecc828461233c565b9392505050565b6000611ecc8284612353565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f1457611f14612410565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb69190612426565b81600181518110611fc957611fc9612410565b60200260200101906001600160a01b031690816001600160a01b031681525050612014307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113aa565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612069908590600090869030904290600401612443565b600060405180830381600087803b15801561208357600080fd5b505af1158015612097573d6000803e3d6000fd5b505050505050565b6000611ecc82846123fd565b600060208083528351808285015260005b818110156120d8578581018301518582016040015282016120bc565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113a757600080fd5b6000806040838503121561212157600080fd5b823561212c816120f9565b946020939093013593505050565b60008060006060848603121561214f57600080fd5b833561215a816120f9565b9250602084013561216a816120f9565b929592945050506040919091013590565b60006020828403121561218d57600080fd5b8135611ecc816120f9565b600080604083850312156121ab57600080fd5b50508035926020909101359150565b803580151581146121ca57600080fd5b919050565b6000602082840312156121e157600080fd5b611ecc826121ba565b6000602082840312156121fc57600080fd5b5035919050565b6000806040838503121561221657600080fd5b8235612221816120f9565b915061222f602084016121ba565b90509250929050565b60008060006060848603121561224d57600080fd5b612256846121ba565b95602085013595506040909401359392505050565b6000806040838503121561227e57600080fd5b8235612289816120f9565b91506020830135612299816120f9565b809150509250929050565b600181811c908216806122b857607f821691505b6020821081036122d857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ec576107ec612313565b80820281158282048414176107ec576107ec612313565b60008261237057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107ec576107ec612313565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561243857600080fd5b8151611ecc816120f9565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124935784516001600160a01b03168352938301939183019160010161246e565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e1cc8aea0afa6e66750954d45bbdff92052a2e6535c1ffcaab4a4c3e53e6043664736f6c63430008130033
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.