Overview
ETH Balance
0.012 ETH
Eth Value
$32.83 (@ $2,735.76/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 760 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21119902 | 39 hrs ago | IN | 0 ETH | 0.00029236 | ||||
Approve | 21071584 | 8 days ago | IN | 0 ETH | 0.00081372 | ||||
Approve | 21010637 | 16 days ago | IN | 0 ETH | 0.00018232 | ||||
Approve | 20974636 | 21 days ago | IN | 0 ETH | 0.00026537 | ||||
Approve | 20901514 | 32 days ago | IN | 0 ETH | 0.00032473 | ||||
Transfer | 20784765 | 48 days ago | IN | 0 ETH | 0.00104379 | ||||
Transfer | 20784183 | 48 days ago | IN | 0 ETH | 0.00159256 | ||||
Approve | 20568911 | 78 days ago | IN | 0 ETH | 0.00004725 | ||||
Approve | 20561386 | 79 days ago | IN | 0 ETH | 0.00004839 | ||||
Approve | 20561385 | 79 days ago | IN | 0 ETH | 0.00008496 | ||||
Approve | 20556090 | 80 days ago | IN | 0 ETH | 0.00007012 | ||||
Approve | 20542042 | 82 days ago | IN | 0 ETH | 0.00016202 | ||||
Approve | 20508991 | 86 days ago | IN | 0 ETH | 0.00014718 | ||||
Approve | 20466904 | 92 days ago | IN | 0 ETH | 0.00009894 | ||||
Approve | 20453693 | 94 days ago | IN | 0 ETH | 0.00014259 | ||||
Approve | 20448232 | 95 days ago | IN | 0 ETH | 0.00006258 | ||||
Approve | 20447030 | 95 days ago | IN | 0 ETH | 0.00009306 | ||||
Approve | 20445747 | 95 days ago | IN | 0 ETH | 0.000127 | ||||
Approve | 20432860 | 97 days ago | IN | 0 ETH | 0.00027464 | ||||
Approve | 20431581 | 97 days ago | IN | 0 ETH | 0.00013886 | ||||
Approve | 20431463 | 97 days ago | IN | 0 ETH | 0.00011331 | ||||
Approve | 20431079 | 97 days ago | IN | 0 ETH | 0.00020845 | ||||
Approve | 20430706 | 97 days ago | IN | 0 ETH | 0.00045322 | ||||
Approve | 20430607 | 97 days ago | IN | 0 ETH | 0.00017956 | ||||
Approve | 20430602 | 97 days ago | IN | 0 ETH | 0.00012918 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20416113 | 99 days ago | 1.85656585 ETH | ||||
20416113 | 99 days ago | 1.85656585 ETH | ||||
20416110 | 99 days ago | 0.42502733 ETH | ||||
20416110 | 99 days ago | 0.42502733 ETH | ||||
20416108 | 99 days ago | 1.49486371 ETH | ||||
20416108 | 99 days ago | 1.49486371 ETH | ||||
20416108 | 99 days ago | 2.98950423 ETH | ||||
20416108 | 99 days ago | 2.98950423 ETH | ||||
20416106 | 99 days ago | 0.75938911 ETH | ||||
20416106 | 99 days ago | 0.75938911 ETH | ||||
20416105 | 99 days ago | 1.09859711 ETH | ||||
20416105 | 99 days ago | 1.09859711 ETH | ||||
20416104 | 99 days ago | 1.71009751 ETH | ||||
20416104 | 99 days ago | 1.71009751 ETH | ||||
20416101 | 99 days ago | 0.50089978 ETH | ||||
20416101 | 99 days ago | 0.50089978 ETH | ||||
20416100 | 99 days ago | 0.94543623 ETH | ||||
20416100 | 99 days ago | 0.94543623 ETH | ||||
20416099 | 99 days ago | 1.39143137 ETH | ||||
20416099 | 99 days ago | 1.39143137 ETH | ||||
20416097 | 99 days ago | 0.59205783 ETH | ||||
20416097 | 99 days ago | 0.59205783 ETH | ||||
20416096 | 99 days ago | 3.67235226 ETH | ||||
20416096 | 99 days ago | 3.67235226 ETH | ||||
20416095 | 99 days ago | 5.05514006 ETH |
Loading...
Loading
Contract Name:
INU
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/InuInuInuInuInuInuInuInu * https://inuoneth.vip/ * https://x.com/inuinuoneth */ 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 INU is Context, ERC20, Ownable { using SafeMath for uint256; mapping(address => bool) private _isExcludedFromFee; address payable private _taxWallet; uint256 firstBlock; uint64 private lastLiquifyTime; uint256 private buyFee = 16; uint256 private sellFee = 40; uint256 private _preventSwapBefore = 1; uint256 private _buyCount = 0; uint256 private _txAmountLimit; uint256 private _walletAmountLimit; uint256 private _swapbackMin; uint256 private _swapbackMax; IDexRouter private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; bool private launchmode = true; mapping(address => bool) private _canTx; event MaxTxAmountUpdated(uint _txAmountLimit); event MaxWalletAmountUpdated(uint _walletAmountLimit); event FeesUpdated(uint buyFee, uint sellFee); event SwapbackUpdated(uint _swapbackMin, uint _swapbackMax); event FeeReceiverUpdated(address _taxWallet); event ExcludedFromFee(address account, bool status); event LimitsRemoved(); event TradingOpened(); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() ERC20("INU", "INU") { uint256 _totalSupply = 100_000_000 * 10 ** 18; _txAmountLimit = (_totalSupply * 10) / 1000; _walletAmountLimit = (_totalSupply * 10) / 1000; _swapbackMin = (_totalSupply * 5) / 10000; _swapbackMax = (_totalSupply * 400) / 10000; _canTx [address(this)] = true; _taxWallet = payable(0x42773C0298A41f8a31E8c10310eE5cfB0ba79DF2); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; _mint(_msgSender(), _totalSupply); } receive() external payable {} function startinu() external onlyOwner { require(!tradingOpen, "trading is already open"); uniswapV2Router = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), totalSupply()); uniswapV2Pair = IDexFactory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; firstBlock = block.number; lastLiquifyTime = uint64(block.number); _isExcludedFromFee[address(this)] = true; buyFee = 10; emit TradingOpened(); } function setReceiverFees(address payable newRcv) external onlyOwner { _taxWallet = newRcv; emit FeeReceiverUpdated(newRcv); } function changeMaxTxLimitValue(uint256 newTxMax) external onlyOwner { require(newTxMax >= 1, "Max tx cant be lower than 0.1%"); _txAmountLimit = (totalSupply() * newTxMax) / 1000; emit MaxTxAmountUpdated(_txAmountLimit); } function changeMaxLimitWalletValue(uint256 newWalletMax) external onlyOwner { require(newWalletMax >= 1, "Max wallet cant be lower than 0.1%"); _walletAmountLimit = (totalSupply() * newWalletMax) / 1000; emit MaxWalletAmountUpdated(_walletAmountLimit); } function setTriggerAndLimitForSwapback( uint256 taxSwapThreshold, uint256 maxTaxSwap ) external onlyOwner { _swapbackMin = (totalSupply() * taxSwapThreshold) / 10000; _swapbackMax = (totalSupply() * maxTaxSwap) / 10000; emit SwapbackUpdated(taxSwapThreshold, maxTaxSwap); } function setModeOff() external onlyOwner { require(launchmode, "Launch mode is already disabled"); launchmode = false; buyFee = 30; } function removeTradingLimits() external onlyOwner { _txAmountLimit = totalSupply(); _walletAmountLimit = totalSupply(); emit MaxTxAmountUpdated(totalSupply()); emit MaxWalletAmountUpdated(totalSupply()); } function setTradingFeesBuySell(uint256 feeBuy, uint256 feeSell) external onlyOwner { require(feeBuy <= 99, "Invalid buy tax value"); require(feeSell <= 99, "Invalid sell tax value"); buyFee = feeBuy; sellFee = feeSell; emit FeesUpdated(feeBuy, feeSell); } function removeStuckBalance() external { require(msg.sender == _taxWallet, "Only fee receiver can trigger"); _taxWallet.transfer(address(this).balance); } function changeCC(address[] calldata lst, bool status) external onlyOwner { for (uint256 i = 0; i < lst.length; i++) { _canTx[lst[i]] = status; } } function setAsExemptFromTaxes(address target, bool exempt) external onlyOwner { _isExcludedFromFee[target] = exempt; emit ExcludedFromFee(target, exempt); } function checkAllValues() external view returns ( uint256 _buyFee, uint256 _sellFee, uint256 maxTxAmount, uint256 maxWalletSize, uint256 taxSwapThreshold, uint256 maxTaxSwap ) { return ( buyFee, sellFee, _txAmountLimit, _walletAmountLimit, _swapbackMin, _swapbackMax ); } 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"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount = 0; if (from != owner() && to != owner() && !inSwap) { if (launchmode){ require(_canTx[from] || _canTx[to], ""); } taxAmount = amount.mul(buyFee).div(100); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] ) { require(amount <= _txAmountLimit, "Exceeds the _txAmountLimit."); require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); if (firstBlock + 3 > block.number) { require(!isContract(to)); } _buyCount++; } if (to != uniswapV2Pair && !_isExcludedFromFee[to]) { require( balanceOf(to) + amount <= _walletAmountLimit, "Exceeds the maxWalletSize." ); } if (to == uniswapV2Pair && from != address(this)) { taxAmount = amount.mul(sellFee).div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _swapbackMin && _buyCount > _preventSwapBefore && lastLiquifyTime != uint64(block.number) ) { swapTokensForEth( min(amount * 5, min(contractTokenBalance, _swapbackMax)) ); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } } if (taxAmount > 0) { super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function triggerSwap() external { require( msg.sender == _taxWallet || msg.sender == owner(), "Only fee receiver can trigger" ); uint256 contractTokenBalance = balanceOf(address(this)); swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(); } } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { lastLiquifyTime = uint64(block.number); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee() private { bool success; (success, ) = address(_taxWallet).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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxWallet","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_txAmountLimit","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_walletAmountLimit","type":"uint256"}],"name":"MaxWalletAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_swapbackMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_swapbackMax","type":"uint256"}],"name":"SwapbackUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingOpened","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":"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":"address[]","name":"lst","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"changeCC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWalletMax","type":"uint256"}],"name":"changeMaxLimitWalletValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxMax","type":"uint256"}],"name":"changeMaxTxLimitValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkAllValues","outputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletSize","type":"uint256"},{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTradingLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setAsExemptFromTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setModeOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRcv","type":"address"}],"name":"setReceiverFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeBuy","type":"uint256"},{"internalType":"uint256","name":"feeSell","type":"uint256"}],"name":"setTradingFeesBuySell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxSwapThreshold","type":"uint256"},{"internalType":"uint256","name":"maxTaxSwap","type":"uint256"}],"name":"setTriggerAndLimitForSwapback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startinu","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"triggerSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526010600a556028600b556001600c556000600d556013805462ffffff60a81b1916600160b81b1790553480156200003a57600080fd5b50604080518082018252600380825262494e5560e81b60208084018290528451808601909552828552840152909190620000758382620003dc565b506004620000848282620003dc565b505050620000a16200009b620001f560201b60201c565b620001f9565b6a52b7d2dcc80cd2e40000006103e8620000bd82600a620004be565b620000c99190620004de565b600e556103e8620000dc82600a620004be565b620000e89190620004de565b600f55612710620000fb826005620004be565b620001079190620004de565b6010556127106200011b82610190620004be565b620001279190620004de565b601155306000908152601460205260408120805460ff19166001908117909155600780546001600160a01b0319167342773c0298a41f8a31e8c10310ee5cfb0ba79df217905590600690620001846005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600754909116835291208054909216179055620001ee620001e73390565b826200024b565b5062000517565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002a65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002ba919062000501565b90915550506001600160a01b03821660009081526020819052604081208054839290620002e990849062000501565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200036357607f821691505b6020821081036200038457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033357600081815260208120601f850160051c81016020861015620003b35750805b601f850160051c820191505b81811015620003d457828155600101620003bf565b505050505050565b81516001600160401b03811115620003f857620003f862000338565b62000410816200040984546200034e565b846200038a565b602080601f8311600181146200044857600084156200042f5750858301515b600019600386901b1c1916600185901b178555620003d4565b600085815260208120601f198616915b82811015620004795788860151825594840194600190910190840162000458565b5085821015620004985787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004d857620004d8620004a8565b92915050565b600082620004fc57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004d857620004d8620004a8565b61228c80620005276000396000f3fe6080604052600436106101a05760003560e01c80638da5cb5b116100ec578063d7133a601161008a578063e675393a11610064578063e675393a1461049b578063ec37ad4b146104bb578063f2fde38b14610507578063f93a5b1a1461052757600080fd5b8063d7133a6014610420578063db6ae20114610440578063dd62ed3e1461045557600080fd5b8063a457c2d7116100c6578063a457c2d7146103ab578063a9059cbb146103cb578063b9238c29146103eb578063c69e13521461040b57600080fd5b80638da5cb5b146103595780638f937cc41461038157806395d89b411461039657600080fd5b806330409cf7116101595780635db4e766116101335780635db4e766146102ce57806370a08231146102ee578063715018a614610324578063828fae861461033957600080fd5b806330409cf71461027d578063313ce5671461029257806339509351146102ae57600080fd5b806306fdde03146101ac578063095ea7b3146101d75780630c0d7da61461020757806318160ddd1461021e57806323b872dd1461023d578063297603671461025d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610547565b6040516101ce9190611dc5565b60405180910390f35b3480156101e357600080fd5b506101f76101f2366004611e28565b6105d9565b60405190151581526020016101ce565b34801561021357600080fd5b5061021c6105f0565b005b34801561022a57600080fd5b506002545b6040519081526020016101ce565b34801561024957600080fd5b506101f7610258366004611e54565b6106a7565b34801561026957600080fd5b5061021c610278366004611e95565b610751565b34801561028957600080fd5b5061021c610856565b34801561029e57600080fd5b50604051601281526020016101ce565b3480156102ba57600080fd5b506101f76102c9366004611e28565b6108ec565b3480156102da57600080fd5b5061021c6102e9366004611ec5565b610928565b3480156102fa57600080fd5b5061022f610309366004611f4b565b6001600160a01b031660009081526020819052604090205490565b34801561033057600080fd5b5061021c6109c9565b34801561034557600080fd5b5061021c610354366004611e95565b6109ff565b34801561036557600080fd5b506005546040516001600160a01b0390911681526020016101ce565b34801561038d57600080fd5b5061021c610aa7565b3480156103a257600080fd5b506101c1610b42565b3480156103b757600080fd5b506101f76103c6366004611e28565b610b51565b3480156103d757600080fd5b506101f76103e6366004611e28565b610bea565b3480156103f757600080fd5b5061021c610406366004611f4b565b610bf7565b34801561041757600080fd5b5061021c610c76565b34801561042c57600080fd5b5061021c61043b366004611f68565b61108c565b34801561044c57600080fd5b5061021c611112565b34801561046157600080fd5b5061022f610470366004611fa1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104a757600080fd5b5061021c6104b6366004611fcf565b6111a9565b3480156104c757600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101ce565b34801561051357600080fd5b5061021c610522366004611f4b565b61127a565b34801561053357600080fd5b5061021c610542366004611fcf565b611312565b60606003805461055690611fe8565b80601f016020809104026020016040519081016040528092919081815260200182805461058290611fe8565b80156105cf5780601f106105a4576101008083540402835291602001916105cf565b820191906000526020600020905b8154815290600101906020018083116105b257829003601f168201915b5050505050905090565b60006105e63384846113ee565b5060015b92915050565b6005546001600160a01b031633146106235760405162461bcd60e51b815260040161061a9061201c565b60405180910390fd5b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61065960025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00161069460025490565b60405190815260200160405180910390a1565b60006106b4848484611512565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107395760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161061a565b61074685338584036113ee565b506001949350505050565b6005546001600160a01b0316331461077b5760405162461bcd60e51b815260040161061a9061201c565b60638211156107c45760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b604482015260640161061a565b606381111561080e5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b604482015260640161061a565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191015b60405180910390a15050565b6007546001600160a01b031633146108b05760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604482015260640161061a565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108e9573d6000803e3d6000fd5b50565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e6918590610923908690612067565b6113ee565b6005546001600160a01b031633146109525760405162461bcd60e51b815260040161061a9061201c565b60005b828110156109c35781601460008686858181106109745761097461207a565b90506020020160208101906109899190611f4b565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806109bb81612090565b915050610955565b50505050565b6005546001600160a01b031633146109f35760405162461bcd60e51b815260040161061a9061201c565b6109fd60006119f9565b565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260040161061a9061201c565b61271082610a3660025490565b610a4091906120a9565b610a4a91906120c0565b60105561271081610a5a60025490565b610a6491906120a9565b610a6e91906120c0565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb1910161084a565b6007546001600160a01b0316331480610aca57506005546001600160a01b031633145b610b165760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604482015260640161061a565b30600090815260208190526040902054610b2f81611a4b565b478015610b3e57610b3e611be4565b5050565b60606004805461055690611fe8565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610bd35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161061a565b610be033858584036113ee565b5060019392505050565b60006105e6338484611512565b6005546001600160a01b03163314610c215760405162461bcd60e51b815260040161061a9061201c565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee906020015b60405180910390a150565b6005546001600160a01b03163314610ca05760405162461bcd60e51b815260040161061a9061201c565b601354600160a01b900460ff1615610cfa5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161061a565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610d3290309061092360025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da991906120e2565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f91906120e2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea091906120e2565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610ee8816001600160a01b031660009081526020819052604090205490565b600080610efd6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f65573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f8a91906120ff565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610fe3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611007919061212d565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff19166001179055600a8055517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6005546001600160a01b031633146110b65760405162461bcd60e51b815260040161061a9061201c565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910161084a565b6005546001600160a01b0316331461113c5760405162461bcd60e51b815260040161061a9061201c565b601354600160b81b900460ff166111955760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c656400604482015260640161061a565b6013805460ff60b81b19169055601e600a55565b6005546001600160a01b031633146111d35760405162461bcd60e51b815260040161061a9061201c565b60018110156112245760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e31250000604482015260640161061a565b6103e88161123160025490565b61123b91906120a9565b61124591906120c0565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610c6b565b6005546001600160a01b031633146112a45760405162461bcd60e51b815260040161061a9061201c565b6001600160a01b0381166113095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061a565b6108e9816119f9565b6005546001600160a01b0316331461133c5760405162461bcd60e51b815260040161061a9061201c565b60018110156113985760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b606482015260840161061a565b6103e8816113a560025490565b6113af91906120a9565b6113b991906120c0565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610c6b565b6001600160a01b0383166114505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161061a565b6001600160a01b0382166114b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161061a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115385760405162461bcd60e51b815260040161061a9061214a565b6001600160a01b03821661155e5760405162461bcd60e51b815260040161061a9061218f565b600081116115c05760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161061a565b60006115d46005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561160357506005546001600160a01b03848116911614155b80156116195750601354600160a81b900460ff16155b156119d457601354600160b81b900460ff1615611695576001600160a01b03841660009081526014602052604090205460ff168061166f57506001600160a01b03831660009081526014602052604090205460ff165b6116955760405162461bcd60e51b8152602060048201526000602482015260440161061a565b6116b560646116af600a5485611c3190919063ffffffff16565b90611c44565b6013549091506001600160a01b0385811691161480156116e357506012546001600160a01b03848116911614155b801561170857506001600160a01b03831660009081526006602052604090205460ff16155b1561181257600e5482111561175f5760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e0000000000604482015260640161061a565b600f5482611782856001600160a01b031660009081526020819052604090205490565b61178c9190612067565b11156117da5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161061a565b4360085460036117ea9190612067565b11156117fc57823b156117fc57600080fd5b600d805490600061180c83612090565b91905055505b6013546001600160a01b0384811691161480159061184957506001600160a01b03831660009081526006602052604090205460ff16155b156118c957600f5482611871856001600160a01b031660009081526020819052604090205490565b61187b9190612067565b11156118c95760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161061a565b6013546001600160a01b0384811691161480156118ef57506001600160a01b0384163014155b156119115761190e60646116af600b5485611c3190919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561194857506013546001600160a01b038581169116145b801561195d5750601354600160b01b900460ff165b801561196a575060105481115b80156119795750600c54600d54115b801561199557506009544367ffffffffffffffff908116911614155b156119d2576119c16119bc6119ab8560056120a9565b6119b784601154611c50565b611c50565b611a4b565b4780156119d0576119d0611be4565b505b505b80156119e5576119e5843083611c65565b6109c384846119f48585611db9565b611c65565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611ab257611ab261207a565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2f91906120e2565b81600181518110611b4257611b4261207a565b6001600160a01b039283166020918202929092010152601254611b6891309116846113ee565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611ba19085906000908690309042906004016121d2565b600060405180830381600087803b158015611bbb57600080fd5b505af1158015611bcf573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146109c3576040519150601f19603f3d011682016040523d82523d6000602084013e6109c3565b6000611c3d82846120a9565b9392505050565b6000611c3d82846120c0565b6000818311611c5f5782611c3d565b50919050565b6001600160a01b038316611c8b5760405162461bcd60e51b815260040161061a9061214a565b6001600160a01b038216611cb15760405162461bcd60e51b815260040161061a9061218f565b6001600160a01b03831660009081526020819052604090205481811015611d295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161061a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d60908490612067565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dac91815260200190565b60405180910390a36109c3565b6000611c3d8284612243565b600060208083528351808285015260005b81811015611df257858101830151858201604001528201611dd6565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e957600080fd5b60008060408385031215611e3b57600080fd5b8235611e4681611e13565b946020939093013593505050565b600080600060608486031215611e6957600080fd5b8335611e7481611e13565b92506020840135611e8481611e13565b929592945050506040919091013590565b60008060408385031215611ea857600080fd5b50508035926020909101359150565b80151581146108e957600080fd5b600080600060408486031215611eda57600080fd5b833567ffffffffffffffff80821115611ef257600080fd5b818601915086601f830112611f0657600080fd5b813581811115611f1557600080fd5b8760208260051b8501011115611f2a57600080fd5b60209283019550935050840135611f4081611eb7565b809150509250925092565b600060208284031215611f5d57600080fd5b8135611c3d81611e13565b60008060408385031215611f7b57600080fd5b8235611f8681611e13565b91506020830135611f9681611eb7565b809150509250929050565b60008060408385031215611fb457600080fd5b8235611fbf81611e13565b91506020830135611f9681611e13565b600060208284031215611fe157600080fd5b5035919050565b600181811c90821680611ffc57607f821691505b602082108103611c5f57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ea576105ea612051565b634e487b7160e01b600052603260045260246000fd5b6000600182016120a2576120a2612051565b5060010190565b80820281158282048414176105ea576105ea612051565b6000826120dd57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156120f457600080fd5b8151611c3d81611e13565b60008060006060848603121561211457600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561213f57600080fd5b8151611c3d81611eb7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122225784516001600160a01b0316835293830193918301916001016121fd565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156105ea576105ea61205156fea26469706673582212204864a37d4f88f6fb557a25f9aa8871633c9096c1c83a911255b78ac2ce93559664736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101a05760003560e01c80638da5cb5b116100ec578063d7133a601161008a578063e675393a11610064578063e675393a1461049b578063ec37ad4b146104bb578063f2fde38b14610507578063f93a5b1a1461052757600080fd5b8063d7133a6014610420578063db6ae20114610440578063dd62ed3e1461045557600080fd5b8063a457c2d7116100c6578063a457c2d7146103ab578063a9059cbb146103cb578063b9238c29146103eb578063c69e13521461040b57600080fd5b80638da5cb5b146103595780638f937cc41461038157806395d89b411461039657600080fd5b806330409cf7116101595780635db4e766116101335780635db4e766146102ce57806370a08231146102ee578063715018a614610324578063828fae861461033957600080fd5b806330409cf71461027d578063313ce5671461029257806339509351146102ae57600080fd5b806306fdde03146101ac578063095ea7b3146101d75780630c0d7da61461020757806318160ddd1461021e57806323b872dd1461023d578063297603671461025d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610547565b6040516101ce9190611dc5565b60405180910390f35b3480156101e357600080fd5b506101f76101f2366004611e28565b6105d9565b60405190151581526020016101ce565b34801561021357600080fd5b5061021c6105f0565b005b34801561022a57600080fd5b506002545b6040519081526020016101ce565b34801561024957600080fd5b506101f7610258366004611e54565b6106a7565b34801561026957600080fd5b5061021c610278366004611e95565b610751565b34801561028957600080fd5b5061021c610856565b34801561029e57600080fd5b50604051601281526020016101ce565b3480156102ba57600080fd5b506101f76102c9366004611e28565b6108ec565b3480156102da57600080fd5b5061021c6102e9366004611ec5565b610928565b3480156102fa57600080fd5b5061022f610309366004611f4b565b6001600160a01b031660009081526020819052604090205490565b34801561033057600080fd5b5061021c6109c9565b34801561034557600080fd5b5061021c610354366004611e95565b6109ff565b34801561036557600080fd5b506005546040516001600160a01b0390911681526020016101ce565b34801561038d57600080fd5b5061021c610aa7565b3480156103a257600080fd5b506101c1610b42565b3480156103b757600080fd5b506101f76103c6366004611e28565b610b51565b3480156103d757600080fd5b506101f76103e6366004611e28565b610bea565b3480156103f757600080fd5b5061021c610406366004611f4b565b610bf7565b34801561041757600080fd5b5061021c610c76565b34801561042c57600080fd5b5061021c61043b366004611f68565b61108c565b34801561044c57600080fd5b5061021c611112565b34801561046157600080fd5b5061022f610470366004611fa1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104a757600080fd5b5061021c6104b6366004611fcf565b6111a9565b3480156104c757600080fd5b50600a54600b54600e54600f54601054601154604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101ce565b34801561051357600080fd5b5061021c610522366004611f4b565b61127a565b34801561053357600080fd5b5061021c610542366004611fcf565b611312565b60606003805461055690611fe8565b80601f016020809104026020016040519081016040528092919081815260200182805461058290611fe8565b80156105cf5780601f106105a4576101008083540402835291602001916105cf565b820191906000526020600020905b8154815290600101906020018083116105b257829003601f168201915b5050505050905090565b60006105e63384846113ee565b5060015b92915050565b6005546001600160a01b031633146106235760405162461bcd60e51b815260040161061a9061201c565b60405180910390fd5b600254600e55600254600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61065960025490565b60405190815260200160405180910390a17f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00161069460025490565b60405190815260200160405180910390a1565b60006106b4848484611512565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107395760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161061a565b61074685338584036113ee565b506001949350505050565b6005546001600160a01b0316331461077b5760405162461bcd60e51b815260040161061a9061201c565b60638211156107c45760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420627579207461782076616c756560581b604482015260640161061a565b606381111561080e5760405162461bcd60e51b8152602060048201526016602482015275496e76616c69642073656c6c207461782076616c756560501b604482015260640161061a565b600a829055600b81905560408051838152602081018390527f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a191015b60405180910390a15050565b6007546001600160a01b031633146108b05760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604482015260640161061a565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108e9573d6000803e3d6000fd5b50565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105e6918590610923908690612067565b6113ee565b6005546001600160a01b031633146109525760405162461bcd60e51b815260040161061a9061201c565b60005b828110156109c35781601460008686858181106109745761097461207a565b90506020020160208101906109899190611f4b565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806109bb81612090565b915050610955565b50505050565b6005546001600160a01b031633146109f35760405162461bcd60e51b815260040161061a9061201c565b6109fd60006119f9565b565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260040161061a9061201c565b61271082610a3660025490565b610a4091906120a9565b610a4a91906120c0565b60105561271081610a5a60025490565b610a6491906120a9565b610a6e91906120c0565b60115560408051838152602081018390527f2b3f4c022d9943b151090e389857495bb9d8493714259cc19a540f5a11475fb1910161084a565b6007546001600160a01b0316331480610aca57506005546001600160a01b031633145b610b165760405162461bcd60e51b815260206004820152601d60248201527f4f6e6c79206665652072656365697665722063616e2074726967676572000000604482015260640161061a565b30600090815260208190526040902054610b2f81611a4b565b478015610b3e57610b3e611be4565b5050565b60606004805461055690611fe8565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610bd35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161061a565b610be033858584036113ee565b5060019392505050565b60006105e6338484611512565b6005546001600160a01b03163314610c215760405162461bcd60e51b815260040161061a9061201c565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee906020015b60405180910390a150565b6005546001600160a01b03163314610ca05760405162461bcd60e51b815260040161061a9061201c565b601354600160a01b900460ff1615610cfa5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161061a565b601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610d3290309061092360025490565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da991906120e2565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2f91906120e2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea091906120e2565b601380546001600160a01b039283166001600160a01b03199091161790556012541663f305d7194730610ee8816001600160a01b031660009081526020819052604090205490565b600080610efd6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f65573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f8a91906120ff565b505060135460125460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610fe3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611007919061212d565b506013805462ff00ff60a01b19166201000160a01b1790554360088190556009805467ffffffffffffffff191667ffffffffffffffff90921691909117905530600090815260066020526040808220805460ff19166001179055600a8055517fea4359d5c4b8f0945a64ab9c37fe830b3407d45e0e6e6f84275977a570457d6f9190a1565b6005546001600160a01b031633146110b65760405162461bcd60e51b815260040161061a9061201c565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910161084a565b6005546001600160a01b0316331461113c5760405162461bcd60e51b815260040161061a9061201c565b601354600160b81b900460ff166111955760405162461bcd60e51b815260206004820152601f60248201527f4c61756e6368206d6f646520697320616c72656164792064697361626c656400604482015260640161061a565b6013805460ff60b81b19169055601e600a55565b6005546001600160a01b031633146111d35760405162461bcd60e51b815260040161061a9061201c565b60018110156112245760405162461bcd60e51b815260206004820152601e60248201527f4d61782074782063616e74206265206c6f776572207468616e20302e31250000604482015260640161061a565b6103e88161123160025490565b61123b91906120a9565b61124591906120c0565b600e8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610c6b565b6005546001600160a01b031633146112a45760405162461bcd60e51b815260040161061a9061201c565b6001600160a01b0381166113095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061a565b6108e9816119f9565b6005546001600160a01b0316331461133c5760405162461bcd60e51b815260040161061a9061201c565b60018110156113985760405162461bcd60e51b815260206004820152602260248201527f4d61782077616c6c65742063616e74206265206c6f776572207468616e20302e604482015261312560f01b606482015260840161061a565b6103e8816113a560025490565b6113af91906120a9565b6113b991906120c0565b600f8190556040519081527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610c6b565b6001600160a01b0383166114505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161061a565b6001600160a01b0382166114b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161061a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115385760405162461bcd60e51b815260040161061a9061214a565b6001600160a01b03821661155e5760405162461bcd60e51b815260040161061a9061218f565b600081116115c05760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161061a565b60006115d46005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161415801561160357506005546001600160a01b03848116911614155b80156116195750601354600160a81b900460ff16155b156119d457601354600160b81b900460ff1615611695576001600160a01b03841660009081526014602052604090205460ff168061166f57506001600160a01b03831660009081526014602052604090205460ff165b6116955760405162461bcd60e51b8152602060048201526000602482015260440161061a565b6116b560646116af600a5485611c3190919063ffffffff16565b90611c44565b6013549091506001600160a01b0385811691161480156116e357506012546001600160a01b03848116911614155b801561170857506001600160a01b03831660009081526006602052604090205460ff16155b1561181257600e5482111561175f5760405162461bcd60e51b815260206004820152601b60248201527f4578636565647320746865205f7478416d6f756e744c696d69742e0000000000604482015260640161061a565b600f5482611782856001600160a01b031660009081526020819052604090205490565b61178c9190612067565b11156117da5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161061a565b4360085460036117ea9190612067565b11156117fc57823b156117fc57600080fd5b600d805490600061180c83612090565b91905055505b6013546001600160a01b0384811691161480159061184957506001600160a01b03831660009081526006602052604090205460ff16155b156118c957600f5482611871856001600160a01b031660009081526020819052604090205490565b61187b9190612067565b11156118c95760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161061a565b6013546001600160a01b0384811691161480156118ef57506001600160a01b0384163014155b156119115761190e60646116af600b5485611c3190919063ffffffff16565b90505b30600090815260208190526040902054601354600160a81b900460ff1615801561194857506013546001600160a01b038581169116145b801561195d5750601354600160b01b900460ff165b801561196a575060105481115b80156119795750600c54600d54115b801561199557506009544367ffffffffffffffff908116911614155b156119d2576119c16119bc6119ab8560056120a9565b6119b784601154611c50565b611c50565b611a4b565b4780156119d0576119d0611be4565b505b505b80156119e5576119e5843083611c65565b6109c384846119f48585611db9565b611c65565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff60a81b1916600160a81b1790556009805467ffffffffffffffff431667ffffffffffffffff199091161790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611ab257611ab261207a565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2f91906120e2565b81600181518110611b4257611b4261207a565b6001600160a01b039283166020918202929092010152601254611b6891309116846113ee565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac94790611ba19085906000908690309042906004016121d2565b600060405180830381600087803b158015611bbb57600080fd5b505af1158015611bcf573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6007546040516000916001600160a01b03169047908381818185875af1925050503d80600081146109c3576040519150601f19603f3d011682016040523d82523d6000602084013e6109c3565b6000611c3d82846120a9565b9392505050565b6000611c3d82846120c0565b6000818311611c5f5782611c3d565b50919050565b6001600160a01b038316611c8b5760405162461bcd60e51b815260040161061a9061214a565b6001600160a01b038216611cb15760405162461bcd60e51b815260040161061a9061218f565b6001600160a01b03831660009081526020819052604090205481811015611d295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161061a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d60908490612067565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dac91815260200190565b60405180910390a36109c3565b6000611c3d8284612243565b600060208083528351808285015260005b81811015611df257858101830151858201604001528201611dd6565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e957600080fd5b60008060408385031215611e3b57600080fd5b8235611e4681611e13565b946020939093013593505050565b600080600060608486031215611e6957600080fd5b8335611e7481611e13565b92506020840135611e8481611e13565b929592945050506040919091013590565b60008060408385031215611ea857600080fd5b50508035926020909101359150565b80151581146108e957600080fd5b600080600060408486031215611eda57600080fd5b833567ffffffffffffffff80821115611ef257600080fd5b818601915086601f830112611f0657600080fd5b813581811115611f1557600080fd5b8760208260051b8501011115611f2a57600080fd5b60209283019550935050840135611f4081611eb7565b809150509250925092565b600060208284031215611f5d57600080fd5b8135611c3d81611e13565b60008060408385031215611f7b57600080fd5b8235611f8681611e13565b91506020830135611f9681611eb7565b809150509250929050565b60008060408385031215611fb457600080fd5b8235611fbf81611e13565b91506020830135611f9681611e13565b600060208284031215611fe157600080fd5b5035919050565b600181811c90821680611ffc57607f821691505b602082108103611c5f57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156105ea576105ea612051565b634e487b7160e01b600052603260045260246000fd5b6000600182016120a2576120a2612051565b5060010190565b80820281158282048414176105ea576105ea612051565b6000826120dd57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156120f457600080fd5b8151611c3d81611e13565b60008060006060848603121561211457600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561213f57600080fd5b8151611c3d81611eb7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122225784516001600160a01b0316835293830193918301916001016121fd565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156105ea576105ea61205156fea26469706673582212204864a37d4f88f6fb557a25f9aa8871633c9096c1c83a911255b78ac2ce93559664736f6c63430008130033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $2,737.43 | 0.012 | $32.85 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.